forked from allenai/allennlp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
requirements.txt
55 lines (38 loc) · 1.36 KB
/
requirements.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Library dependencies for the python code. You need to install these with
# `pip install -r requirements.txt` before you can run this.
#### ESSENTIAL LIBRARIES FOR MAIN FUNCTIONALITY ####
# In order to use allennlp you will also need to install pytorch. Currently, the version depends on
# your OS. Please visit http://pytorch.org/ and follow the instructions for installation.
# Parameter parsing.
pyhocon==0.3.35
# Type checking for python
typing
# Adds an @overrides decorator for better documentation and error checking when using subclasses.
overrides
# Used by some old code. We moved away from it because it's too slow, but some old code still
# imports this.
nltk
# Mainly used for the faster tokenizer.
spacy
# Used by span prediction models.
numpy
# Training visualisation using tensorboard.
pillow # A dependency of tensorboard-pytorch which is not recorded.
tensorboard-pytorch
# Required by torch.utils.ffi
cffi==1.11.2
# aws commandline tools for running on Docker remotely.
awscli>=1.11.91
# REST interface for models
sanic==0.6.0
#### LIBRARIES USED IN SCRIPTS ####
# argument parsing in for data cleaning scripts
argparse
# Used for downloading datasets over HTTP
requests>=2.18
# progress bars in data cleaning scripts
tqdm
# In SQuAD eval script, we use this to see if we likely have some tokenization problem.
editdistance
# Tutorial notebooks
jupyter