Adding a documentation book.

This commit is contained in:
Nicolas Patry
2023-07-26 18:06:31 +02:00
parent 1235aa2536
commit 834e1b197b
23 changed files with 121 additions and 0 deletions

View File

@ -0,0 +1 @@
# Introduction

View File

@ -0,0 +1,26 @@
# Summary
[Introduction](README.md)
# User Guide
- [Installation](guide/installation.md)
- [Hello World - MNIST](guide/hello_world.md)
- [PyTorch cheatsheet](guide/hello_world.md)
# Reference Guide
- [Running a model](inference/README.md)
- [Serialization](inference/serialization.md)
- [Using the hub](inference/hub.md)
- [Advanced Cuda usage](inference/cuda/README.md)
- [Writing a custom kernel](inference/cuda/writing.md)
- [Porting a custom kernel](inference/cuda/porting.md)
- [Error management](error_manage.md)
- [Creating apps](apps/README.md)
- [Creating a WASM app](apps/wasm.md)
- [Creating a REST api webserver](apps/rest.md)
- [Creating a desktop Tauri app](apps/dekstop.md)
- [Training](training/README.md)
- [MNIST](training/mnist.md)
- [Fine-tuning](training/finetuning.md)

View File

@ -0,0 +1 @@
# Creating apps

View File

@ -0,0 +1 @@
# Creating a desktop Tauri app

View File

@ -0,0 +1 @@
# Creating a REST api webserver

View File

@ -0,0 +1 @@
# Creating a WASM app

View File

@ -0,0 +1 @@
# Chapter 1

View File

@ -0,0 +1 @@
# Error management

View File

@ -0,0 +1 @@
# PyTorch cheatsheet

View File

@ -0,0 +1 @@
# Installation

View File

@ -0,0 +1 @@
# Running a model

View File

@ -0,0 +1 @@
# Advanced Cuda usage

View File

@ -0,0 +1 @@
# Porting a custom kernel

View File

@ -0,0 +1 @@
# Writing a custom kernel

View File

@ -0,0 +1 @@
# Using the hub

View File

@ -0,0 +1 @@
# Serialization

View File

@ -0,0 +1 @@
# Training

View File

@ -0,0 +1 @@
# Fine-tuning

View File

@ -0,0 +1 @@
# MNIST