Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
GRAAL-Research
GitHub Repository: GRAAL-Research/deepparse
Path: blob/main/models_evaluation/generate_tables.py
1232 views
1
import os
2
3
from models_evaluation.tools import make_table, make_table_rst
4
5
root_path = os.path.join(".", "results", "actual")
6
make_table(data_type="training", root_path=root_path)
7
make_table(data_type="training_incomplete", root_path=root_path)
8
make_table(data_type="zero_shot", root_path=root_path, with_attention=True)
9
10
make_table_rst(data_type="training", root_path=root_path)
11
make_table_rst(data_type="training_incomplete", root_path=root_path)
12
make_table_rst(data_type="zero_shot", root_path=root_path, with_attention=True)
13
14