mirror of
https://github.com/marvinscham/masterthesis-playground.git
synced 2026-02-04 21:13:12 +01:00
Restructure
This commit is contained in:
21
setup.sh
Normal file
21
setup.sh
Normal 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 ../
|
||||
Reference in New Issue
Block a user