Join GitHub today
GitHub is home to over 36 million developers working together to host and review code, manage projects, and build software together.
Sign up
No description, website, or topics provided.
Cannot retrieve the latest commit at this time.
| Type | Name | Latest commit message | Commit time |
|---|---|---|---|
| Failed to load latest commit information. | |||
|
|
Reclassifier Images | ||
|
|
__pycache__ | ||
|
|
logs | ||
|
|
scores | ||
|
|
statistics | ||
|
|
.gitignore | ||
|
|
Credits | ||
|
|
README | ||
|
|
data_chunker.py | ||
|
|
data_utils.py | ||
|
|
re_classify.py | ||
|
|
test_feature_extractors.py | ||
|
|
train_and_predict_feature_generators.py | ||
|
|
train_and_predict_fusion_classifier.py | ||
|
|
train_feature_extractors.py | ||
README
This folder contains all the python files for running training, prediction, and evaluation for the reclassification. To run it, you should probably intialize a virtual environment - I'll set up a packages file for easy install later Once the required packages are downloaded, you can just run "reclassify.py" to perform training, prediction, and evaluation all in one go. data_chunker and data_utils contain all the data manipulation and fileIO needed train_feature_extractors and test_feature_extractors trains each modality to classify the activity, but only saves output from an earlier layer train_and_predict_fusion_classifier trains the fusion network given the higher level features from before train_and_predict_feature_generators trains each sensor modality to reproduce the higher level features from the scores outputted from the fusion classifier. # TODO: -Still need to add more options to the reclassification (i.e. which activities to train/predict/evaluate on)