-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from Mateusmsouza/dev
Dev
- Loading branch information
Showing
14 changed files
with
481 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
test: | ||
pytest | ||
|
||
coverage: | ||
coverage run -m pytest && coverage report --show-missing | ||
|
||
lint: | ||
black liltorch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,12 @@ | ||
Yes | ||
# LilTorch | ||
|
||
![Logo](documentation/docs/images/logo-torch.png) | ||
|
||
LilTorch is a lightweight library for Deep Learning, created entirely in Python with Numpy as its sole dependency. | ||
This library allows you to design and understand the internals of Neural Networks without the need for C/C++ imported code and binaries. | ||
Everything is as understandable as Python itself. | ||
|
||
[Documentation here](https://liltorchdocs.netlify.app/) | ||
|
||
**Note**: This library is intended for educational purposes only. It is not recommended for production use, and execution speed is not a primary focus. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Examples | ||
|
||
In this section, you'll find a couple of Jupyter notebooks showcasing the practical usage of Liltorch. | ||
These notebooks demonstrate how to effectively leverage the library's functionalities for various deep learning tasks (more to be added). | ||
|
||
## MNIST Digit Classification with 95% Accuracy | ||
|
||
This notebook exemplifies the library's capabilities by achieving 95% accuracy on the classic MNIST handwritten digit classification dataset. The notebook guides you through the process of: | ||
|
||
Loading the MNIST Dataset: Learn how to load the MNIST dataset using appropriate libraries within your environment. | ||
Building Your Neural Network: Discover how to construct a neural network architecture suitable for the MNIST task, taking advantage of the library's building blocks. | ||
Training the Network: Explore the training process, including defining the loss function and training parameters. | ||
Evaluating Performance: Witness the evaluation of the trained network's performance on the test set, demonstrating the achieved 95% accuracy. | ||
|
||
[Notebook on colab](https://colab.research.google.com/drive/1MLxcA6DC1xxrkY_Ya1zLv-1q7EP0S0Ws?usp=sharing) | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
# LilTorch | ||
<p align="center"> | ||
<img src="images/logo-torch.png" width="100" height="100" /> | ||
</p> | ||
[LilTorch](https://github.com/Mateusmsouza/liltorch) is a lightweight library for Deep Learning, created entirely in Python with Numpy as its sole dependency. This library allows you to design and understand the internals of Neural Networks without the need for C/C++ imported code and binaries. Everything is as understandable as Python itself. | ||
|
||
LilTorch is a lightweight library for Deep Learning, created entirely in Python with Numpy as its sole dependency. This library allows you to design and understand the internals of Neural Networks without the need for C/C++ imported code and binaries. Everything is as understandable as Python itself. | ||
|
||
**Note**: This library is intended for educational purposes only. It is not recommended for production use, and execution speed is not a primary focus. | ||
**Note**: This library is intended for educational purposes only. It is not recommended for production use, and execution speed is not a primary focus. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,7 @@ | ||
site_name: LilTorch | ||
site_name: LilTorch | ||
theme: | ||
name: mkdocs | ||
color_mode: auto | ||
user_color_mode_toggle: true | ||
analytics: | ||
g-tag: G-2K6L423DZH |
Oops, something went wrong.