Skip to content

Commit

Permalink
Update README.md with sentiment classification envir specs
Browse files Browse the repository at this point in the history
  • Loading branch information
pybeebee authored Feb 29, 2024
1 parent e38ec95 commit 48ca70d
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,14 @@ To run frontend or backend code, please add an `.env` file inside that directory
```
OPENAI_API_KEY=sk-XXX
```
Don't push your API key to this repo!
Don't push your API key to this repo!

To run sentiment classification, first create a conda environment for Python 3 using the requirements.txt file:
```
conda create --name <env_name> --file sent_classif_requirements.txt
```
Activate the conda environment by running:
```
conda activate <env_name>
```
where `<env_name>` is your name of choice for the conda environment.

0 comments on commit 48ca70d

Please sign in to comment.