├── README.md ├── S1 ├── all_labels1.npy ├── class_map1.npy ├── imgs_per_class1.npy └── sequence1.npy ├── S2 ├── all_labels.npy ├── class_count2.npy ├── class_map2.npy ├── imgs_per_class2.npy └── sequence2.npy ├── S3 ├── all_labels3.npy ├── class_map3.npy ├── imgs_per_class3.npy └── sequence3.npy ├── S4 ├── all_labels4.npy ├── class_map4.npy ├── imgs_per_class4.npy └── sequence4.npy ├── S5 ├── all_labels5.npy ├── class_map5.npy ├── imgs_per_class5.npy └── sequence5.npy ├── convnet.py ├── datasets.py ├── environment.yml ├── imagenet_classes.txt ├── imagenet_synsets.txt ├── main.py ├── metrics.py ├── models.py ├── models ├── test │ └── pretrained_model.pth └── test2 │ └── pretrained_model.pth ├── options.py ├── overview.md ├── requirements.txt ├── trainer.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/FLUID/HEAD/README.md -------------------------------------------------------------------------------- /S1/all_labels1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/FLUID/HEAD/S1/all_labels1.npy -------------------------------------------------------------------------------- /S1/class_map1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/FLUID/HEAD/S1/class_map1.npy -------------------------------------------------------------------------------- /S1/imgs_per_class1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/FLUID/HEAD/S1/imgs_per_class1.npy -------------------------------------------------------------------------------- /S1/sequence1.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/FLUID/HEAD/S1/sequence1.npy -------------------------------------------------------------------------------- /S2/all_labels.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/FLUID/HEAD/S2/all_labels.npy -------------------------------------------------------------------------------- /S2/class_count2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/FLUID/HEAD/S2/class_count2.npy -------------------------------------------------------------------------------- /S2/class_map2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/FLUID/HEAD/S2/class_map2.npy -------------------------------------------------------------------------------- /S2/imgs_per_class2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/FLUID/HEAD/S2/imgs_per_class2.npy -------------------------------------------------------------------------------- /S2/sequence2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/FLUID/HEAD/S2/sequence2.npy -------------------------------------------------------------------------------- /S3/all_labels3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/FLUID/HEAD/S3/all_labels3.npy -------------------------------------------------------------------------------- /S3/class_map3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/FLUID/HEAD/S3/class_map3.npy -------------------------------------------------------------------------------- /S3/imgs_per_class3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/FLUID/HEAD/S3/imgs_per_class3.npy -------------------------------------------------------------------------------- /S3/sequence3.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/FLUID/HEAD/S3/sequence3.npy -------------------------------------------------------------------------------- /S4/all_labels4.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/FLUID/HEAD/S4/all_labels4.npy -------------------------------------------------------------------------------- /S4/class_map4.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/FLUID/HEAD/S4/class_map4.npy -------------------------------------------------------------------------------- /S4/imgs_per_class4.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/FLUID/HEAD/S4/imgs_per_class4.npy -------------------------------------------------------------------------------- /S4/sequence4.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/FLUID/HEAD/S4/sequence4.npy -------------------------------------------------------------------------------- /S5/all_labels5.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/FLUID/HEAD/S5/all_labels5.npy -------------------------------------------------------------------------------- /S5/class_map5.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/FLUID/HEAD/S5/class_map5.npy -------------------------------------------------------------------------------- /S5/imgs_per_class5.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/FLUID/HEAD/S5/imgs_per_class5.npy -------------------------------------------------------------------------------- /S5/sequence5.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/FLUID/HEAD/S5/sequence5.npy -------------------------------------------------------------------------------- /convnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/FLUID/HEAD/convnet.py -------------------------------------------------------------------------------- /datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/FLUID/HEAD/datasets.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/FLUID/HEAD/environment.yml -------------------------------------------------------------------------------- /imagenet_classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/FLUID/HEAD/imagenet_classes.txt -------------------------------------------------------------------------------- /imagenet_synsets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/FLUID/HEAD/imagenet_synsets.txt -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/FLUID/HEAD/main.py -------------------------------------------------------------------------------- /metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/FLUID/HEAD/metrics.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/FLUID/HEAD/models.py -------------------------------------------------------------------------------- /models/test/pretrained_model.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/FLUID/HEAD/models/test/pretrained_model.pth -------------------------------------------------------------------------------- /models/test2/pretrained_model.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/FLUID/HEAD/models/test2/pretrained_model.pth -------------------------------------------------------------------------------- /options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/FLUID/HEAD/options.py -------------------------------------------------------------------------------- /overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/FLUID/HEAD/overview.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/FLUID/HEAD/requirements.txt -------------------------------------------------------------------------------- /trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/FLUID/HEAD/trainer.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RAIVNLab/FLUID/HEAD/utils.py --------------------------------------------------------------------------------