Skip to content

Commit 25ce0c8

Browse files
author
Marcin Kardas
committed
Update conda environment
1 parent e32454a commit 25ce0c8

File tree

3 files changed

+20
-6
lines changed

3 files changed

+20
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ See the [evaluation](notebooks/evaluation.ipynb) notebook for the full example o
4646
You can download pretrained models here:
4747

4848
- [axcell](https://github.com/paperswithcode/axcell/releases/download/v1.0/models.tar.xz) — an archive containing the taxonomy, abbreviations, table type classifier and table segmentation model. See the [results-extraction](notebooks/results-extraction.ipynb) notebook for an example of how to load and run the models
49-
- [language model](https://github.com/paperswithcode/axcell/releases/download/v1.0/lm.xz) — [ULMFiT](https://arxiv.org/abs/1801.06146) language model pretrained on the ArxivPapers dataset
49+
- [language model](https://github.com/paperswithcode/axcell/releases/download/v1.0/lm.pth.xz) — [ULMFiT](https://arxiv.org/abs/1801.06146) language model pretrained on the ArxivPapers dataset
5050

5151
## Results
5252

environment.yml

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: xtables
1+
name: axcell
22
channels:
33
- conda-forge
44
- defaults
@@ -7,9 +7,9 @@ dependencies:
77
- html5lib=1.0.1
88
- beautifulsoup4=4.7.1
99
- lxml=4.3.4
10-
- pandas=0.24.2
10+
- pandas=0.25.3
1111
- beautifulsoup4=4.7.1
12-
- numpy=1.15.4
12+
- numpy=1.18.1
1313
- python=3.7.1
1414
- pyahocorasick=1.4.0
1515
- Unidecode=1.0.23
@@ -19,5 +19,19 @@ dependencies:
1919
- python-magic=0.4.15
2020
- docker-py=4.1.0
2121
- python-magic=0.4.15
22-
- html5lib=1.0.1
2322
- seaborn
23+
- docker-compose=1.25.5
24+
- freetype=2.10.1
25+
- numba=0.48.0
26+
- pip:
27+
- sentencepiece
28+
- elasticsearch==6.3.1
29+
- elasticsearch-dsl==6.3.1
30+
- sklearn
31+
- regex
32+
- scispacy
33+
- psutil==5.6.7
34+
- "https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-2.2.5/en_core_web_sm-2.2.5.tar.gz"
35+
- "https://s3-us-west-2.amazonaws.com/ai2-s2-scispacy/releases/v0.2.4/en_core_sci_sm-0.2.4.tar.gz"
36+
- fastai==1.0.55
37+
- .

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# text = read_file.read()
1414
# pattern = re.compile(r"^__version__ = ['\"]([^'\"]*)['\"]", re.MULTILINE)
1515
# version = pattern.search(text).group(1)
16-
version="1.0-alpha"
16+
version="1.0.0"
1717

1818
# # Extract long_description
1919
# path = os.path.join(directory, 'README.md')

0 commit comments

Comments
 (0)