Fine-tuning LLMs for detecting hate speech categories in Spanish.
Created by: Fer Aguirre
├── .gitignore
├── .gitsecret
│ ├── keys
│ │ ├── mapping.cfg
│ │ ├── pubring.kbx
│ │ ├── pubring.kbx~
│ │ └── trustdb.gpg
│ └── paths
│ └── mapping.cfg
├── .minetrc.secret
├── LICENSE
├── Pipfile
├── Pipfile.lock
├── README.md
├── assets
├── config.ini
├── data
│ ├── processed
│ └── raw
├── docs
│ ├── data-dictionary.md
│ └── references
├── hackathon_somos_nlp_2023
│ ├── __init__.py
│ ├── data
│ │ ├── __init__.py
│ │ ├── analyze.py
│ │ ├── export.py
│ │ ├── load.py
│ │ └── process.py
│ └── utils
│ ├── __init__.py
│ └── paths.py
├── models
├── notebooks
│ ├── 0.0-process.ipynb
│ ├── 1.0-analyze.ipynb
│ └── 2.0-visualize.ipynb
├── outputs
│ ├── figures
│ └── tables
├── scripts
└── setup.py
This project is released under MIT License.
This repository was generated with cookiecutter.