Skip to content

Commit a8054e6

Browse files
author
Marcin Kardas
committed
Update README
1 parent 0f53f2d commit a8054e6

File tree

4 files changed

+107
-3
lines changed

4 files changed

+107
-3
lines changed

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,16 @@ We publish the following datasets:
2323
* [PWCLeaderboards](https://github.com/paperswithcode/axcell/releases/download/v1.0/pwc-leaderboards.json.xz)
2424

2525
See [datasets](notebooks/datasets.ipynb) notebook for an example of how to load the datasets provided below. The [extraction](notebooks/extraction.ipynb) notebook shows how to use `axcell` to extract text and tables from papers.
26-
## Training
27-
28-
2926

3027
## Evaluation
3128

3229
See the [evaluation](notebooks/evaluation.ipynb) notebook for the full example on how to evaluate AxCell on the PWCLeaderboards dataset.
3330

31+
## Training
32+
33+
* [pre-training language model](notebooks/training/lm.ipynb) on the ArxivPapers dataset
34+
* [table type classifier](notebooks/training/table-type-classifier.ipynb) and [table segmentation](notebooks/training/table-segmentation.ipynb) on the SegmentedResults dataset
35+
3436
## Pre-trained Models
3537

3638
You can download pretrained models here:

notebooks/training/lm.ipynb

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"metadata": {},
6+
"source": [
7+
"# Language Model Pre-training\n",
8+
"\n",
9+
"Coming soon"
10+
]
11+
}
12+
],
13+
"metadata": {
14+
"kernelspec": {
15+
"display_name": "Python 3",
16+
"language": "python",
17+
"name": "python3"
18+
},
19+
"language_info": {
20+
"codemirror_mode": {
21+
"name": "ipython",
22+
"version": 3
23+
},
24+
"file_extension": ".py",
25+
"mimetype": "text/x-python",
26+
"name": "python",
27+
"nbconvert_exporter": "python",
28+
"pygments_lexer": "ipython3",
29+
"version": "3.6.8"
30+
}
31+
},
32+
"nbformat": 4,
33+
"nbformat_minor": 2
34+
}
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"metadata": {},
6+
"source": [
7+
"# Table Segmentation Training\n",
8+
"\n",
9+
"Coming soon"
10+
]
11+
}
12+
],
13+
"metadata": {
14+
"kernelspec": {
15+
"display_name": "Python 3",
16+
"language": "python",
17+
"name": "python3"
18+
},
19+
"language_info": {
20+
"codemirror_mode": {
21+
"name": "ipython",
22+
"version": 3
23+
},
24+
"file_extension": ".py",
25+
"mimetype": "text/x-python",
26+
"name": "python",
27+
"nbconvert_exporter": "python",
28+
"pygments_lexer": "ipython3",
29+
"version": "3.6.8"
30+
}
31+
},
32+
"nbformat": 4,
33+
"nbformat_minor": 2
34+
}
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
{
2+
"cells": [
3+
{
4+
"cell_type": "markdown",
5+
"metadata": {},
6+
"source": [
7+
"# Table Type Classifier Training \n",
8+
"\n",
9+
"Coming soon"
10+
]
11+
}
12+
],
13+
"metadata": {
14+
"kernelspec": {
15+
"display_name": "Python 3",
16+
"language": "python",
17+
"name": "python3"
18+
},
19+
"language_info": {
20+
"codemirror_mode": {
21+
"name": "ipython",
22+
"version": 3
23+
},
24+
"file_extension": ".py",
25+
"mimetype": "text/x-python",
26+
"name": "python",
27+
"nbconvert_exporter": "python",
28+
"pygments_lexer": "ipython3",
29+
"version": "3.6.8"
30+
}
31+
},
32+
"nbformat": 4,
33+
"nbformat_minor": 2
34+
}

0 commit comments

Comments
 (0)