RyoMurakami commited on
Commit
e37ddac
·
verified ·
1 Parent(s): 1d50143

Add requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +22 -0
requirements.txt ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Dependencies for the OpenH-RF eSAF sub-dataset package.
2
+ # Install with: python -m pip install -r requirements.txt
3
+ #
4
+ # reconstruct.py follows the OpenH-RF example templates and runs the processing
5
+ # chain defined in pipeline.yaml through the zea.Pipeline — zea (>= 0.1.0, the
6
+ # version the files were written with via zea.File.create) and one Keras backend
7
+ # (jax below; tensorflow/torch also work, set KERAS_BACKEND accordingly) are
8
+ # required. Run with: KERAS_BACKEND=jax python reconstruct.py
9
+ numpy>=1.24
10
+ scipy>=1.10
11
+ matplotlib>=3.6
12
+ h5py>=3.8
13
+ pyyaml>=6.0
14
+ zea>=0.1.0
15
+ jax
16
+
17
+ # Notes:
18
+ # - verify_submission.py's structural checks (deliverables, HDF5 schema, manifest,
19
+ # pipeline.yaml) need only numpy/h5py/pyyaml; its reconstruction smoke test runs
20
+ # reconstruct.py and therefore needs zea + a backend like everything else.
21
+ # - extras/esaf_demo.py (optional eSAF demonstration) needs only numpy/scipy/
22
+ # matplotlib/h5py.