Skip to content

Commit

Permalink
fixed merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
vedpatwardhan committed Oct 25, 2023
2 parents 7c1601a + c068c12 commit 8e64bf7
Show file tree
Hide file tree
Showing 41 changed files with 2,512 additions and 601 deletions.
32 changes: 0 additions & 32 deletions .github/workflows/docs.yml

This file was deleted.

26 changes: 26 additions & 0 deletions .github/workflows/update-submodules.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Update submodules
on:
push:
branches:
- main
workflow_dispatch:

jobs:
update-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️ ivy
uses: actions/checkout@v4
with:
repository: unifyai/ivy
token: ${{ secrets.IVY_BRANCH_TOKEN }}
submodules: recursive

- name: Update submodules
run: |
git config --global user.email "[email protected]"
git config --global user.name "ivy-branch"
git submodule update --remote docs/demos
git add .
git commit -m "Update demos 🤖"
git push origin main
6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/.quarto/
/docs/
.vscode
.idea/*
**/.ipynb_checkpoints/*
__pycache__/
**pem**
**fn_path_cache**
*.DS_Store
*.DS_Store
build/
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This repo holds all the jupyter notebook demos for the examples tab of Ivy's web

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 compiler 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 compiler / transpiler code for now, you can start to work on the notebook style/story!
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!

Expand All @@ -23,4 +23,11 @@ To ensure that similar formats are used across the demo notebooks, a template is
- 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. Lastly, you have to include the new notebook path in the corresponding position in the listings of the files `_quarto.yml` and `index.qmd`.
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.
68 changes: 0 additions & 68 deletions _quarto.yml

This file was deleted.

2 changes: 1 addition & 1 deletion assets/01_template.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"outputs": [],
"source": [
"!pip install -q ivy\n",
"!git clone https://github.com/unifyai/models.git\n",
"!git clone https://github.com/unifyai/models.git --depth 1\n",
"\n",
"# Installing models package from cloned repository! 😄\n",
"!cd models/ && pip install ."
Expand Down
211 changes: 0 additions & 211 deletions assets/css/custom.scss

This file was deleted.

Loading

0 comments on commit 8e64bf7

Please sign in to comment.