mttf 1.2.24__py3-none-any.whl → 1.2.25__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.
Potentially problematic release.
This version of mttf might be problematic. Click here for more details.
- mt/keras/__init__.py +1 -0
- mt/keras_src/activations_src/__init__.py +14 -0
- mt/keras_src/activations_src/soft_bend.py +23 -0
- mt/tf/version.py +1 -1
- {mttf-1.2.24.dist-info → mttf-1.2.25.dist-info}/METADATA +1 -1
- {mttf-1.2.24.dist-info → mttf-1.2.25.dist-info}/RECORD +15 -13
- {mttf-1.2.24.data → mttf-1.2.25.data}/scripts/dmt_pipi.sh +0 -0
- {mttf-1.2.24.data → mttf-1.2.25.data}/scripts/dmt_twineu.sh +0 -0
- {mttf-1.2.24.data → mttf-1.2.25.data}/scripts/pipi.sh +0 -0
- {mttf-1.2.24.data → mttf-1.2.25.data}/scripts/wml_nexus.py +0 -0
- {mttf-1.2.24.data → mttf-1.2.25.data}/scripts/wml_pipi.sh +0 -0
- {mttf-1.2.24.data → mttf-1.2.25.data}/scripts/wml_twineu.sh +0 -0
- {mttf-1.2.24.dist-info → mttf-1.2.25.dist-info}/WHEEL +0 -0
- {mttf-1.2.24.dist-info → mttf-1.2.25.dist-info}/licenses/LICENSE +0 -0
- {mttf-1.2.24.dist-info → mttf-1.2.25.dist-info}/top_level.txt +0 -0
mt/keras/__init__.py
CHANGED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
from .. import ops, backend
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
class SoftBend(ops.Operation):
|
|
5
|
+
"""Soft bend activation function.
|
|
6
|
+
|
|
7
|
+
Function: `|x|^alpha * tanh(x)`, bending the linear activation a bit.
|
|
8
|
+
|
|
9
|
+
If alpha is less than 1, it acts as a soft squash.
|
|
10
|
+
If alpha is greater than 1, it acts as a soft explode.
|
|
11
|
+
If alpha is 1, it acts as the linear activation function.
|
|
12
|
+
"""
|
|
13
|
+
|
|
14
|
+
def __init__(self, alpha: float = 0.5):
|
|
15
|
+
self.alpha = alpha
|
|
16
|
+
|
|
17
|
+
def call(self, x):
|
|
18
|
+
from tensorflow.math import pow, abs, tanh
|
|
19
|
+
|
|
20
|
+
return pow(abs(x), self.alpha) * tanh(x)
|
|
21
|
+
|
|
22
|
+
def compute_output_spec(self, x):
|
|
23
|
+
return backend.KerasTensor(x.shape, x.dtype)
|
mt/tf/version.py
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
mt/keras/__init__.py,sha256=
|
|
1
|
+
mt/keras/__init__.py,sha256=VYmA0WM9ox5rgQav5T_sHmodMvjUyIZ7qlNBehBJNrQ,263
|
|
2
2
|
mt/keras_src/__init__.py,sha256=jPQ2uDPmDxLUtU6R2y7dMBWQsqQxCbU5jvSzTT8_wko,504
|
|
3
3
|
mt/keras_src/base.py,sha256=_B2sSUMlHOtGSAqQD1p5YD0raEDL4W0Bh3uKD6BXOJM,807
|
|
4
|
+
mt/keras_src/activations_src/__init__.py,sha256=OMArIYnQjw0ntCj04Yg-kHFHbztQJjgDNDV7ptoTJEo,245
|
|
5
|
+
mt/keras_src/activations_src/soft_bend.py,sha256=j0RmCRsqbwJhDOOAXW1fpRP_-2jhX17_u4AtrM_Mxp0,648
|
|
4
6
|
mt/keras_src/applications_src/__init__.py,sha256=VOJKcb29_W_nA1To9NVI8FLFiIuJp7-ZYMk5OH4uizQ,734
|
|
5
7
|
mt/keras_src/applications_src/classifier.py,sha256=rmJThMRoDRwROvcxRek5-NI6OSpGhT8CjsW4dgySBak,18698
|
|
6
8
|
mt/keras_src/applications_src/mobilenet_v3_split.py,sha256=EufzlbM2B5D_whpsDmfJFvyLSLtsoK6VXomaSE2K6Ms,19737
|
|
@@ -20,21 +22,21 @@ mt/tf/__init__.py,sha256=M8xiJNdrAUJZgiZTOQOdfkehjO-CYzGpoxh5HVGBkms,338
|
|
|
20
22
|
mt/tf/init.py,sha256=bcm0t5tstxTkCBOiMX1SJxhKOz0MAZf-MYp2Mk0Gtas,502
|
|
21
23
|
mt/tf/mttf_version.py,sha256=ha53i-H9pE-crufFttUECgXHwPvam07zMKzApUts1Gs,206
|
|
22
24
|
mt/tf/utils.py,sha256=wau2vhPoPHu2cDxlc2lc9fxrndOXPdq2DNG4em5OOMI,1025
|
|
23
|
-
mt/tf/version.py,sha256=
|
|
25
|
+
mt/tf/version.py,sha256=E-FTzwdVljIoyB_d5YTrMvpgRGop2fbsRL6q2Ftyhis,207
|
|
24
26
|
mt/tf/keras_applications/__init__.py,sha256=m-A1rHGGLQgHX9690ENWXZkrU0vqfsJkZXcjIG3CLM0,142
|
|
25
27
|
mt/tf/keras_layers/__init__.py,sha256=NsuFD-kSuy6cVV3Kl7ab95tw4g7x4Igv3cF-Ky3VuCo,124
|
|
26
28
|
mt/tfc/__init__.py,sha256=pcxgcmUSXJCFZal5Pxz7hC1P8fhP1dB2egZzKGdrseQ,12118
|
|
27
29
|
mt/tfg/__init__.py,sha256=6Ly2QImAyQTsg_ZszuAuK_L2n56v89Cix9yYmMVk0CM,304
|
|
28
30
|
mt/tfp/__init__.py,sha256=AQkGCkmDRwswEt3qoOSpxe-fZekx78sHHBs2ZVz33gc,383
|
|
29
31
|
mt/tfp/real_nvp.py,sha256=U9EmkXGqFcvtS2yeh5_RgbKlVKKlGFGklAb7Voyazz4,4440
|
|
30
|
-
mttf-1.2.
|
|
31
|
-
mttf-1.2.
|
|
32
|
-
mttf-1.2.
|
|
33
|
-
mttf-1.2.
|
|
34
|
-
mttf-1.2.
|
|
35
|
-
mttf-1.2.
|
|
36
|
-
mttf-1.2.
|
|
37
|
-
mttf-1.2.
|
|
38
|
-
mttf-1.2.
|
|
39
|
-
mttf-1.2.
|
|
40
|
-
mttf-1.2.
|
|
32
|
+
mttf-1.2.25.data/scripts/dmt_pipi.sh,sha256=NNsj4P332unHMqU4mAFjU9PQvxQ8TK5XQ42LC29IZY8,510
|
|
33
|
+
mttf-1.2.25.data/scripts/dmt_twineu.sh,sha256=KZhcYwuCW0c36tWcOgCe7uxJmS08rz-J6YNY76Exy4M,193
|
|
34
|
+
mttf-1.2.25.data/scripts/pipi.sh,sha256=kdo96bdaKq2QIa52Z4XFSiGPcbDm09SAU9cju6I2Lxo,289
|
|
35
|
+
mttf-1.2.25.data/scripts/wml_nexus.py,sha256=47P9PQMgb9w_-T0olC-dr3s60mKaQup-RWOuNi5mvJg,1192
|
|
36
|
+
mttf-1.2.25.data/scripts/wml_pipi.sh,sha256=CuidIcbuxyXSBNQqYRhCcSC8QbBaSGnQX0KAIFaIvKA,499
|
|
37
|
+
mttf-1.2.25.data/scripts/wml_twineu.sh,sha256=av1JLN765oOWC5LPkv2eSWIVof26y60601tMGkuYdb8,180
|
|
38
|
+
mttf-1.2.25.dist-info/licenses/LICENSE,sha256=e_JtcszdGZ2ZGfjcymTGrcxFj_9XPicZOVtnsrPvruk,1070
|
|
39
|
+
mttf-1.2.25.dist-info/METADATA,sha256=s6_rp04LsZ-utOTFRVrXmvXrUx6yDTgPrqhrB3MneBE,568
|
|
40
|
+
mttf-1.2.25.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
41
|
+
mttf-1.2.25.dist-info/top_level.txt,sha256=WcqGFu9cV7iMZg09iam8eNxUvGpLSKKF2Iubf6SJVOo,3
|
|
42
|
+
mttf-1.2.25.dist-info/RECORD,,
|
|
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
|