summaryrefslogtreecommitdiff
path: root/compiler/imgdata2hdf5/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/imgdata2hdf5/README.md')
-rw-r--r--compiler/imgdata2hdf5/README.md24
1 files changed, 0 insertions, 24 deletions
diff --git a/compiler/imgdata2hdf5/README.md b/compiler/imgdata2hdf5/README.md
deleted file mode 100644
index 54743e070..000000000
--- a/compiler/imgdata2hdf5/README.md
+++ /dev/null
@@ -1,24 +0,0 @@
-# imgdata2hdf5
-
-_imgdata2hdf5_ is a tool to convert raw image data (assumed to be pre-processed) to an hdf5 file.
-
-## Prerequisite
-- Raw image data pre-processed for the corresponding DNN model
-- List of data to convert (saved in the text file)
-- Python installed with _numpy_ and _h5py_ (See docs/how-to-prepare-virtualenv.txt)
-
-## Example
-```
-python imgdata2hdf5.py \
-> --data_list=tmp/imgdata/datalist.txt
-> --output_path=tmp/imgdata/imgdata.hdf5
-```
-
-## Arguments
-```
- -h, --help Show this help message and exit
- -l DATA_LIST, --data_list DATA_LIST
- Path to the text file which lists the absolute paths of the raw image data files to be converted.
- -o OUTPUT_PATH, --output_path OUTPUT_PATH
- Path to the output hdf5 file.
-```