FoamoftheSea
commited on
Commit
•
662667f
1
Parent(s):
31bb879
Correct "out_indices" and "out_features" fields in config
Browse filesThese fields were previously being incorrectly stored with the underscore prefix (e.g. "_out_indices"). This was an error, and they should be stored as "out_indices" and "out_features" without the prefix.
- config.json +2 -2
config.json
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
{
|
2 |
"_name_or_path": "FoamoftheSea/pvt_v2_b1",
|
3 |
-
"
|
4 |
"stage2",
|
5 |
"stage3",
|
6 |
"stage4"
|
7 |
],
|
8 |
-
"
|
9 |
1,
|
10 |
2,
|
11 |
3
|
|
|
1 |
{
|
2 |
"_name_or_path": "FoamoftheSea/pvt_v2_b1",
|
3 |
+
"out_features": [
|
4 |
"stage2",
|
5 |
"stage3",
|
6 |
"stage4"
|
7 |
],
|
8 |
+
"out_indices": [
|
9 |
1,
|
10 |
2,
|
11 |
3
|