admin
commited on
Commit
·
60bf99f
1
Parent(s):
9a42015
fix urls
Browse files- vi_backbones.py +1 -1
vi_backbones.py
CHANGED
@@ -40,7 +40,7 @@ class vi_backbones(datasets.GeneratorBasedBuilder):
|
|
40 |
size_span = url_span.find_next_sibling('span', {'class': 'mi'})
|
41 |
if m_type == 'wide' or m_type == 'resnext':
|
42 |
m_type = 'resnet'
|
43 |
-
m_url = str(url_span.text[1:-
|
44 |
input_size = int(size_span.text)
|
45 |
# num_params = int(params_span.text)
|
46 |
m_dict = {
|
|
|
40 |
size_span = url_span.find_next_sibling('span', {'class': 'mi'})
|
41 |
if m_type == 'wide' or m_type == 'resnext':
|
42 |
m_type = 'resnet'
|
43 |
+
m_url = str(url_span.text[1:-1])
|
44 |
input_size = int(size_span.text)
|
45 |
# num_params = int(params_span.text)
|
46 |
m_dict = {
|