Skip to content
Merged
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
1 change: 1 addition & 0 deletions docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ For users who wish to develop using this codebase, the following setup is requir

```bash
python3 -m venv .venv
echo "export PYTHONPATH=\${PYTHONPATH}:\$(dirname \${VIRTUAL_ENV})" >> .venv/bin/activate
source .venv/bin/activate
pip install -r requirements-dev.txt # Or requirements-dev-ipu.txt for the ipu
```
Expand Down
2 changes: 2 additions & 0 deletions unit_scaling/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
GELU,
MHSA,
MLP,
Conv1d,
CrossEntropyLoss,
DepthModuleList,
DepthSequential,
Expand All @@ -31,6 +32,7 @@

__all__ = [
# Modules
"Conv1d",
"CrossEntropyLoss",
"DepthModuleList",
"DepthSequential",
Expand Down
Loading