froog 0.2.3__tar.gz → 0.2.4__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.
- {froog-0.2.3 → froog-0.2.4}/PKG-INFO +2 -2
- {froog-0.2.3 → froog-0.2.4}/README.md +1 -1
- {froog-0.2.3 → froog-0.2.4}/froog.egg-info/PKG-INFO +2 -2
- {froog-0.2.3 → froog-0.2.4}/setup.py +1 -1
- {froog-0.2.3 → froog-0.2.4}/LICENSE +0 -0
- {froog-0.2.3 → froog-0.2.4}/froog.egg-info/SOURCES.txt +0 -0
- {froog-0.2.3 → froog-0.2.4}/froog.egg-info/dependency_links.txt +0 -0
- {froog-0.2.3 → froog-0.2.4}/froog.egg-info/requires.txt +0 -0
- {froog-0.2.3 → froog-0.2.4}/froog.egg-info/top_level.txt +0 -0
- {froog-0.2.3 → froog-0.2.4}/ribbit/__init__.py +0 -0
- {froog-0.2.3 → froog-0.2.4}/ribbit/gradcheck.py +0 -0
- {froog-0.2.3 → froog-0.2.4}/ribbit/nn.py +0 -0
- {froog-0.2.3 → froog-0.2.4}/ribbit/ops.py +0 -0
- {froog-0.2.3 → froog-0.2.4}/ribbit/ops_gpu.py +0 -0
- {froog-0.2.3 → froog-0.2.4}/ribbit/optim.py +0 -0
- {froog-0.2.3 → froog-0.2.4}/ribbit/tensor.py +0 -0
- {froog-0.2.3 → froog-0.2.4}/ribbit/utils.py +0 -0
- {froog-0.2.3 → froog-0.2.4}/setup.cfg +0 -0
- {froog-0.2.3 → froog-0.2.4}/tests/test_conv_speed.py +0 -0
- {froog-0.2.3 → froog-0.2.4}/tests/test_models.py +0 -0
- {froog-0.2.3 → froog-0.2.4}/tests/test_ops.py +0 -0
- {froog-0.2.3 → froog-0.2.4}/tests/test_optim.py +0 -0
- {froog-0.2.3 → froog-0.2.4}/tests/test_tensor.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: froog
|
3
|
-
Version: 0.2.
|
3
|
+
Version: 0.2.4
|
4
4
|
Summary: a beautifully simplistic ml framework
|
5
5
|
Author: Kevin Buhler
|
6
6
|
License: MIT
|
@@ -12,7 +12,7 @@ License-File: LICENSE
|
|
12
12
|
|
13
13
|
# ribbit <img src="https://github.com/kevbuh/ribbit/actions/workflows/test.yml/badge.svg" alt="unit test badge" >
|
14
14
|
<div align="center" >
|
15
|
-
<img src="https://raw.githubusercontent.com/kevbuh/ribbit/main/assets/
|
15
|
+
<img src="https://raw.githubusercontent.com/kevbuh/ribbit/main/assets/froog.png" alt="froog the frog" height="200">
|
16
16
|
<br/>
|
17
17
|
ribbit: fast real-time optimization of gradients
|
18
18
|
<br/>
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# ribbit <img src="https://github.com/kevbuh/ribbit/actions/workflows/test.yml/badge.svg" alt="unit test badge" >
|
2
2
|
<div align="center" >
|
3
|
-
<img src="https://raw.githubusercontent.com/kevbuh/ribbit/main/assets/
|
3
|
+
<img src="https://raw.githubusercontent.com/kevbuh/ribbit/main/assets/froog.png" alt="froog the frog" height="200">
|
4
4
|
<br/>
|
5
5
|
ribbit: fast real-time optimization of gradients
|
6
6
|
<br/>
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: froog
|
3
|
-
Version: 0.2.
|
3
|
+
Version: 0.2.4
|
4
4
|
Summary: a beautifully simplistic ml framework
|
5
5
|
Author: Kevin Buhler
|
6
6
|
License: MIT
|
@@ -12,7 +12,7 @@ License-File: LICENSE
|
|
12
12
|
|
13
13
|
# ribbit <img src="https://github.com/kevbuh/ribbit/actions/workflows/test.yml/badge.svg" alt="unit test badge" >
|
14
14
|
<div align="center" >
|
15
|
-
<img src="https://raw.githubusercontent.com/kevbuh/ribbit/main/assets/
|
15
|
+
<img src="https://raw.githubusercontent.com/kevbuh/ribbit/main/assets/froog.png" alt="froog the frog" height="200">
|
16
16
|
<br/>
|
17
17
|
ribbit: fast real-time optimization of gradients
|
18
18
|
<br/>
|
@@ -10,7 +10,7 @@ with open(os.path.join(directory, 'README.md'), encoding='utf-8') as f:
|
|
10
10
|
long_description = f.read()
|
11
11
|
|
12
12
|
setup(name='froog',
|
13
|
-
version='0.2.
|
13
|
+
version='0.2.4',
|
14
14
|
description='a beautifully simplistic ml framework',
|
15
15
|
author='Kevin Buhler',
|
16
16
|
license='MIT',
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|