33 lines
586 B
Markdown
33 lines
586 B
Markdown
# GAN Schema
|
|
|
|
Notebook structure definition for the Google -> Yandex GAN model.
|
|
|
|
---
|
|
|
|
## Format
|
|
|
|
```text
|
|
# === IMPORTS ===
|
|
<all imports>
|
|
|
|
# markdown
|
|
"""Description"""
|
|
|
|
# code: ./src/file.py
|
|
|
|
# # shell:
|
|
<shell commands>
|
|
```
|
|
|
|
## Directives
|
|
|
|
| Directive | Description |
|
|
|----------------|------------------------------------|
|
|
| `# code:` | Include file from `src/` |
|
|
| `# markdown` | Add markdown cell |
|
|
| `# # shell:` | Add notebook shell command cell |
|
|
|
|
---
|
|
|
|
`build.py` generates `notebook.gen.ipynb` from `_schema.py`.
|