├── .gitignore ├── LICENSE ├── README.md ├── data └── news_corpora_small.csv ├── environment_cpu.yml ├── environment_gpu.yml ├── media ├── escoge_acelerador.png └── jupyter_notebook.png └── notebooks ├── 1_Mecanismos_de_Atencion_.ipynb └── 2_Clasificacion_de_texto_transformadores_multiclase.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcascanteb/riiaa_2020_TNLP/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcascanteb/riiaa_2020_TNLP/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcascanteb/riiaa_2020_TNLP/HEAD/README.md -------------------------------------------------------------------------------- /data/news_corpora_small.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcascanteb/riiaa_2020_TNLP/HEAD/data/news_corpora_small.csv -------------------------------------------------------------------------------- /environment_cpu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcascanteb/riiaa_2020_TNLP/HEAD/environment_cpu.yml -------------------------------------------------------------------------------- /environment_gpu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcascanteb/riiaa_2020_TNLP/HEAD/environment_gpu.yml -------------------------------------------------------------------------------- /media/escoge_acelerador.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcascanteb/riiaa_2020_TNLP/HEAD/media/escoge_acelerador.png -------------------------------------------------------------------------------- /media/jupyter_notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcascanteb/riiaa_2020_TNLP/HEAD/media/jupyter_notebook.png -------------------------------------------------------------------------------- /notebooks/1_Mecanismos_de_Atencion_.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcascanteb/riiaa_2020_TNLP/HEAD/notebooks/1_Mecanismos_de_Atencion_.ipynb -------------------------------------------------------------------------------- /notebooks/2_Clasificacion_de_texto_transformadores_multiclase.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pcascanteb/riiaa_2020_TNLP/HEAD/notebooks/2_Clasificacion_de_texto_transformadores_multiclase.ipynb --------------------------------------------------------------------------------