https://github.com/alchemz/neural-dependency-parser-pytorch
build a neural dependency parser using PyTorch
https://github.com/alchemz/neural-dependency-parser-pytorch
Last synced: 3 months ago
JSON representation
build a neural dependency parser using PyTorch
- Host: GitHub
- URL: https://github.com/alchemz/neural-dependency-parser-pytorch
- Owner: alchemz
- Created: 2023-01-31T07:39:24.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-01T21:26:24.000Z (over 2 years ago)
- Last Synced: 2025-01-07T07:16:30.508Z (5 months ago)
- Language: Python
- Size: 111 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# neural-dependency-parser-pytorch
build a neural dependency parser using PyTorch# 1. Activate your old environment:
conda activate cs224n
# 2. Install docopt
conda install docopt
# 3. Install pytorch, torchvision, and tqdm
conda install pytorch torchvision -c pytorch
conda install -c anaconda tqdmIf you would like to instead create a new environment for this assignment, please run:
# 1. Create an environment with dependencies specified in local_env.yml (note that this can take some time depending on your laptop):
conda env create -f local_env.yml# 2. Activate the new environment:
conda activate cs224n_a3
# To deactivate an active environment, use
conda deactivate