6 lines
154 B
Bash
Executable file
6 lines
154 B
Bash
Executable file
#!/bin/bash
|
|
for filename in trainingdata/*.bin; do
|
|
echo $filename
|
|
./implementation $filename out.clone $1
|
|
./tensorCeral -d $1 out.clone
|
|
done
|