Skip to content

Commit b2184fb

Browse files
committed
deploy: 74f290f
1 parent 1941c49 commit b2184fb

File tree

5 files changed

+58
-38
lines changed

5 files changed

+58
-38
lines changed

README.html

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -446,22 +446,20 @@ <h2>Structure of source code<a class="headerlink" href="#structure-of-source-cod
446446
<li><p><a class="reference external" href="https://github.com/pykale/mmai-tutorials/tree/main/tutorials"><code class="docutils literal notranslate"><span class="pre">tutorials/</span></code></a>: Contains tutorial notebooks and related materials.</p></li>
447447
<li><p><a class="reference external" href="https://github.com/pykale/mmai-tutorials/blob/main/requirements.txt"><code class="docutils literal notranslate"><span class="pre">requirements.txt</span></code></a>: Lists dependencies required for the project.</p></li>
448448
</ul>
449-
<p>The structure of each tutorial is as follows:</p>
449+
<p>Each tutorial is organized in a standardized structure as follows:</p>
450450
<div class="highlight-text notranslate"><div class="highlight"><pre><span></span> ├───tutorial.ipynb
451451
├───config.py
452452
├───configs
453453
│ ├───base.yml
454454
│ ├───**.yml
455455
├───model.py
456-
├───models
457-
│ ├───**.pt
458-
├───data
459-
│ ├───**.csv
460-
│ ├───**.**
461456
├───images
462457
│ ├───**.png
463458
│ ├───**.jpg
464-
├───**.py
459+
├───helpers
460+
│ ├───**.py
461+
├───extend-reading
462+
│ ├───**.md
465463
</pre></div>
466464
</div>
467465
</section>
@@ -489,10 +487,16 @@ <h2>How to Contribute<a class="headerlink" href="#how-to-contribute" title="Link
489487
<p>Please ensure your contributions adhere to the repository’s coding standards and include appropriate documentation.</p>
490488
<section id="building-the-and-preview-the-book">
491489
<h3>Building the and preview the book<a class="headerlink" href="#building-the-and-preview-the-book" title="Link to this heading">#</a></h3>
492-
<p>To build the book in development, assuming that the working directory is the project’s folder, please call:</p>
490+
<p>To build the book locally, you will need to have Jupyter Book and Sphinx Exercise packages installed. If you haven’t installed them yet, you can do so using pip:</p>
491+
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>pip<span class="w"> </span>install<span class="w"> </span>jupyter-book<span class="o">==</span><span class="m">1</span>.0.4.post1
492+
pip<span class="w"> </span>install<span class="w"> </span>sphinx-exercise<span class="o">==</span><span class="m">1</span>.0.1
493+
</pre></div>
494+
</div>
495+
<p>To build the book in development, please ensure you are in the root directory of the repository. You can then run the following command:</p>
493496
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>jupyter-book<span class="w"> </span>build<span class="w"> </span>.
494497
</pre></div>
495498
</div>
499+
<p>This will generate the HTML files in the <code class="docutils literal notranslate"><span class="pre">_build/html</span></code> directory. The home page of the book will be available at <code class="docutils literal notranslate"><span class="pre">_build/html/index.html</span></code>, from which you can navigate through the book.</p>
496500
</section>
497501
</section>
498502
<section id="pre-commit-hooks">

_sources/README.md

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This repository contains materials and resources for building the [Jupyter book]
1010
- [`tutorials/`](https://github.com/pykale/mmai-tutorials/tree/main/tutorials): Contains tutorial notebooks and related materials.
1111
- [`requirements.txt`](https://github.com/pykale/mmai-tutorials/blob/main/requirements.txt): Lists dependencies required for the project.
1212

13-
The structure of each tutorial is as follows:
13+
Each tutorial is organized in a standardized structure as follows:
1414

1515
```text
1616
├───tutorial.ipynb
@@ -19,15 +19,13 @@ The structure of each tutorial is as follows:
1919
│ ├───base.yml
2020
│ ├───**.yml
2121
├───model.py
22-
├───models
23-
│ ├───**.pt
24-
├───data
25-
│ ├───**.csv
26-
│ ├───**.**
2722
├───images
2823
│ ├───**.png
2924
│ ├───**.jpg
30-
├───**.py
25+
├───helpers
26+
│ ├───**.py
27+
├───extend-reading
28+
│ ├───**.md
3129
```
3230

3331
## How to Contribute
@@ -57,12 +55,21 @@ Please ensure your contributions adhere to the repository's coding standards and
5755

5856
### Building the and preview the book
5957

60-
To build the book in development, assuming that the working directory is the project's folder, please call:
58+
To build the book locally, you will need to have Jupyter Book and Sphinx Exercise packages installed. If you haven't installed them yet, you can do so using pip:
59+
60+
```bash
61+
pip install jupyter-book==1.0.4.post1
62+
pip install sphinx-exercise==1.0.1
63+
```
64+
65+
To build the book in development, please ensure you are in the root directory of the repository. You can then run the following command:
6166

6267
```bash
6368
jupyter-book build .
6469
```
6570

71+
This will generate the HTML files in the `_build/html` directory. The home page of the book will be available at `_build/html/index.html`, from which you can navigate through the book.
72+
6673
## Pre-commit Hooks
6774

6875
This repository uses pre-commit hooks to ensure code quality and consistency. To set up pre-commit hooks locally, follow these steps:

_sources/overview.md

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,6 @@
22

33
This [Jupyter Book](https://jupyterbook.org) presents tutorials on multimodal AI applications using the [`PyKale`](https://github.com/pykale/pykale) library.
44

5-
[//]: # (:::{note})
6-
7-
[//]: # (These resources are currently being developed.)
8-
9-
[//]: # (:::)
10-
115
The book includes:
126
- Workshop overview: Learn what the workshop is about and see the schedule.
137
- Tutorials: Follow hands-on notebooks using multimodal data.
@@ -59,12 +53,21 @@ Please ensure your contributions adhere to the repository's coding standards and
5953

6054
### Building the Book Locally
6155

62-
To build the book in development, assuming that the working directory is the project's folder, please call:
56+
To build the book locally, you will need to have Jupyter Book and Sphinx Exercise packages installed. If you haven't installed them yet, you can do so using pip:
57+
58+
```bash
59+
pip install jupyter-book==1.0.4.post1
60+
pip install sphinx-exercise==1.0.1
61+
```
62+
63+
To build the book in development, please ensure you are in the root directory of the repository. You can then run the following command:
6364

6465
```bash
6566
jupyter-book build .
6667
```
6768

69+
This will generate the HTML files in the `_build/html` directory. The home page of the book will be available at `_build/html/index.html`, from which you can navigate through the book.
70+
6871
### Pre-commit Hooks
6972

7073
This repository uses pre-commit hooks to ensure code quality and consistency. To set up pre-commit hooks locally, follow these steps:
@@ -89,18 +92,18 @@ This repository uses pre-commit hooks to ensure code quality and consistency. To
8992

9093
## Contributors
9194

92-
This workshop is made possible by contributions from:
95+
This workshop is made possible by contributions from (in alphabetical order of surnames):
9396

94-
- **[Shuo Zhou](https://github.com/shuo-zhou)**
97+
- **[Peter Charlton](https://github.com/peterhcharlton)**
98+
- **[Kelly Ding](https://github.com/kellydingzx)**
99+
- **[Wenrui Fan](https://github.com/wenruifan)**
95100
- **[Xianyuan Liu](https://github.com/xianyuanliu)**
101+
- **[Haiping Lu](https://github.com/haipinglu)**
96102
- **[L. M. Riza Rizky](https://github.com/zaRizk7)**
97103
- **[Mohammod N. I. Suvon](https://github.com/Mdnaimulislam)**
98-
- **[Kelly Ding](https://github.com/kellydingzx)**
99-
- **[Peter Charlton](https://github.com/peterhcharlton)**
100-
- **[Wenrui Fan](https://github.com/orgs/Shef-AIRE/people/wenruifan)**
101104
- **[Sina Tabakhi](https://github.com/SinaTabakhi)**
102105
- **[Jiayang Zhang](https://github.com/jiayang-zhang)**
103-
- **[Haiping Lu](https://github.com/haipinglu)**
106+
- **[Shuo Zhou](https://github.com/shuo-zhou)**
104107

105108
<!-- ```{tableofcontents}
106109
``` -->

overview.html

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -502,10 +502,16 @@ <h3>How to Contribute via GitHub<a class="headerlink" href="#how-to-contribute-v
502502
</section>
503503
<section id="building-the-book-locally">
504504
<h3>Building the Book Locally<a class="headerlink" href="#building-the-book-locally" title="Link to this heading">#</a></h3>
505-
<p>To build the book in development, assuming that the working directory is the project’s folder, please call:</p>
505+
<p>To build the book locally, you will need to have Jupyter Book and Sphinx Exercise packages installed. If you haven’t installed them yet, you can do so using pip:</p>
506+
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>pip<span class="w"> </span>install<span class="w"> </span>jupyter-book<span class="o">==</span><span class="m">1</span>.0.4.post1
507+
pip<span class="w"> </span>install<span class="w"> </span>sphinx-exercise<span class="o">==</span><span class="m">1</span>.0.1
508+
</pre></div>
509+
</div>
510+
<p>To build the book in development, please ensure you are in the root directory of the repository. You can then run the following command:</p>
506511
<div class="highlight-bash notranslate"><div class="highlight"><pre><span></span>jupyter-book<span class="w"> </span>build<span class="w"> </span>.
507512
</pre></div>
508513
</div>
514+
<p>This will generate the HTML files in the <code class="docutils literal notranslate"><span class="pre">_build/html</span></code> directory. The home page of the book will be available at <code class="docutils literal notranslate"><span class="pre">_build/html/index.html</span></code>, from which you can navigate through the book.</p>
509515
</section>
510516
<section id="pre-commit-hooks">
511517
<h3>Pre-commit Hooks<a class="headerlink" href="#pre-commit-hooks" title="Link to this heading">#</a></h3>
@@ -531,27 +537,27 @@ <h3>Pre-commit Hooks<a class="headerlink" href="#pre-commit-hooks" title="Link t
531537
</section>
532538
<section id="contributors">
533539
<h2>Contributors<a class="headerlink" href="#contributors" title="Link to this heading">#</a></h2>
534-
<p>This workshop is made possible by contributions from:</p>
540+
<p>This workshop is made possible by contributions from (in alphabetical order of surnames):</p>
535541
<ul class="simple">
536-
<li><p><strong><a class="reference external" href="https://github.com/shuo-zhou">Shuo Zhou</a></strong></p></li>
542+
<li><p><strong><a class="reference external" href="https://github.com/peterhcharlton">Peter Charlton</a></strong></p></li>
543+
<li><p><strong><a class="reference external" href="https://github.com/kellydingzx">Kelly Ding</a></strong></p></li>
544+
<li><p><strong><a class="reference external" href="https://github.com/wenruifan">Wenrui Fan</a></strong></p></li>
537545
<li><p><strong><a class="reference external" href="https://github.com/xianyuanliu">Xianyuan Liu</a></strong></p></li>
546+
<li><p><strong><a class="reference external" href="https://github.com/haipinglu">Haiping Lu</a></strong></p></li>
538547
<li><p><strong><a class="reference external" href="https://github.com/zaRizk7">L. M. Riza Rizky</a></strong></p></li>
539548
<li><p><strong><a class="reference external" href="https://github.com/Mdnaimulislam">Mohammod N. I. Suvon</a></strong></p></li>
540-
<li><p><strong><a class="reference external" href="https://github.com/kellydingzx">Kelly Ding</a></strong></p></li>
541-
<li><p><strong><a class="reference external" href="https://github.com/peterhcharlton">Peter Charlton</a></strong></p></li>
542-
<li><p><strong><a class="reference external" href="https://github.com/orgs/Shef-AIRE/people/wenruifan">Wenrui Fan</a></strong></p></li>
543549
<li><p><strong><a class="reference external" href="https://github.com/SinaTabakhi">Sina Tabakhi</a></strong></p></li>
544550
<li><p><strong><a class="reference external" href="https://github.com/jiayang-zhang">Jiayang Zhang</a></strong></p></li>
545-
<li><p><strong><a class="reference external" href="https://github.com/haipinglu">Haiping Lu</a></strong></p></li>
551+
<li><p><strong><a class="reference external" href="https://github.com/shuo-zhou">Shuo Zhou</a></strong></p></li>
546552
</ul>
547553
<!-- ```{tableofcontents}
548554
``` -->
549555
</section>
550-
</section>
551556
<div class="toctree-wrapper compound">
552557
</div>
553558
<div class="toctree-wrapper compound">
554559
</div>
560+
</section>
555561

556562
<script type="text/x-thebe-config">
557563
{

searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)