https://github.com/ivy-llc/demos
Demos and Tutorials with Ivy
https://github.com/ivy-llc/demos
Last synced: about 1 month ago
JSON representation
Demos and Tutorials with Ivy
- Host: GitHub
- URL: https://github.com/ivy-llc/demos
- Owner: ivy-llc
- Created: 2022-12-21T07:38:56.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-25T19:06:42.000Z (12 months ago)
- Last Synced: 2025-06-15T18:01:39.905Z (4 months ago)
- Language: Jupyter Notebook
- Homepage: https://ivy.dev/docs/demos/
- Size: 36.1 MB
- Stars: 18
- Watchers: 10
- Forks: 60
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Demos
This repo holds all the jupyter notebook demos for the examples tab of Ivy's web. Relevant links:
- [List of open tasks avilable](https://github.com/ivy-llc/demos/issues/2)
- [Open discussion to suggest new examples](https://github.com/ivy-llc/demos/issues/1)All of the examples should be as comprehensible as possible, using easy-to-follow and attractive visuals (graphs, nicely formatted results, etc.), and follow the general tone of Ivy (feel free to include emojis and don't keep things super serious!).
Given that an internal release of the graph tracer is around the corner anybody should be able to start working on these examples shortly, so don't worry about not having access to the graph tracer / transpiler code for now, you can start to work on the notebook style/story!
If anyone has any question feel free to ping me (Guillermo) or use the Community/UX team discord channel!
## Creating a Notebook for Demo
To ensure that similar formats are used across the demo notebooks, a template is created to help you get started! It is located in [assets/01_template.ipynb](assets/01_template.ipynb)! Please make a copy of it to start creating a demo!
1. Firstly, please update the file name to be match the topic of your demo. Then, place the notebook in its relevant folder.
2. Next, please edit the title and description accordingly to ensure that they are rendered correctly in the webpage.
3. All contents should start behind the existing template cells, where:
- The h2 (##) tags are used for section titles.
- The h3 (###) tags are used for subsection titles.
- All steps and explanation should go with the default, which is text or paragraph (p) without any tags.4. You have to include the new notebook path in the corresponding `toctree` which
is located in [index.rst](docs/index.rst). This is to ensure that the notebook is rendered in the contents in the left of the webpage.5. You may need to add a `grid-item-card` in the [index.rst](docs/index.rst) file to link
the notebook to the webpage. Please refer to the existing examples for the format. You may
also look into the [`grid-item-card`](https://sphinx-design.readthedocs.io/en/latest/grids.html)
documentation, or the [`card`](https://sphinx-design.readthedocs.io/en/latest/cards.html)
documentation on `sphinx-design` website.