Metadata-Version: 2.1
Name: Torch-Yottaxx
Version: 0.1.2
Summary: a simple autograd library
Home-page: https://github.com/Yottaxx/YottaTorch
Author: Yotta
Author-email: xiaoz987@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: pytest

# Simple Torch
`implement by numpy`


## autograd
###  tensor
Realize the function of basic operations between tensors,also,recording dependencies between tensors and the grad of tensors.
### function
Realize the function of activation function
### parameter
Quickly create random tensors with requires_grad=True.
### module
Realize the function of recording parameters
###  optim
Achieve optimization of the model
## tests
Test for autograd function<br>

`Games to test performance`  
fizz_buzz<br>
simple_learned_function<br>
minimize_a_function<br>







