File size: 213 Bytes
92e7d72
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import json
import glob

models = glob.glob("*.h5")

for m in models:
	metadata = {'apix': 10.0, 'timestamp': '20251124113500'}
	with open(m.replace(".h5", ".json"), 'w') as f:
		json.dump(metadata, f, indent=2)