Recent questions in Machine Learning

0 0 votes
1 answers 1 answer
438
438 views
Consider a simplified Recurrent Neural Network (RNN) with a single input and a single output. The hidden state is updated using the recurrence:$$ h_t = \text{ReLU}(W_{ih}...
0 0 votes
1 answers 1 answer
2.5k
2.5k views
For the following neural network, calculate accuracy of classification, given these settings
0 0 votes
0 0 answers
1.3k
1.3k views
When pre processing data for machine learning. Is there any difference in using one hot encoding to turn categoric variables into numeric variables or to segment the data...
0 0 votes
1 1 answer
7.6k
7.6k views
Given the following sample dataset with 5 samples and 2 features:SampleFeature 1Feature 2Actual ValuePredicted Value1234623456345674567856789Calculate the residual errors...
0 0 votes
0 0 answers
1.5k
1.5k views
I am trying to extract information such as profits, revenues and others along with their corresponding dates and quarters from an unstructured text about stock market and...
0 0 votes
0 0 answers
1.5k
1.5k views
I have a dataset with 7 labels in the target variable.X = data.drop('target', axis=1) Y = data['target'] Y.unique()array(['Normal_Weight', 'Overweight_Level_I', 'Overweig...
0 0 votes
0 0 answers
1.0k
1.0k views
Hello everyone newbie data scientist here.I'm working on a project to predict companies (probability of default) bankruptcy probability and to assign them a credit rating...
1 1 vote
1 1 answer
1.4k
1.4k views
It's a car prices dataset, and so I'm assuming that the more recent the more value a car should have. The values in the 'year' column simply consist of years from 1995 to...
0 0 votes
1 answers 1 answer
3.6k
3.6k views
NASA wants to be able to discriminate between Martians (M) and Humans (H) based on thefollowing characteristics: Green ∈{N, Y }, Legs ∈{2, 3}, Height ∈{S, T}, Smelly ∈{N,...
0 0 votes
0 0 answers
442
442 views
I am trying to build an unsupervised ML model to detect anomalies within 5000+ users' login data. I selected 5 features contained within each of the user-login events (e...
0 0 votes
0 0 answers
377
377 views
Suppose I have to predict the traffic of a road segment based on available data such as number of houses and business along the road segment. Which machine learning tool ...
1 1 vote
1 1 answer
723
723 views
When I standardized my data when I created my model. Do I need to save the standardization transformation when I want to predict with my model new data ?
0 0 votes
1 1 answer
1.0k
1.0k views
Hi. I have a question about model-based predictions when data is only available after the fact. Let me give you an example. I try to predict the result (HOME, AWAY or a D...
1 1 vote
1 answers 1 answer
1.3k
1.3k views
So far, I have modeled on known historical data. What if there are variables known only after the fact?Let me give you an example. I want to predict the outcome of the ma...
1 1 vote
1 1 answer
677
677 views
“During the last decade, the advent of microarray datasets stimulated a new line of research called Bioinformatics. A microarray database is a repository containing micro...
1 1 vote
1 1 answer
589
589 views
Is that possible to train a machine using another trained machine?
2 2 votes
0 0 answers
428
428 views
Is there a website for finding illustrative real-life examples of using machine learning? For instance: for End to End Machine Learning, End to End Machine Learning, Clas...
1 1 vote
0 0 answers
339
339 views
Could you please let me know where I can find simple machine learning mathematics explained visually?
3 3 votes
1 answers 1 answer
6.0k
6.0k views
The goal of backpropagation is to optimize the weights so that the neural network can learn how to correctly map arbitrary inputs to outputs.Assume for the following neur...