rb-deeplearning-lib 0.1.1__py3-none-any.whl → 0.1.3__py3-none-any.whl

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,4 +1,4 @@
1
- import autogradient
2
- import sequence
3
- import neural_net
4
- import optimizer
1
+ from . import autogradient
2
+ from . import sequence
3
+ from . import neural_net
4
+ from . import optimizer
@@ -1,6 +1,3 @@
1
- import optimizer
2
- import sequence
3
-
4
1
  class Layer:
5
2
  def __init__(self, input,out,activ="_",rangeW=(-1,1),rangeB=(-1,1)):
6
3
  self.weights = Values((rangeW[0]-rangeW[1])*np.random.rand(input,out)+rangeW[1])
@@ -1,6 +1,3 @@
1
- import numpy as np
2
- import autogradient
3
-
4
1
  class Optimizer:
5
2
  def __init__(self):
6
3
  pass
@@ -97,4 +94,4 @@ class Optim_Adam(Optimizer):
97
94
  r_hat = self.r[p]/(1-beta2**t)
98
95
 
99
96
  p.vals = p.vals - l_rate*s_hat/(self.gamma + r_hat**0.5)
100
- p.grad = np.zeros_like(p.grad)
97
+ p.grad = np.zeros_like(p.grad)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rb-deeplearning-lib
3
- Version: 0.1.1
3
+ Version: 0.1.3
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
@@ -0,0 +1,10 @@
1
+ rb_deeplearning_lib/__init__.py,sha256=S4RMJZedI1Jisnpi29cj2p-Ez2ffedxOOSSYCEQfA-Q,99
2
+ rb_deeplearning_lib/autogradient.py,sha256=woXGKi1EZ1QobvRbPMtj4WQqdkOCr7Xk_KeG8WE1d6k,9388
3
+ rb_deeplearning_lib/neural_net.py,sha256=PzFZcHgwhl1VSor0TpeZjaRMLp0OirpGa0Lan4IXCGU,6444
4
+ rb_deeplearning_lib/optimizer.py,sha256=zN-tzP2_qtm0wV830D7FaHjYQXrgEQpJP4V6ci8TY9A,2651
5
+ rb_deeplearning_lib/sequence.py,sha256=As8FiHVrcN2w0xXV8Vt_eHhNh1vDWDM3oIfrZMUkZ5g,417
6
+ rb_deeplearning_lib-0.1.3.dist-info/licenses/LICENSE,sha256=RGN7cN89q7JPnZj-z1KSZT9M3zcJPwjzb-gEOt6SCCA,1069
7
+ rb_deeplearning_lib-0.1.3.dist-info/METADATA,sha256=gP5R9BvvAksF8M_vefcqOzj1l7WF2oIM3spZ56ZQ4-w,2286
8
+ rb_deeplearning_lib-0.1.3.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
9
+ rb_deeplearning_lib-0.1.3.dist-info/top_level.txt,sha256=oK1ClPmIXDzAbwPHl69BE88PFjpsYta_a5vNEa5WJoA,20
10
+ rb_deeplearning_lib-0.1.3.dist-info/RECORD,,
@@ -1,10 +0,0 @@
1
- rb_deeplearning_lib/__init__.py,sha256=AcFuV_PoQCmRt8Ag7BW0TXGCQuqBNHrw6iYwYmd3AaY,71
2
- rb_deeplearning_lib/autogradient.py,sha256=woXGKi1EZ1QobvRbPMtj4WQqdkOCr7Xk_KeG8WE1d6k,9388
3
- rb_deeplearning_lib/neural_net.py,sha256=nwC4bdEYSYRtylqe7p68SFlRJKc1htBB-sMJGiFl8fk,6478
4
- rb_deeplearning_lib/optimizer.py,sha256=OI2x7xrna4ksbaprNgIx25jogVM10OGfNYKpwetRc7o,2690
5
- rb_deeplearning_lib/sequence.py,sha256=As8FiHVrcN2w0xXV8Vt_eHhNh1vDWDM3oIfrZMUkZ5g,417
6
- rb_deeplearning_lib-0.1.1.dist-info/licenses/LICENSE,sha256=RGN7cN89q7JPnZj-z1KSZT9M3zcJPwjzb-gEOt6SCCA,1069
7
- rb_deeplearning_lib-0.1.1.dist-info/METADATA,sha256=BmS_hqF2-rcQgBE9iKrjGR0iDnjsi7quXNYrkstYCRM,2286
8
- rb_deeplearning_lib-0.1.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
9
- rb_deeplearning_lib-0.1.1.dist-info/top_level.txt,sha256=oK1ClPmIXDzAbwPHl69BE88PFjpsYta_a5vNEa5WJoA,20
10
- rb_deeplearning_lib-0.1.1.dist-info/RECORD,,