HiCAL icon indicating copy to clipboard operation
HiCAL copied to clipboard

Installation instruction create data in wrong dir.

Open bevankoopman opened this issue 3 years ago • 0 comments

Thanks for open sourcing this.

If you follow these instructions:

cd sample-dataset
python process.py athome4_sample.tgz
# Create the data directory which is mounted to the docker containers
mkdir ../data
cp athome4_sample.tgz athome4_sample_para.tgz ../data/

then it creates data in the root directory and copies the tgz files in there. It does not place them in the HiCAL/data directory. As a result the ./corpus_parser program in docker fails because /data in docker is empty.

I believe the instructions should say:

cd sample-dataset
python process.py athome4_sample.tgz
# Create the data directory which is mounted to the docker containers
cp athome4_sample.tgz athome4_sample_para.tgz ../HiCAL/data/

Thanks.

bevankoopman avatar Mar 30 '21 03:03 bevankoopman