rb-deeplearning-lib 0.1.5__tar.gz → 0.1.6__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rb-deeplearning-lib
3
- Version: 0.1.5
3
+ Version: 0.1.6
4
4
  Summary: This is a machine learning--more specifically deep learning--library from my independent study on deep learning. This library is both a result of my learning and a tool for AI development.
5
5
  License-Expression: MIT
6
6
  Project-URL: Homepage, https://github.com/rylan-berry/DeepLearningIndependentStudy/tree/main/deeplearning_package
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "rb-deeplearning-lib"
3
- version = "0.1.5"
3
+ version = "0.1.6"
4
4
  description = "This is a machine learning--more specifically deep learning--library from my independent study on deep learning. This library is both a result of my learning and a tool for AI development."
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.8"
@@ -1,6 +1,7 @@
1
1
  from .autogradient import Values
2
2
  from .sequence import Sequence
3
3
  from .optimizer import Optimizer
4
+ import numpy as np
4
5
 
5
6
  class Layer:
6
7
  def __init__(self, input,out,activ="_",rangeW=(-1,1),rangeB=(-1,1)):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rb-deeplearning-lib
3
- Version: 0.1.5
3
+ Version: 0.1.6
4
4
  Summary: This is a machine learning--more specifically deep learning--library from my independent study on deep learning. This library is both a result of my learning and a tool for AI development.
5
5
  License-Expression: MIT
6
6
  Project-URL: Homepage, https://github.com/rylan-berry/DeepLearningIndependentStudy/tree/main/deeplearning_package