Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

little code formatting to make it easier for others to copy #2

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
17 changes: 8 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,24 +24,23 @@ Please visit the [blog post](https://dossiers.page/semantically-distinct-key-phr

## Installation Instructions

1. conda create -n keyphrases python=3.8 --no-default-packages
1. `conda create -n keyphrases python=3.8 --no-default-packages`

2. conda activate keyphrases
2. `conda activate keyphrases`

3. pip install distinct-keywords
3. `pip install distinct-keywords`

4. python -m spacy download en_core_web_sm
4. `python -m spacy download en_core_web_sm`

5. `conda install --channel=conda-forge nb_conda_kernels jupyter`

5. conda install --channel=conda-forge nb_conda_kernels jupyter
6. Optional multi-lingual support

```
import nltk

nltk.download('omw')

```
7. jupyter notebook

7. `jupyter notebook`


## Getting started
Expand Down