The third assignment in my introduction to machine learning course. The purpose was to classify different images based on what scenes they represented.
Stars
0
Forks
1
Watchers
0
Open Issues
0
Overall repository health assessment
No package.json found
This might not be a Node.js project
28
commits
11
commits
Added in some k-fold cross-validation for training the last few layers of VGG-16, finished the assignment.
dbe23beView on GitHubAdded code for knn.py which implements KNN on the output of VGG.
01df4cdView on GitHubFixed the issue we were having with predicting elements of the test set. We deprecated our training set so that we were using just the orginal training set. For some reason we had to use the imagegenerator from keras in order to get good corrections.
f33b53eView on GitHubMerge branch 'master' of https://github.com/keenan-burnett/SceneRecognition
4f18a84View on GitHubChanged everything over to use only the data that was given to us
558c875View on GitHubMade modifications to my code so that it will properly print our predictios to a CSV file, we also now grab all the text examples from the two different folders.
90482caView on GitHubFinished modifying keras_load... so that we can load the model and run it on the test set. It will also output the results to a csv file.
a0b0d5cView on GitHubThe imageNet1 model is now working and has early stopping implemented. It takes about 14 epoches to train to ~72% accuracy on the validation data
4f4f904View on GitHubMerge branch 'master' of https://github.com/keenan-burnett/SceneRecognition
08edafbView on GitHubgetting the imageNet1 model to work, I think this involved changing a directory and making sure all of the images were sized and counted correctly
017e0ecView on GitHubWorking on adding some features to the code like being able to load weight from both VGG and FC.
f6a7b4bView on GitHubMade some changes to the keras python files, notably that we no longer shuffle the training example being fed into VGG16 as this doesn't need to be randomized when we're just trying to get the output of the net for later use in training the fully connected layers. Upsized the input image to 224x224.
770fd15View on GitHub