Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,5 @@ backend/token.json
backend/service_account_key.json
venv
backend/Eduaid
.DS_Store
.DS_Store
backend/s2v_reddit_2015_md.tar.gz
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ You can choose to set up the backend manually or use an automated shell script.
- Download the Sense2Vec model from [this link](https://github.com/explosion/sense2vec/releases/download/v1.0.0/s2v_reddit_2015_md.tar.gz) and extract the contents into the `backend` folder.

2. **Install Python Dependencies**:
"Note: Ensure you are using Python 3.11 or 3.12. Python 3.13 is currently incompatible with several required machine learning libraries."

- Navigate to the root repository folder and run the following command to install the required Python dependencies:
```bash
pip install -r requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
torch==2.5.1
torch>=2.8.0
transformers==4.46.1
sense2vec==2.0.2
strsim==0.0.3
Expand Down