Questions tagged [regression]
For questions related to regression (both linear and non-linear) in the context of machine learning and AI.
127 questions
2 votes
1 answer
118 views
For any given learning task, how to select the width and depth of the neural network?
For any given learning task, if I know the nature of dependence to be learnt, how to select the width and depth of the neural network? How does the number of ground truths affect this? Let's say I ...
0 votes
2 answers
79 views
What loss function to choose that will assign a higher penalty to false negatives than to false positives for regression task?
I am using a machine learning model to remove interference from range-doppler maps to detect targets. I am using a supervised approach, in which I give as input the range-doppler map of target+...
2 votes
1 answer
67 views
Is a two-phase model (ensembling/stacking) a valid approach for forecasting product demand?
I am working on a project to forecast food sales for a corporate restaurant. Sales are heavily influenced by the number of guests per day, along with other factors like seasonality, weather conditions,...
0 votes
0 answers
45 views
5-dimensional regression with neural network
I'm trying to approximate the following analytic function with 5 input variables ($x_i\in(0,5),\ i\in\{0,...,4\}$). The output variable $y$ is continuous. ...
1 vote
1 answer
107 views
Loss function that penalizes errors more at low values
I am training Deep Learning models to predict the Remaining Useful Life (RUL) of certain devices. The RUL is an estimate of the time remaining until the device is expected to fail. Accurate ...
0 votes
0 answers
111 views
How to train a model to make predictions for larger sequences than those in the dataset?
I'm working on a project where I need my model to predict a sequence of n 3x3 matrices given an input sequence of n 3x3 matrices ...
1 vote
1 answer
101 views
Regression model is doing exceptionally very well on time series
I have the following task to do: I have time series data. Training by the consecutive 3 days to predict the each 4th day. Each day data represents one CSV file which has dimension 24x25. Every ...
1 vote
1 answer
108 views
When to use deep learning for bot and fraud detection and when not to use it?
My dataset is around 100k rows and is tabular data. My question is this: Is there a case to use deep learning here? My current approach is the following: 1) training a supervised on historical data ...
0 votes
0 answers
19 views
What is the best architecture for multi-target text regression?
I'm building an AI model using Google's 'Civil-Comments' dataset. It has 7 different labels, each a float than can be anywhere from 0 to 1. Embedding Bags, which I have read about. do not perform well....
0 votes
0 answers
61 views
Predict more elements than the input
I can use any machine learning algorithms (but neural networks are better for me) to resolve this issue: use few elements as input (numerical) to predict more elements as output. In normal regression ...
0 votes
1 answer
62 views
Regression model training improvement
I am fairly new to TensorFlow and ML in general and am currently working on a regression neural network while learning about different parts and concepts of it. My goal is to try & achieve a model ...
0 votes
1 answer
120 views
Is it possible to predict the next number in a stream that comes from a known PDF?
Lets say we have an arbitrarily large stream of numbers, numbers ranging from 1 to 100. You know these numbers follow a known distribution, e.g exponential distribution. Is it possible predict the ...
0 votes
1 answer
78 views
CNN multioutput regression architecture modification
I am working on a regression task where the model has to predict two values at the same time. The idea is that the dataset consists of 16 features, where the first 8 features represent the first value ...
0 votes
0 answers
63 views
Find the relationship between data in this plot
Attached image. How would you find the relationship between independent variable (x) and dependent variable (y)? Is it linear or non-linear? What would the function looks like? P.S. I believe this is ...
0 votes
1 answer
83 views
Circular regression for joystick movements?
I've been playing around with some behavioral cloning of a simple old game that uses a joystick. As with behavioral cloning in general, if I record many games, then for each state there are many ...