├── .gitignore ├── LICENSE ├── README.md ├── app.py ├── dash_files └── desc.md ├── dashs.py ├── embedding.py ├── models ├── audio_models.py ├── hierarchical_clusterer.py └── visual_models.py ├── options ├── options.py └── opts.yaml ├── reorganize.py ├── requirements.txt ├── train.py └── util └── dataloader.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumenPallidium/neural-file-sorter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumenPallidium/neural-file-sorter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumenPallidium/neural-file-sorter/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumenPallidium/neural-file-sorter/HEAD/app.py -------------------------------------------------------------------------------- /dash_files/desc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumenPallidium/neural-file-sorter/HEAD/dash_files/desc.md -------------------------------------------------------------------------------- /dashs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumenPallidium/neural-file-sorter/HEAD/dashs.py -------------------------------------------------------------------------------- /embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumenPallidium/neural-file-sorter/HEAD/embedding.py -------------------------------------------------------------------------------- /models/audio_models.py: -------------------------------------------------------------------------------- 1 | import torch 2 | 3 | ##todo -------------------------------------------------------------------------------- /models/hierarchical_clusterer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumenPallidium/neural-file-sorter/HEAD/models/hierarchical_clusterer.py -------------------------------------------------------------------------------- /models/visual_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumenPallidium/neural-file-sorter/HEAD/models/visual_models.py -------------------------------------------------------------------------------- /options/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumenPallidium/neural-file-sorter/HEAD/options/options.py -------------------------------------------------------------------------------- /options/opts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumenPallidium/neural-file-sorter/HEAD/options/opts.yaml -------------------------------------------------------------------------------- /reorganize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumenPallidium/neural-file-sorter/HEAD/reorganize.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | torch>=1.7.1 2 | tqdm 3 | scikit-learn 4 | pandas 5 | plotly 6 | dash 7 | Pillow 8 | pyyaml 9 | av -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumenPallidium/neural-file-sorter/HEAD/train.py -------------------------------------------------------------------------------- /util/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LumenPallidium/neural-file-sorter/HEAD/util/dataloader.py --------------------------------------------------------------------------------