Cyrile commited on
Commit
c2b2493
1 Parent(s): 08853d8

Update aftdb.py

Browse files
Files changed (1) hide show
  1. aftdb.py +3 -3
aftdb.py CHANGED
@@ -62,7 +62,7 @@ class AFT_Dataset(datasets.GeneratorBasedBuilder):
62
  "Dataset containing scientific article figures associated "
63
  "with their caption, summary, and article title."
64
  ),
65
- data_dir="./data/arxiv_dataset/{type}",
66
  nb_files_figure=_NB_TAR_FIGURE,
67
  nb_files_table=None
68
  ),
@@ -74,7 +74,7 @@ class AFT_Dataset(datasets.GeneratorBasedBuilder):
74
  "representation of the table, including its caption, summary, "
75
  "and article title."
76
  ),
77
- data_dir="./data/arxiv_dataset/{type}",
78
  nb_files_figure=None,
79
  nb_files_table=_NB_TAR_TABLE
80
  ),
@@ -86,7 +86,7 @@ class AFT_Dataset(datasets.GeneratorBasedBuilder):
86
  "textual representation of the table, including its caption, "
87
  "summary, and article title."
88
  ),
89
- data_dir="./data/arxiv_dataset/{type}",
90
  nb_files_figure=_NB_TAR_FIGURE,
91
  nb_files_table=_NB_TAR_TABLE
92
  )
 
62
  "Dataset containing scientific article figures associated "
63
  "with their caption, summary, and article title."
64
  ),
65
+ data_dir="./{type}",
66
  nb_files_figure=_NB_TAR_FIGURE,
67
  nb_files_table=None
68
  ),
 
74
  "representation of the table, including its caption, summary, "
75
  "and article title."
76
  ),
77
+ data_dir="./{type}",
78
  nb_files_figure=None,
79
  nb_files_table=_NB_TAR_TABLE
80
  ),
 
86
  "textual representation of the table, including its caption, "
87
  "summary, and article title."
88
  ),
89
+ data_dir="./{type}",
90
  nb_files_figure=_NB_TAR_FIGURE,
91
  nb_files_table=_NB_TAR_TABLE
92
  )