AdityaKane2001 / ACL_WASSA

Code for WASSA'22 shared task.
Apache License 2.0
7 stars 3 forks source link

TODO: Fix file structure #1

Closed AdityaKane2001 closed 2 years ago

AdityaKane2001 commented 2 years ago

Fix file structure for the project. Proposed structure:

.
└── ACL_WASSA/
    ├── modela/
    │   ├── BERT.py
    │   ├── LSTM.py
    │   ├── Roberta.py
    │   └── ...
    ├── dataset.py/
    │   ├── class WASSADataset
    │   ├── def get_empathy_prediction_dataset
    │   ├── def get_distress_prediction_dataset
    │   └── ...
    ├── config.py/
    │   ├── def get_preprocessing_config
    │   ├── def get_model_config
    │   └── ...
    └── train.py/
        ├── model = get_model(cfg)