You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I believe, the lines linked below in the docker utility files should say ${PWD} (curly braces, using the environment variable that is automatically set in most shels) or $(pwd) (round parentheses, executing the command-line tool and fetching it's output) instead of $(PWD) (tries to call a non-existing command-line tool).
I believe, the lines linked below in the docker utility files should say
${PWD}
(curly braces, using the environment variable that is automatically set in most shels) or$(pwd)
(round parentheses, executing the command-line tool and fetching it's output) instead of$(PWD)
(tries to call a non-existing command-line tool).See these highlights:
https://github.com/minerllabs/competition_submission_starter_template/blob/53ad35a8cff9ee217d5ab58313800dfd12142f8c/utility/docker_evaluation_locally.sh#L29-L31
https://github.com/minerllabs/competition_submission_starter_template/blob/53ad35a8cff9ee217d5ab58313800dfd12142f8c/utility/docker_train_locally.sh#L28-L30
The text was updated successfully, but these errors were encountered: