hx173149 / C3D-tensorflow

C3D is a modified version of BVLC tensorflow to support 3D ConvNets.
MIT License
588 stars 262 forks source link

Error in run the convert_images_to_list.sh #48

Open liuyuying0829 opened 6 years ago

liuyuying0829 commented 6 years ago

Dear author: when i run this shell script , the terminal remind the errors: convert_images_to_list.sh: 行 31: jot: 未找到命令 convert_images_to_list.sh: 行 31: ((: > 1 : 语法错误: 需要操作数 (错误符号是 "> 1 ") can you help me? Thank you!!

liuyuying0829 commented 6 years ago

this problem has been solved by sudo apt-get install athena-jot Thank others' issues

lixun95 commented 6 years ago

@liuyuying0829 You should better change your system language from Chinese to English for less bug, on the other hand, most of github user couldn't recognize Chinese

ZhiQue930716 commented 6 years ago

haha,I also faced this problem. thx

BestJuly commented 6 years ago

I meet the same problem and I can not use sudo apt-get install athena-jot command because I do not have the authority. Instead, I change line 31 if (( $(jot -r 1 1 $2) > 1 )); then to if (( $RANDOM % 4 | bc > 0 )); then which I think is OK to split the dataset and generate train.list and text.list. Closes #48

Yan-echo commented 5 years ago

this problem has been solved by sudo apt-get install athena-jot Thank others' issues

Did you run the program on Linux? I run it on Windows and have the same problem. How can I fix it?

rocksyne commented 5 years ago

@Yan-echo sudo apt-get install athena-jot only works on linux (debian) distributions such as Ubuntu