FoamoftheSea commited on
Commit
6a7a23d
1 Parent(s): 523f2ba

Update "out_indices" and "out_features" fields in config for compatibility with new code

Browse files

These fields were previously being stored incorrectly to the JSON with the underscore prefix (e.g. "_out_indices"). This was an error, and they should be saved here without the underscore prefix as "out_indices" for correct loading.

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