We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e861926 commit 7393e34Copy full SHA for 7393e34
1 file changed
serverless-fleets/tutorials/inferencing/create-commands
@@ -3,7 +3,7 @@ set -eu
3
4
truncate -s0 commands.jsonl
5
6
-batch_size=10
+batch_size=1000
7
idx=0
8
batch_idx=0
9
@@ -18,10 +18,9 @@ for f in ../../data/input/inferencing/recipes/*.json; do
18
fi
19
20
file_in=$(basename "$f")
21
- file_out=${file_in%.*}.augmented.json
22
23
# echo "batch=$batch_idx idx=$idx file=$f"
24
- echo "/input/recipes/$file_in;/output/inferencing_$file_out" >> "../../data/input/inferencing/batches/$batch_idx.txt"
+ echo "/input/recipes/${file_in}" >> "../../data/input/inferencing/batches/$batch_idx.txt"
25
26
done
27
0 commit comments