comfi-fast-grnn-tensorflow 0.0.1__tar.gz → 0.0.3__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.
- comfi_fast_grnn_tensorflow-0.0.3/MANIFEST.in +1 -0
- {comfi_fast_grnn_tensorflow-0.0.1 → comfi_fast_grnn_tensorflow-0.0.3}/PKG-INFO +8 -18
- {comfi_fast_grnn_tensorflow-0.0.1 → comfi_fast_grnn_tensorflow-0.0.3}/README.md +6 -16
- {comfi_fast_grnn_tensorflow-0.0.1 → comfi_fast_grnn_tensorflow-0.0.3}/pyproject.toml +3 -3
- comfi_fast_grnn_tensorflow-0.0.3/src/comfi_fast_grnn_tensorflow/__init__.py +1 -0
- {comfi_fast_grnn_tensorflow-0.0.1 → comfi_fast_grnn_tensorflow-0.0.3}/src/comfi_fast_grnn_tensorflow.egg-info/PKG-INFO +8 -18
- {comfi_fast_grnn_tensorflow-0.0.1 → comfi_fast_grnn_tensorflow-0.0.3}/src/comfi_fast_grnn_tensorflow.egg-info/SOURCES.txt +1 -0
- comfi_fast_grnn_tensorflow-0.0.1/src/comfi_fast_grnn_tensorflow/__init__.py +0 -0
- {comfi_fast_grnn_tensorflow-0.0.1 → comfi_fast_grnn_tensorflow-0.0.3}/setup.cfg +0 -0
- {comfi_fast_grnn_tensorflow-0.0.1 → comfi_fast_grnn_tensorflow-0.0.3}/src/comfi_fast_grnn_tensorflow/ComfiFastGRNN.py +0 -0
- {comfi_fast_grnn_tensorflow-0.0.1 → comfi_fast_grnn_tensorflow-0.0.3}/src/comfi_fast_grnn_tensorflow.egg-info/dependency_links.txt +0 -0
- {comfi_fast_grnn_tensorflow-0.0.1 → comfi_fast_grnn_tensorflow-0.0.3}/src/comfi_fast_grnn_tensorflow.egg-info/requires.txt +0 -0
- {comfi_fast_grnn_tensorflow-0.0.1 → comfi_fast_grnn_tensorflow-0.0.3}/src/comfi_fast_grnn_tensorflow.egg-info/top_level.txt +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
include README.md
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: comfi_fast_grnn_tensorflow
|
|
3
|
-
Version: 0.0.
|
|
4
|
-
Summary: A
|
|
3
|
+
Version: 0.0.3
|
|
4
|
+
Summary: A Tensorflow implementation of Comfi-FastGRNN
|
|
5
5
|
Author-email: Nicolas Arrieta Larraza <NIAL@bang-olufsen.dk>, Niels de Koeijer <NEMK@bang-olufsen.dk>
|
|
6
6
|
License: MIT
|
|
7
7
|
Project-URL: Homepage, https://github.com/narrietal/Fast-ULCNet
|
|
@@ -12,7 +12,7 @@ Requires-Dist: tensorflow-estimator>=2.14.0
|
|
|
12
12
|
Requires-Dist: libsegmenter==1.0.4
|
|
13
13
|
Requires-Dist: CRM_tensorflow==0.1.6
|
|
14
14
|
|
|
15
|
-
# fast-
|
|
15
|
+
# comfi-fast-grnn-tensorflow
|
|
16
16
|
Implements Comfi-FastGRNN in tensorflow.
|
|
17
17
|
|
|
18
18
|
## Usage
|
|
@@ -25,20 +25,10 @@ The simplest way to use the layer with default settings:
|
|
|
25
25
|
```python
|
|
26
26
|
import tensorflow as tf
|
|
27
27
|
from comfi_fast_grnn_tensorflow import ComfiFastGRNN
|
|
28
|
-
|
|
29
|
-
# Define a Sequential model
|
|
30
|
-
model = tf.keras.Sequential([
|
|
31
|
-
# Input shape: (Timesteps, Features)
|
|
32
|
-
tf.keras.layers.Input(shape=(100, 32)),
|
|
33
|
-
|
|
34
|
-
# Comfi-FastGRNN layer
|
|
35
|
-
ComfiFastGRNN(
|
|
36
|
-
units=64,
|
|
37
|
-
return_sequences=False
|
|
38
|
-
),
|
|
39
28
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
29
|
+
# Comfi-FastGRNN layer
|
|
30
|
+
comfi_fgrnn = ComfiFastGRNN(
|
|
31
|
+
units=64,
|
|
32
|
+
return_sequences=False
|
|
33
|
+
)
|
|
44
34
|
```
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# fast-
|
|
1
|
+
# comfi-fast-grnn-tensorflow
|
|
2
2
|
Implements Comfi-FastGRNN in tensorflow.
|
|
3
3
|
|
|
4
4
|
## Usage
|
|
@@ -11,20 +11,10 @@ The simplest way to use the layer with default settings:
|
|
|
11
11
|
```python
|
|
12
12
|
import tensorflow as tf
|
|
13
13
|
from comfi_fast_grnn_tensorflow import ComfiFastGRNN
|
|
14
|
-
|
|
15
|
-
# Define a Sequential model
|
|
16
|
-
model = tf.keras.Sequential([
|
|
17
|
-
# Input shape: (Timesteps, Features)
|
|
18
|
-
tf.keras.layers.Input(shape=(100, 32)),
|
|
19
|
-
|
|
20
|
-
# Comfi-FastGRNN layer
|
|
21
|
-
ComfiFastGRNN(
|
|
22
|
-
units=64,
|
|
23
|
-
return_sequences=False
|
|
24
|
-
),
|
|
25
14
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
15
|
+
# Comfi-FastGRNN layer
|
|
16
|
+
comfi_fgrnn = ComfiFastGRNN(
|
|
17
|
+
units=64,
|
|
18
|
+
return_sequences=False
|
|
19
|
+
)
|
|
30
20
|
```
|
|
@@ -4,9 +4,9 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "comfi_fast_grnn_tensorflow"
|
|
7
|
-
version = "0.0.
|
|
8
|
-
description = "A
|
|
9
|
-
readme = "README.md"
|
|
7
|
+
version = "0.0.3"
|
|
8
|
+
description = "A Tensorflow implementation of Comfi-FastGRNN"
|
|
9
|
+
readme = {file = "README.md", content-type = "text/markdown"}
|
|
10
10
|
requires-python = ">=3.10"
|
|
11
11
|
license = {text = "MIT"}
|
|
12
12
|
authors = [
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from .ComfiFastGRNN import ComfiFastGRNN
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: comfi_fast_grnn_tensorflow
|
|
3
|
-
Version: 0.0.
|
|
4
|
-
Summary: A
|
|
3
|
+
Version: 0.0.3
|
|
4
|
+
Summary: A Tensorflow implementation of Comfi-FastGRNN
|
|
5
5
|
Author-email: Nicolas Arrieta Larraza <NIAL@bang-olufsen.dk>, Niels de Koeijer <NEMK@bang-olufsen.dk>
|
|
6
6
|
License: MIT
|
|
7
7
|
Project-URL: Homepage, https://github.com/narrietal/Fast-ULCNet
|
|
@@ -12,7 +12,7 @@ Requires-Dist: tensorflow-estimator>=2.14.0
|
|
|
12
12
|
Requires-Dist: libsegmenter==1.0.4
|
|
13
13
|
Requires-Dist: CRM_tensorflow==0.1.6
|
|
14
14
|
|
|
15
|
-
# fast-
|
|
15
|
+
# comfi-fast-grnn-tensorflow
|
|
16
16
|
Implements Comfi-FastGRNN in tensorflow.
|
|
17
17
|
|
|
18
18
|
## Usage
|
|
@@ -25,20 +25,10 @@ The simplest way to use the layer with default settings:
|
|
|
25
25
|
```python
|
|
26
26
|
import tensorflow as tf
|
|
27
27
|
from comfi_fast_grnn_tensorflow import ComfiFastGRNN
|
|
28
|
-
|
|
29
|
-
# Define a Sequential model
|
|
30
|
-
model = tf.keras.Sequential([
|
|
31
|
-
# Input shape: (Timesteps, Features)
|
|
32
|
-
tf.keras.layers.Input(shape=(100, 32)),
|
|
33
|
-
|
|
34
|
-
# Comfi-FastGRNN layer
|
|
35
|
-
ComfiFastGRNN(
|
|
36
|
-
units=64,
|
|
37
|
-
return_sequences=False
|
|
38
|
-
),
|
|
39
28
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
29
|
+
# Comfi-FastGRNN layer
|
|
30
|
+
comfi_fgrnn = ComfiFastGRNN(
|
|
31
|
+
units=64,
|
|
32
|
+
return_sequences=False
|
|
33
|
+
)
|
|
44
34
|
```
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|