Restructure

This commit is contained in:
2025-10-20 23:06:52 +02:00
parent 995857ae54
commit c17e5bcc22
54 changed files with 19217 additions and 324966 deletions

21
setup.sh Normal file
View File

@@ -0,0 +1,21 @@
#!/bin/bash -e
cp -r hooks .git/hooks
# BERTopic
cd bertopic
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
python -m spacy download en_core_web_sm
deactivate
cd ../
# RAFT
cd raft
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
deactivate
cd ../