├── LICENSE ├── README.md ├── data ├── learning_data.hdf5 ├── prediction_data.hdf5 └── validation_data.hdf5 ├── images ├── prediction.png ├── tmp11.txt └── training.png ├── main ├── prediction_functions.py └── training_functions.py ├── models ├── best_features_postfb.npy ├── best_features_prefb.npy ├── m_1s.h5 ├── m_50s_postfb.h5 └── m_50s_prefb.h5 ├── prediction.ipynb └── training.ipynb /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmezyk/fbpicker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmezyk/fbpicker/HEAD/README.md -------------------------------------------------------------------------------- /data/learning_data.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmezyk/fbpicker/HEAD/data/learning_data.hdf5 -------------------------------------------------------------------------------- /data/prediction_data.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmezyk/fbpicker/HEAD/data/prediction_data.hdf5 -------------------------------------------------------------------------------- /data/validation_data.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmezyk/fbpicker/HEAD/data/validation_data.hdf5 -------------------------------------------------------------------------------- /images/prediction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmezyk/fbpicker/HEAD/images/prediction.png -------------------------------------------------------------------------------- /images/tmp11.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /images/training.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmezyk/fbpicker/HEAD/images/training.png -------------------------------------------------------------------------------- /main/prediction_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmezyk/fbpicker/HEAD/main/prediction_functions.py -------------------------------------------------------------------------------- /main/training_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmezyk/fbpicker/HEAD/main/training_functions.py -------------------------------------------------------------------------------- /models/best_features_postfb.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmezyk/fbpicker/HEAD/models/best_features_postfb.npy -------------------------------------------------------------------------------- /models/best_features_prefb.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmezyk/fbpicker/HEAD/models/best_features_prefb.npy -------------------------------------------------------------------------------- /models/m_1s.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmezyk/fbpicker/HEAD/models/m_1s.h5 -------------------------------------------------------------------------------- /models/m_50s_postfb.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmezyk/fbpicker/HEAD/models/m_50s_postfb.h5 -------------------------------------------------------------------------------- /models/m_50s_prefb.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmezyk/fbpicker/HEAD/models/m_50s_prefb.h5 -------------------------------------------------------------------------------- /prediction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmezyk/fbpicker/HEAD/prediction.ipynb -------------------------------------------------------------------------------- /training.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmezyk/fbpicker/HEAD/training.ipynb --------------------------------------------------------------------------------