Problems in training data/test data
See original GitHub issueHi, I have an issue with the training data. cvs_to_numpy.py outputs ‘labels_kike.npy’ and ‘data_kike.npy’, where the emotion_recognition.py searches for ‘data_set_fer2013.npy’ and ‘data_labels_fer2013.npy’ while training and cannot find it. Also using poc, I guess it cannot find the image instead of the faces. I get the error message:
AttributeError: 'NoneType' object has no attribute 'shape'
Can you help with these?
Issue Analytics
- State:
- Created 7 years ago
- Comments:9
Top Results From Across the Web
The Difference Between Training Data vs. Test ...
In this article, we'll compare training data vs. test data and ... Algorithms enable machines to solve problems based on past observations.
Read more >Training, Validation and Testing Data Explained
If training and validation data include labels to monitor performance metrics of the model, the testing data should be unlabeled. Test data ......
Read more >Problems in Machine Learning Models? Check your Data ...
The real problem with insufficient data lies in the fact that with less data, variance increases. Variance, which can easily be defined as...
Read more >Training Data and Test Data
Training data and test data are two important concepts in machine learning. ... In supervised learning problems, each observation consists of an observed ......
Read more >Why is it wrong to train and test a model on the same ...
It can happen that the model you train learns "too much" or memorizes the training data, and then it performs poorly on unseen...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hi @ghulamsiddiq Do this. Copy constants.py to the data folder. In the copied file, change the CASC_PATH to CASC_PATH = ‘haarcascade_frontalface_default.xml’. Now copy the haarcascade files to the ‘data’ folder which is your working folder presently where cvs_to_numpy.py is placed. This works.
Steps i took to resolve the issues in training: