checkpoint
This commit is contained in:
parent
e815d3f9b2
commit
a69868e950
23 changed files with 1269 additions and 0 deletions
8
competition/run.sh
Executable file
8
competition/run.sh
Executable file
|
|
@ -0,0 +1,8 @@
|
|||
#!/usr/bin/env bash
|
||||
set -euo pipefail
|
||||
# Competition entrypoint. The sandbox runs `run.sh` from the submission root;
|
||||
# cd to our own directory so relative paths work regardless of the cwd.
|
||||
# `python` is the sandbox's CPython 3.12 with jax/numpy pre-installed; equinox
|
||||
# and its deps are installed by build.sh from wheelhouse/.
|
||||
cd "$(dirname "$0")"
|
||||
exec python -u competition.py model.eqx
|
||||
Loading…
Reference in a new issue