michigan-traffic-lab / Mcity-AV-Challenge

10 stars 2 forks source link

Changing main.sh file #8

Closed shivam-vashi closed 2 months ago

shivam-vashi commented 2 months ago

Is it allowed to modify the main.sh file to preprocess some data by running a script once something like this-

#!/bin/bash

python3 preprocess_data.py

sleep 1
for i in {1..2000}; do
    echo "iteration number ${i}"
    sleep 1
    python3 main.py
done
zhuhj-tery commented 2 months ago

It is not allowed to change the "main.sh" file.

shivam-vashi commented 2 months ago

Ok, Thank You for the clarification.