Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
nvidia
/
Plan2Align-NV
like
0
Sleeping
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
1d63826
Plan2Align-NV
/
laser
/
docker
/
decode.py
KuangDW
Add laser2.spm using Git LFS
05d3571
about 1 month ago
raw
Copy download link
history
blame
Safe
141 Bytes
import
numpy
as
np
import
sys
dim =
1024
X = np.fromfile(sys.argv[
1
], dtype=np.float32, count=-
1
)
X.resize(X.shape[
0
] // dim, dim)
print
(X)