├── .idea ├── .gitignore ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── miner.iml ├── misc.xml └── modules.xml ├── README.md ├── arguments.py ├── assets └── model.png ├── config ├── eval.txt └── train.txt ├── main.py └── src ├── __init__.py ├── base_trainer.py ├── constants.py ├── entities.py ├── evaluation.py ├── logger_utils.py ├── loss.py ├── model ├── __init__.py ├── model.py └── news_encoder.py ├── reader.py ├── trainer.py └── utils.py /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duynguyen-0203/miner/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duynguyen-0203/miner/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duynguyen-0203/miner/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/miner.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duynguyen-0203/miner/HEAD/.idea/miner.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duynguyen-0203/miner/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duynguyen-0203/miner/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duynguyen-0203/miner/HEAD/README.md -------------------------------------------------------------------------------- /arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duynguyen-0203/miner/HEAD/arguments.py -------------------------------------------------------------------------------- /assets/model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duynguyen-0203/miner/HEAD/assets/model.png -------------------------------------------------------------------------------- /config/eval.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duynguyen-0203/miner/HEAD/config/eval.txt -------------------------------------------------------------------------------- /config/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duynguyen-0203/miner/HEAD/config/train.txt -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duynguyen-0203/miner/HEAD/main.py -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/base_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duynguyen-0203/miner/HEAD/src/base_trainer.py -------------------------------------------------------------------------------- /src/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duynguyen-0203/miner/HEAD/src/constants.py -------------------------------------------------------------------------------- /src/entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duynguyen-0203/miner/HEAD/src/entities.py -------------------------------------------------------------------------------- /src/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duynguyen-0203/miner/HEAD/src/evaluation.py -------------------------------------------------------------------------------- /src/logger_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duynguyen-0203/miner/HEAD/src/logger_utils.py -------------------------------------------------------------------------------- /src/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duynguyen-0203/miner/HEAD/src/loss.py -------------------------------------------------------------------------------- /src/model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duynguyen-0203/miner/HEAD/src/model/model.py -------------------------------------------------------------------------------- /src/model/news_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duynguyen-0203/miner/HEAD/src/model/news_encoder.py -------------------------------------------------------------------------------- /src/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duynguyen-0203/miner/HEAD/src/reader.py -------------------------------------------------------------------------------- /src/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duynguyen-0203/miner/HEAD/src/trainer.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/duynguyen-0203/miner/HEAD/src/utils.py --------------------------------------------------------------------------------