Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
mgflast
/
easymode
like
0
Image Segmentation
English
cryoET
microscopy
segmentation
UNet
semantic
License:
gpl-3.0
Model card
Files
Files and versions
xet
Community
100b53c
easymode
/
write_md.py
mgflast
Upload 34 files
92e7d72
verified
19 days ago
raw
Copy download link
history
blame
Safe
213 Bytes
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
)