Skip to content

Commit 261440a

Browse files
committed
cleanup, upodate requirements
1 parent 250683c commit 261440a

8 files changed

Lines changed: 9 additions & 9 deletions

File tree

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,13 @@ We have studied the question of how the different types of web tables can be rel
1313
The modules of our pipeline are implemented in `wtrec`. Our pipeline looks like this:
1414

1515
```
16-
graph LR
17-
A(loader.py)
18-
A --> B(transformer.py)
19-
B --> C(splitter.py)
20-
C --> D(classifier.py)
21-
D --> E(evaluator.py)
16+
(Dataset)
17+
|
18+
|
19+
[loader.py] --> [transformer.py] --> [splitter.py] --> [classifier.py] --> [evaluator.py]
20+
|
21+
|
22+
(Classification Result)
2223
```
2324

2425
The actual pipelines are implemented using Jupyter Notebooks: see `approach_pipeline.ipynb` and `baseline_pipeline.ipynb` for details.

requirements-dev.txt

Lines changed: 0 additions & 3 deletions
This file was deleted.

requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,5 @@ imgkit
1212
joblib
1313
tqdm
1414
regex
15+
Pillow
16+
flake8

wtrec/tests/test_classifier.py

Whitespace-only changes.

wtrec/tests/test_evaluator.py

Whitespace-only changes.

wtrec/tests/test_loader.py

Whitespace-only changes.

wtrec/tests/test_splitter.py

Whitespace-only changes.

wtrec/tests/test_transformer.py

Whitespace-only changes.

0 commit comments

Comments
 (0)