FoamoftheSea commited on
Commit
8e50da0
1 Parent(s): bd744d1

Fixed "out_indices" and "out_features" fields in config

Browse files

These fields were being incorrectly stored with underscore prefixes as "_out_indices" and "_out_features". They should be stored as "out_features" and "out_indices" without the prefix for proper loading of PVTv2 as a backbone.

Files changed (1) hide show
  1. config.json +2 -2
config.json CHANGED
@@ -1,11 +1,11 @@
1
  {
2
  "_name_or_path": "FoamoftheSea/pvt_v2_b4",
3
- "_out_features": [
4
  "stage2",
5
  "stage3",
6
  "stage4"
7
  ],
8
- "_out_indices": [
9
  1,
10
  2,
11
  3
 
1
  {
2
  "_name_or_path": "FoamoftheSea/pvt_v2_b4",
3
+ "out_features": [
4
  "stage2",
5
  "stage3",
6
  "stage4"
7
  ],
8
+ "out_indices": [
9
  1,
10
  2,
11
  3