Spaces:
Runtime error
Runtime error
File size: 283 Bytes
9dd7d9c |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#!/bin/bash
# Step a: Install dependencies
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
# Step b: Run necessary parts of the codebase
#python src/document_term_matrix.py &
#python src/cosine_similarity.py &
python src/synthetic_user_data.py &
wait |