├── .gitignore ├── 1_executePrediction.ipynb ├── 2_spm_training.ipynb ├── README.md ├── model_structure.png ├── plot_model.png ├── produceOutput.py ├── textClassfierModel.py └── textPreprocessor.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myeonghak/Transformer-product-categorization/HEAD/.gitignore -------------------------------------------------------------------------------- /1_executePrediction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myeonghak/Transformer-product-categorization/HEAD/1_executePrediction.ipynb -------------------------------------------------------------------------------- /2_spm_training.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myeonghak/Transformer-product-categorization/HEAD/2_spm_training.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myeonghak/Transformer-product-categorization/HEAD/README.md -------------------------------------------------------------------------------- /model_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myeonghak/Transformer-product-categorization/HEAD/model_structure.png -------------------------------------------------------------------------------- /plot_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myeonghak/Transformer-product-categorization/HEAD/plot_model.png -------------------------------------------------------------------------------- /produceOutput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myeonghak/Transformer-product-categorization/HEAD/produceOutput.py -------------------------------------------------------------------------------- /textClassfierModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myeonghak/Transformer-product-categorization/HEAD/textClassfierModel.py -------------------------------------------------------------------------------- /textPreprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/myeonghak/Transformer-product-categorization/HEAD/textPreprocessor.py --------------------------------------------------------------------------------