froog 0.5.0__tar.gz → 0.5.1__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.5.0 → froog-0.5.1}/PKG-INFO +3 -3
- {froog-0.5.0 → froog-0.5.1}/README.md +2 -2
- {froog-0.5.0 → froog-0.5.1}/froog.egg-info/PKG-INFO +3 -3
- {froog-0.5.0 → froog-0.5.1}/setup.py +1 -1
- {froog-0.5.0 → froog-0.5.1}/froog/__init__.py +0 -0
- {froog-0.5.0 → froog-0.5.1}/froog/gradient.py +0 -0
- {froog-0.5.0 → froog-0.5.1}/froog/ops.py +0 -0
- {froog-0.5.0 → froog-0.5.1}/froog/optim.py +0 -0
- {froog-0.5.0 → froog-0.5.1}/froog/tensor.py +0 -0
- {froog-0.5.0 → froog-0.5.1}/froog/utils.py +0 -0
- {froog-0.5.0 → froog-0.5.1}/froog.egg-info/SOURCES.txt +0 -0
- {froog-0.5.0 → froog-0.5.1}/froog.egg-info/dependency_links.txt +0 -0
- {froog-0.5.0 → froog-0.5.1}/froog.egg-info/requires.txt +0 -0
- {froog-0.5.0 → froog-0.5.1}/froog.egg-info/top_level.txt +0 -0
- {froog-0.5.0 → froog-0.5.1}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: froog
|
3
|
-
Version: 0.5.
|
3
|
+
Version: 0.5.1
|
4
4
|
Summary: tensor library with opencl and metal support
|
5
5
|
Author: Kevin Buhler
|
6
6
|
License: MIT
|
@@ -22,7 +22,7 @@ Description-Content-Type: text/markdown
|
|
22
22
|
<br/>
|
23
23
|
</div>
|
24
24
|
|
25
|
-
```froog``` is an easy-to-read tensor library (<a href="https://www.pepy.tech/projects/froog">25k pip installs!</a>) with
|
25
|
+
```froog``` is an easy-to-read tensor library (<a href="https://www.pepy.tech/projects/froog">25k pip installs!</a>) with support for GPU acceleration. Inspired by pytorch, tinygrad, and micrograd.
|
26
26
|
|
27
27
|
# Installation
|
28
28
|
```bash
|
@@ -104,7 +104,7 @@ set_device("METAL") # or "OPENCL"
|
|
104
104
|
|
105
105
|
# EfficientNet in froog!
|
106
106
|
|
107
|
-
<img src="assets/efficientnet_pug.png" alt="pug" height="300">
|
107
|
+
<img src="https://github.com/kevbuh/froog/blob/main/assets/efficientnet_pug.png" alt="pug" height="300">
|
108
108
|
|
109
109
|
We have an implementation of [EfficientNet v2](https://arxiv.org/abs/2104.00298) built entirely in ```froog``` using the official PyTorch weights! Run inference with:
|
110
110
|
|
@@ -11,7 +11,7 @@
|
|
11
11
|
<br/>
|
12
12
|
</div>
|
13
13
|
|
14
|
-
```froog``` is an easy-to-read tensor library (<a href="https://www.pepy.tech/projects/froog">25k pip installs!</a>) with
|
14
|
+
```froog``` is an easy-to-read tensor library (<a href="https://www.pepy.tech/projects/froog">25k pip installs!</a>) with support for GPU acceleration. Inspired by pytorch, tinygrad, and micrograd.
|
15
15
|
|
16
16
|
# Installation
|
17
17
|
```bash
|
@@ -93,7 +93,7 @@ set_device("METAL") # or "OPENCL"
|
|
93
93
|
|
94
94
|
# EfficientNet in froog!
|
95
95
|
|
96
|
-
<img src="assets/efficientnet_pug.png" alt="pug" height="300">
|
96
|
+
<img src="https://github.com/kevbuh/froog/blob/main/assets/efficientnet_pug.png" alt="pug" height="300">
|
97
97
|
|
98
98
|
We have an implementation of [EfficientNet v2](https://arxiv.org/abs/2104.00298) built entirely in ```froog``` using the official PyTorch weights! Run inference with:
|
99
99
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: froog
|
3
|
-
Version: 0.5.
|
3
|
+
Version: 0.5.1
|
4
4
|
Summary: tensor library with opencl and metal support
|
5
5
|
Author: Kevin Buhler
|
6
6
|
License: MIT
|
@@ -22,7 +22,7 @@ Description-Content-Type: text/markdown
|
|
22
22
|
<br/>
|
23
23
|
</div>
|
24
24
|
|
25
|
-
```froog``` is an easy-to-read tensor library (<a href="https://www.pepy.tech/projects/froog">25k pip installs!</a>) with
|
25
|
+
```froog``` is an easy-to-read tensor library (<a href="https://www.pepy.tech/projects/froog">25k pip installs!</a>) with support for GPU acceleration. Inspired by pytorch, tinygrad, and micrograd.
|
26
26
|
|
27
27
|
# Installation
|
28
28
|
```bash
|
@@ -104,7 +104,7 @@ set_device("METAL") # or "OPENCL"
|
|
104
104
|
|
105
105
|
# EfficientNet in froog!
|
106
106
|
|
107
|
-
<img src="assets/efficientnet_pug.png" alt="pug" height="300">
|
107
|
+
<img src="https://github.com/kevbuh/froog/blob/main/assets/efficientnet_pug.png" alt="pug" height="300">
|
108
108
|
|
109
109
|
We have an implementation of [EfficientNet v2](https://arxiv.org/abs/2104.00298) built entirely in ```froog``` using the official PyTorch weights! Run inference with:
|
110
110
|
|
@@ -9,7 +9,7 @@ with open(os.path.join(directory, 'README.md'), encoding='utf-8') as f:
|
|
9
9
|
long_description = f.read()
|
10
10
|
|
11
11
|
setup(name='froog',
|
12
|
-
version='0.5.
|
12
|
+
version='0.5.1',
|
13
13
|
description='tensor library with opencl and metal support',
|
14
14
|
author='Kevin Buhler',
|
15
15
|
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
|