Hatespeech detection based on DR Facebook data.
Developers:
- Dan Saattrup Nielsen ([email protected])
- Anders Jess Pedersen ([email protected])
- Run
make install
, which installs Poetry (if it isn't already installed), sets up a virtual environment and all Python dependencies therein. - Run
source .venv/bin/activate
to activate the virtual environment.
To install new PyPI packages, run:
poetry add <package-name>
To auto-generate API document for your project, run:
make docs
To view the documentation, run:
make view-docs
- Poetry: Dependency management
- hydra: Manage configuration files
- pre-commit plugins: Automate code reviewing formatting
- pdoc: Automatically create an API documentation for your project
.
├── .flake8
├── .github
│ └── workflows
│ ├── ci.yaml
│ └── docs.yaml
├── .gitignore
├── .pre-commit-config.yaml
├── LICENSE
├── README.md
├── config
│ ├── __init__.py
│ ├── config.yaml
│ ├── data
│ │ ├── offensive.yaml
│ │ └── test_offensive.yaml
│ ├── hatespeech-label-config.xml
│ ├── offensive-label-config.xml
│ ├── tfidf_model
│ │ └── tfidf_model.yaml
│ └── transformer_model
│ ├── aelaectra.yaml
│ ├── aelaectra2.yaml
│ ├── xlmr-base.yaml
│ ├── xlmr-base2.yaml
│ ├── xlmr-base3.yaml
│ └── xlmr-large.yaml
├── data
│ ├── final
│ ├── processed
│ └── raw
│ └── scores.xlsx
├── makefile
├── models
│ └── tfidf_model.bin
├── notebooks
│ ├── analyse-weak-labels.ipynb
│ ├── compare_models.ipynb
│ ├── evaluate_agreement.ipynb
│ └── evaluate_models.ipynb
├── poetry.toml
├── pyproject.toml
├── src
│ ├── hatespeech
│ │ ├── __init__.py
│ │ ├── attack.py
│ │ ├── clean_data.py
│ │ ├── create_train_split.py
│ │ ├── labelling_functions.py
│ │ ├── load_data.py
│ │ ├── main.py
│ │ ├── prepare_data_for_annotation.py
│ │ ├── snorkel_utils.py
│ │ ├── train_tfidf.py
│ │ ├── train_transformer.py
│ │ └── weak_supervision.py
│ └── scripts
│ └── fix_dot_env_file.py
└── tests
├── __init__.py
├── conftest.py
├── test_data.py
├── test_labelling_functions.py
└── test_weak_supervision.py