admin
commited on
Commit
·
f903536
1
Parent(s):
2334ed3
fix outputsize
Browse files- vi_backbones.py +3 -4
vi_backbones.py
CHANGED
@@ -1,10 +1,9 @@
|
|
1 |
import os
|
2 |
import re
|
3 |
import requests
|
4 |
-
from bs4 import BeautifulSoup
|
5 |
-
import pandas as pd
|
6 |
-
# import random
|
7 |
import datasets
|
|
|
|
|
8 |
|
9 |
|
10 |
_DBNAME = os.path.basename(__file__).split('.')[0]
|
@@ -29,7 +28,7 @@ class vi_backbones(datasets.GeneratorBasedBuilder):
|
|
29 |
"type": datasets.Value("string"),
|
30 |
# "type": datasets.features.ClassLabel(names=_NAMES),
|
31 |
"input_size": datasets.Value("int32"),
|
32 |
-
"
|
33 |
"url": datasets.Value("string"),
|
34 |
}
|
35 |
),
|
|
|
1 |
import os
|
2 |
import re
|
3 |
import requests
|
|
|
|
|
|
|
4 |
import datasets
|
5 |
+
import pandas as pd
|
6 |
+
from bs4 import BeautifulSoup
|
7 |
|
8 |
|
9 |
_DBNAME = os.path.basename(__file__).split('.')[0]
|
|
|
28 |
"type": datasets.Value("string"),
|
29 |
# "type": datasets.features.ClassLabel(names=_NAMES),
|
30 |
"input_size": datasets.Value("int32"),
|
31 |
+
"output_size": datasets.Value("int32"),
|
32 |
"url": datasets.Value("string"),
|
33 |
}
|
34 |
),
|