Skip to content

Commit

Permalink
adds
Browse files Browse the repository at this point in the history
  • Loading branch information
anas-rz committed Jan 31, 2024
1 parent 415a726 commit e49bebb
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
__pycache__
.pytest_cache
17 changes: 16 additions & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,9 @@


<h1 id="welcome-to-k3-node">Welcome to K3 Node</h1>
<div style="text-align: center;">
<img src="images/logo.svg" alt="alt text" width="200"/>
</div>


<div class="doc doc-object doc-module">
Expand All @@ -355,7 +358,19 @@ <h1 id="welcome-to-k3-node">Welcome to K3 Node</h1>

<p><code>k3_node</code> is a library for building multibackend graph neural networks.
Built upon Keras 3.0 the models can be trained using TensorFlow, PyTorch,
or JAX</p>
or JAX.</p>
<p>To install the package, run:</p>
<pre><code class="language-bash">git clone https://github.com/anas-rz/k3-node.git # bash
</code></pre>
<pre><code class="language-python"># in your code
import sys
sys.path.append('k3-node')

import os
os.environ['KERAS_BACKEND'] = 'tensorflow' # or 'torch' or 'jax'

from k3_node import ...
</code></pre>



Expand Down
2 changes: 1 addition & 1 deletion docs/search/search_index.json

Large diffs are not rendered by default.

Binary file modified docs/sitemap.xml.gz
Binary file not shown.

0 comments on commit e49bebb

Please sign in to comment.