Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 10 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,8 @@ To use KotlinDL in your project, add the following dependency to your `build.gra
The latest KotlinDL version is 0.2.0.
The latest stable KotlinDL version is 0.2.0.

For more details, as well as for `pom.xml` and `build.gradle.kts` examples, please refer to the [Quick Start Guide](docs/quick_start_guide.md).
For more details, as well as for `pom.xml` and `build.gradle.kts` examples, please refer to the
[Quick Start Guide](https://nbviewer.jupyter.org/github/avan1235/KotlinDL/blob/notebooks/docs/quick_start_guide.ipynb).

## Working with KotlinDL in Jupyter Notebook
You can work with KotlinDL interactively in Jupyter Notebook with the Kotlin kernel. To do so, add the following dependency in your notebook:
Expand All @@ -161,18 +162,19 @@ You can work with KotlinDL interactively in Jupyter Notebook with the Kotlin ker
@file:DependsOn("org.jetbrains.kotlinx:kotlin-deeplearning-api:[KOTLIN-DL-VERSION]")
```

For more details on installing Jupyter Notebook and adding the Kotlin kernel, check out the [Quick Start Guide](docs/quick_start_guide.md).
For more details on installing Jupyter Notebook and adding the Kotlin kernel, check out the
[Quick Start Guide](https://nbviewer.jupyter.org/github/avan1235/KotlinDL/blob/notebooks/docs/quick_start_guide.ipynb).

## Examples and tutorials
You do not need to have any prior deep learning experience to start using KotlinDL.
We are working on including extensive documentation to help you get started.
At this point, please feel free to check out the following tutorials we have prepared:
- [Quick Start Guide](docs/quick_start_guide.md)
- [Creating your first neural network](docs/create_your_first_nn.md)
- [Training a model](docs/training_a_model.md)
- [Running inference with a trained model](docs/loading_trained_model_for_inference.md)
- [Importing a Keras model](docs/importing_keras_model.md)
- [Transfer learning](docs/transfer_learning.md)
- [Quick Start Guide](https://nbviewer.jupyter.org/github/avan1235/KotlinDL/blob/notebooks/docs/quick_start_guide.ipynb)
- [Creating your first neural network](https://nbviewer.jupyter.org/github/avan1235/KotlinDL/blob/notebooks/docs/create_your_first_nn.ipynb)
- [Training a model](https://nbviewer.jupyter.org/github/avan1235/KotlinDL/blob/notebooks/docs/training_a_model.ipynb)
- [Running inference with a trained model](https://nbviewer.jupyter.org/github/avan1235/KotlinDL/blob/notebooks/docs/loading_trained_model_for_inference.ipynb)
- [Importing a Keras model](https://nbviewer.jupyter.org/github/avan1235/KotlinDL/blob/notebooks/docs/importing_keras_model.ipynb)
- [Transfer learning](https://nbviewer.jupyter.org/github/avan1235/KotlinDL/blob/notebooks/docs/transfer_learning.ipynb)

For more inspiration, take a look at the [code examples](examples) in this repo.

Expand Down
3 changes: 3 additions & 0 deletions binder/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
This folder contains configuration files for Binder.
It makes it possible to build the repository on [mybinder.org](mybinder.org) and
view interactive KotlinDL demo notebooks on-line.
1 change: 1 addition & 0 deletions binder/apt.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
openjdk-8-jdk
12 changes: 12 additions & 0 deletions binder/environment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: kotlin-jupyter-demo
dependencies:
- kotlin-jupyter-kernel>=0.10.0.40
- pip
- python=3.7
- pip:
- tensorflow==1.15.0
- keras==2.3.1
channels:
- jetbrains
- conda-forge
- defaults
3 changes: 3 additions & 0 deletions binder/start
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64
exec "$@"
186 changes: 0 additions & 186 deletions docs/CIFAR-10.ipynb

This file was deleted.

Loading