Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions hw1/.submit
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# path globs to include in the submission zip
# if a directory is matched, all files under it are included

src/**/*.py
exp/flow
exp/mse
pyproject.toml
uv.lock
README.md
12 changes: 11 additions & 1 deletion hw1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,14 @@ Then, you can download the logs and checkpoints to your local machine using a co

```bash
uv run modal volume get hw1-imitation-volume exp/<experiment_name>
```
```

## Submission

From within the `hw1/` directory, run the following command.

```bash
uv run ../submit.py
```

This will generate a `submit.zip` archive that you can upload to Gradescope.
8 changes: 8 additions & 0 deletions hw2/.submit
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# path globs to include in the submission zip
# if a directory is matched, all files under it are included

src/**/*.py
exp
pyproject.toml
uv.lock
README.md
10 changes: 10 additions & 0 deletions hw2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,13 @@ However, you may still use Modal if you wish.
* If you see an error about `swig` when installing `box2d-py`, you may need to install `swig` and `cmake` on your machine.
If you are using a Mac and have Homebrew installed, you can run `brew install swig cmake`.
On Modal, it should already be installed.

## Submission

From within the `hw2/` directory, run the following command.

```bash
uv run ../submit.py
```

This will generate a `submit.zip` archive that you can upload to Gradescope.
Loading