├── .gitignore ├── LICENCE.md ├── README.md ├── create_dataset.py ├── data_preprocess.py ├── files ├── inputs │ └── .gitkeep └── outputs │ └── .gitkeep ├── neural_loop_combiner ├── __init__.py ├── config │ ├── __init__.py │ ├── database.py │ └── settings.py ├── dataset │ ├── __init__.py │ ├── dataSampler.py │ ├── dataset.py │ ├── pipeline │ │ ├── __init__.py │ │ ├── extractor.py │ │ ├── pipeline.py │ │ └── refintor.py │ ├── sampler │ │ ├── __init__.py │ │ ├── manipuler.py │ │ └── sampler.py │ └── tagger.py ├── models │ ├── datasets.py │ ├── losses.py │ └── models.py ├── trainer │ └── trainer.py └── utils │ ├── __init__.py │ ├── comparison.py │ ├── features.py │ ├── manipulate.py │ ├── seperate.py │ ├── utils.py │ └── visualize.py ├── requirements.txt └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-aidj/neural-loop-combiner/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-aidj/neural-loop-combiner/HEAD/LICENCE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-aidj/neural-loop-combiner/HEAD/README.md -------------------------------------------------------------------------------- /create_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-aidj/neural-loop-combiner/HEAD/create_dataset.py -------------------------------------------------------------------------------- /data_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-aidj/neural-loop-combiner/HEAD/data_preprocess.py -------------------------------------------------------------------------------- /files/inputs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/outputs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /neural_loop_combiner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /neural_loop_combiner/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /neural_loop_combiner/config/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-aidj/neural-loop-combiner/HEAD/neural_loop_combiner/config/database.py -------------------------------------------------------------------------------- /neural_loop_combiner/config/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-aidj/neural-loop-combiner/HEAD/neural_loop_combiner/config/settings.py -------------------------------------------------------------------------------- /neural_loop_combiner/dataset/__init__.py: -------------------------------------------------------------------------------- 1 | from .dataset import * -------------------------------------------------------------------------------- /neural_loop_combiner/dataset/dataSampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-aidj/neural-loop-combiner/HEAD/neural_loop_combiner/dataset/dataSampler.py -------------------------------------------------------------------------------- /neural_loop_combiner/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-aidj/neural-loop-combiner/HEAD/neural_loop_combiner/dataset/dataset.py -------------------------------------------------------------------------------- /neural_loop_combiner/dataset/pipeline/__init__.py: -------------------------------------------------------------------------------- 1 | from .pipeline import * 2 | -------------------------------------------------------------------------------- /neural_loop_combiner/dataset/pipeline/extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-aidj/neural-loop-combiner/HEAD/neural_loop_combiner/dataset/pipeline/extractor.py -------------------------------------------------------------------------------- /neural_loop_combiner/dataset/pipeline/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-aidj/neural-loop-combiner/HEAD/neural_loop_combiner/dataset/pipeline/pipeline.py -------------------------------------------------------------------------------- /neural_loop_combiner/dataset/pipeline/refintor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-aidj/neural-loop-combiner/HEAD/neural_loop_combiner/dataset/pipeline/refintor.py -------------------------------------------------------------------------------- /neural_loop_combiner/dataset/sampler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-aidj/neural-loop-combiner/HEAD/neural_loop_combiner/dataset/sampler/__init__.py -------------------------------------------------------------------------------- /neural_loop_combiner/dataset/sampler/manipuler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-aidj/neural-loop-combiner/HEAD/neural_loop_combiner/dataset/sampler/manipuler.py -------------------------------------------------------------------------------- /neural_loop_combiner/dataset/sampler/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-aidj/neural-loop-combiner/HEAD/neural_loop_combiner/dataset/sampler/sampler.py -------------------------------------------------------------------------------- /neural_loop_combiner/dataset/tagger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-aidj/neural-loop-combiner/HEAD/neural_loop_combiner/dataset/tagger.py -------------------------------------------------------------------------------- /neural_loop_combiner/models/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-aidj/neural-loop-combiner/HEAD/neural_loop_combiner/models/datasets.py -------------------------------------------------------------------------------- /neural_loop_combiner/models/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-aidj/neural-loop-combiner/HEAD/neural_loop_combiner/models/losses.py -------------------------------------------------------------------------------- /neural_loop_combiner/models/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-aidj/neural-loop-combiner/HEAD/neural_loop_combiner/models/models.py -------------------------------------------------------------------------------- /neural_loop_combiner/trainer/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-aidj/neural-loop-combiner/HEAD/neural_loop_combiner/trainer/trainer.py -------------------------------------------------------------------------------- /neural_loop_combiner/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /neural_loop_combiner/utils/comparison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-aidj/neural-loop-combiner/HEAD/neural_loop_combiner/utils/comparison.py -------------------------------------------------------------------------------- /neural_loop_combiner/utils/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-aidj/neural-loop-combiner/HEAD/neural_loop_combiner/utils/features.py -------------------------------------------------------------------------------- /neural_loop_combiner/utils/manipulate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-aidj/neural-loop-combiner/HEAD/neural_loop_combiner/utils/manipulate.py -------------------------------------------------------------------------------- /neural_loop_combiner/utils/seperate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-aidj/neural-loop-combiner/HEAD/neural_loop_combiner/utils/seperate.py -------------------------------------------------------------------------------- /neural_loop_combiner/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-aidj/neural-loop-combiner/HEAD/neural_loop_combiner/utils/utils.py -------------------------------------------------------------------------------- /neural_loop_combiner/utils/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-aidj/neural-loop-combiner/HEAD/neural_loop_combiner/utils/visualize.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-aidj/neural-loop-combiner/HEAD/requirements.txt -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mir-aidj/neural-loop-combiner/HEAD/train.py --------------------------------------------------------------------------------