FoamoftheSea
commited on
Commit
•
dab84ad
1
Parent(s):
1351f8f
Fixed "out_indices" and "out_features" fields in config
Browse filesThese fields were being incorrectly stored with underscore prefixes as "_out_indices" and "_out_features". They should be stored as "out_indices" and "out_features" for proper loading of PVTv2 as a backbone.
- 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
|