Spaces:
Runtime error
Runtime error
Update entrypoint.sh
Browse files- entrypoint.sh +1 -1
entrypoint.sh
CHANGED
@@ -9,7 +9,7 @@ config_dir="/optimum-benchmark/examples/energy_star/"
|
|
9 |
|
10 |
echo "Attempting to run."
|
11 |
# For each line in the requests dataset....
|
12 |
-
python /parse_requests.py | head -n
|
13 |
# Read the name of the model and the experiment (task).
|
14 |
IFS="," read model task <<< "${line}"
|
15 |
echo "Benchmarking Model: ${model}, Task: ${task}"
|
|
|
9 |
|
10 |
echo "Attempting to run."
|
11 |
# For each line in the requests dataset....
|
12 |
+
python /parse_requests.py | head -n 10 | while read -r line; do
|
13 |
# Read the name of the model and the experiment (task).
|
14 |
IFS="," read model task <<< "${line}"
|
15 |
echo "Benchmarking Model: ${model}, Task: ${task}"
|