├── .gitignore ├── LICENSE ├── README.md ├── REDv1 ├── BERT_EmotionClassifier.py ├── data │ ├── test.csv │ ├── train.csv │ └── val.csv ├── readme.md ├── torch_dataset_creator.py └── train_bert_model.py └── REDv2 ├── README.md ├── data ├── test.json ├── train.json └── valid.json └── evaluation ├── README.md └── evaluate.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alegzandra/RED-Romanian-Emotion-Datasets/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alegzandra/RED-Romanian-Emotion-Datasets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alegzandra/RED-Romanian-Emotion-Datasets/HEAD/README.md -------------------------------------------------------------------------------- /REDv1/BERT_EmotionClassifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alegzandra/RED-Romanian-Emotion-Datasets/HEAD/REDv1/BERT_EmotionClassifier.py -------------------------------------------------------------------------------- /REDv1/data/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alegzandra/RED-Romanian-Emotion-Datasets/HEAD/REDv1/data/test.csv -------------------------------------------------------------------------------- /REDv1/data/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alegzandra/RED-Romanian-Emotion-Datasets/HEAD/REDv1/data/train.csv -------------------------------------------------------------------------------- /REDv1/data/val.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alegzandra/RED-Romanian-Emotion-Datasets/HEAD/REDv1/data/val.csv -------------------------------------------------------------------------------- /REDv1/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alegzandra/RED-Romanian-Emotion-Datasets/HEAD/REDv1/readme.md -------------------------------------------------------------------------------- /REDv1/torch_dataset_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alegzandra/RED-Romanian-Emotion-Datasets/HEAD/REDv1/torch_dataset_creator.py -------------------------------------------------------------------------------- /REDv1/train_bert_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alegzandra/RED-Romanian-Emotion-Datasets/HEAD/REDv1/train_bert_model.py -------------------------------------------------------------------------------- /REDv2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alegzandra/RED-Romanian-Emotion-Datasets/HEAD/REDv2/README.md -------------------------------------------------------------------------------- /REDv2/data/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alegzandra/RED-Romanian-Emotion-Datasets/HEAD/REDv2/data/test.json -------------------------------------------------------------------------------- /REDv2/data/train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alegzandra/RED-Romanian-Emotion-Datasets/HEAD/REDv2/data/train.json -------------------------------------------------------------------------------- /REDv2/data/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alegzandra/RED-Romanian-Emotion-Datasets/HEAD/REDv2/data/valid.json -------------------------------------------------------------------------------- /REDv2/evaluation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alegzandra/RED-Romanian-Emotion-Datasets/HEAD/REDv2/evaluation/README.md -------------------------------------------------------------------------------- /REDv2/evaluation/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alegzandra/RED-Romanian-Emotion-Datasets/HEAD/REDv2/evaluation/evaluate.py --------------------------------------------------------------------------------