seiqooq
seiqooq t1_iz43dss wrote
Reply to comment by kebabmybob in [R] The Forward-Forward Algorithm: Some Preliminary Investigations [Geoffrey Hinton] by shitboots
Probably explains why the title of the paper isnt “forward passes are all you need”
seiqooq t1_iw82elw wrote
Reply to comment by badhandml in [D] ML/AI role as a disabled person by badhandml
It happens, there are a million reasons candidates get rejected, only several of which are reasonable.
Two of my ML job offers were extended through acquaintances I met in career development groups (ML meetups). I always recommend these, particularly now that they’re mostly online.
seiqooq t1_iw7yup1 wrote
Reply to [D] ML/AI role as a disabled person by badhandml
I’m told AirBNB & Apple put great focus on accessibility. With your skill set and circumstances, you could be a phenomenal contributor
seiqooq t1_iv92syq wrote
What exactly is meant by “<“?
seiqooq t1_it7ss31 wrote
Reply to comment by fourcornerclub in [D] Is it worth paying a data sourcing company to crowdsource a bespoke dataset? by quantifiedvagabond
We’re in surveillance and so vertically integrating was (fortunately) an option for us. It was certainly worth it since our org had the means, but the build vs buy trade off is always a thing
seiqooq t1_it4vr7f wrote
Reply to [D] Is it worth paying a data sourcing company to crowdsource a bespoke dataset? by quantifiedvagabond
Curious about others experiences as well. We opted to go the data-capturing infra route so I’m in the other boat.
seiqooq t1_it488qo wrote
Reply to comment by iridium__ in [D] Simple Questions Thread by AutoModerator
Sounds good, let me know if I can help.
seiqooq t1_it44q65 wrote
Reply to comment by whengreg in [D] Simple Questions Thread by AutoModerator
Sentdex on YouTube is my go-to recommendation for getting your hands dirty quick
seiqooq t1_it44j0s wrote
Reply to comment by notEVOLVED in [D] Simple Questions Thread by AutoModerator
Yannic Kilcher on YouTube is the OG of paper explainers.
seiqooq t1_it443kx wrote
Reply to comment by Narigah in [D] Simple Questions Thread by AutoModerator
I think you’re just about there with an answer. Assuming each occurrence is weighted evenly you could approach this a few ways:
-
Use binary labeling such that the output vector looks like [0,0,0,01,0,0…, 1] and is of length 350. You can think of this as representing the true goal of finding the exact positions. Then, during optimization, you can determine a threshold or other logic to handle all of the fuzzy predictions that will inevitably result from training.
-
Assign fuzzy labels scaling inversely with the distance from the target point. EG [0, 0.1, 0.5, 1, 0.5, 0.1, 0…]. The same thresholding can be done here as well.
Assuming locale is important for classification, I’d consider using convolutions as well to extract useful information from neighboring data points.
seiqooq t1_it40uw6 wrote
Reply to comment by ABCDofDataScience in [D] Simple Questions Thread by AutoModerator
It’s a bit of a rabbit hole, but this is required for autograd to create the reverse computation graph (enables backpropagation). PyTorch has great videos on YouTube if you want to dig in, just search PyTorch autograd.
seiqooq t1_it40bkc wrote
Reply to comment by TomaszA3 in [D] Simple Questions Thread by AutoModerator
By biological processing, do you mean evolutionary algorithms?
seiqooq t1_it3zp9b wrote
Reply to comment by Unusual_Variation_32 in [D] Simple Questions Thread by AutoModerator
It’s useful to think of regularization simply as offering a way to punish/reward a system for exhibiting some behavior during training. Barring overfitting, if this leads to improvements in training error, you can expect improvements in test error as well.
seiqooq t1_it3y6j9 wrote
Reply to comment by Select-Shopping4606 in [D] Simple Questions Thread by AutoModerator
This sounds like a multi variate linear regression problem. There are common ways of solving these problems, with gradient descent being the classic method.
seiqooq t1_it3xeqt wrote
Reply to comment by Rei_Moriaty in [D] Simple Questions Thread by AutoModerator
Try to blend learning and theory with practical application. I recommend Sentdex (YouTube) for ground-up learning and Kaggle for applied learning.
seiqooq t1_it3wkzy wrote
Reply to comment by EManO13 in [D] Simple Questions Thread by AutoModerator
Try to think of this in terms of how you will use the model. It sounds like a day-trading model, correct me if I’m wrong. In this case, you’ll want to ask the question of “based on todays trading patterns, should I sell now, or is the peak still likely to come?”.
See if this helps your problem formulation and therefore your labeling.
As a side note, most models are not sophisticated enough to capture the extreme complexity of stock behavior. If this is your first foray into stock prediction, I’d recommend tempering expectations.
seiqooq t1_it3uyu3 wrote
Reply to comment by your-mom-was-burned in [D] Simple Questions Thread by AutoModerator
This is a binary text classification problem because you’re trying to output two discrete classes (yes, no). Try those search terms — there are hundreds of resources available.
seiqooq t1_it3ixpk wrote
Reply to comment by VoyagerExpress in [D] Simple Questions Thread by AutoModerator
Correct me if I’m wrong but you say you’d like to improve your SNR up to some value, it sounds like you could simply formulate this as a 1D maximization problem, rather than a 2D optimization problem. In this case, reinforcement learning and genetic algorithms are high on the list as solutions.
seiqooq t1_it3hn7p wrote
Reply to comment by iridium__ in [D] Simple Questions Thread by AutoModerator
At the risk of shamelessly self promoting: check out my project which could, with some effort, translate to a real world machine. Link
seiqooq t1_isoymwj wrote
Reply to comment by Meddhouib10 in [R] Embedding dates ? by MichelMED10
Gotcha. In that case I’d use sinusoid embedding like others have suggested. Another alternative is normalizing all of the dates onto some small range, eg [0,1]
seiqooq t1_isn62an wrote
Reply to [R] Embedding dates ? by MichelMED10
What is your ground truth? How does the data available for prediction differ from your GT? Depending on your answers, dates may add noise to your predictions.
seiqooq t1_isgqd96 wrote
Reply to comment by prehumast in [D] Could a ML model be used for Image Compression? by midasp
In fairness, this is not unique to ML. Compression algorithms (among others) can be loaded with parameters that were optimized against sets of data as well.
seiqooq t1_isdozrp wrote
Was going to make basically this exact post today. Thanks for taking the hit :^) lots of good stuff here.
seiqooq t1_j012of7 wrote
Reply to comment by bmrheijligers in [P] Jira for ML tool by Dazzling_Koala6834
Curious as well if you don’t mind.