Skip to content

Commit 32b0870

Browse files
v-0.7.0.1 - issue with latest tf-2.11
1 parent d4767d0 commit 32b0870

File tree

5 files changed

+12
-10
lines changed

5 files changed

+12
-10
lines changed

SciANN.egg-info/PKG-INFO

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.1
22
Name: SciANN
3-
Version: 0.7.0.0
3+
Version: 0.7.0.1
44
Summary: A Keras/Tensorflow wrapper for scientific computations and physics-informed deep learning using artificial neural networks.
55
Home-page: https://github.com/sciann/sciann
66
Author: Ehsan Haghighat

sciann/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
__credits__ = []
4242
__url__ = "http://github.com/sciann/sciann]"
4343
__license__ = "MIT"
44-
__version__ = "0.7.0.0"
44+
__version__ = "0.7.0.1"
4545
__cite__ = \
4646
'@article{haghighat2021sciann, \n' +\
4747
' title={SciANN: A Keras/TensorFlow wrapper for scientific computations and physics-informed deep learning using artificial neural networks}, \n' +\

sciann/utils/activations.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,7 @@ def get_activation(activation):
204204
)
205205

206206

207-
k.utils.generic_utils.get_custom_objects().update({
208-
'SciActivation': SciActivation
209-
})
207+
# not supported tensorflow >= 2.10
208+
# k.utils.get_custom_objects().update({
209+
# 'SciActivation': SciActivation
210+
# })

sciann/utils/initializers.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,8 @@ def get_config(self):
9292
return dict(list(base_config.items()) + list(config.items()))
9393

9494

95-
k.utils.generic_utils.get_custom_objects().update({
96-
'SciKernelInitializer': SciKernelInitializer,
97-
'SciOrthogonalInitializer': SciOrthogonalInitializer
98-
})
95+
# not supported tensorflow >= 2.10
96+
# k.utils.get_custom_objects().update({
97+
# 'SciKernelInitializer': SciKernelInitializer,
98+
# 'SciOrthogonalInitializer': SciOrthogonalInitializer
99+
# })

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
setup(
1717
name='SciANN',
18-
version='0.7.0.0',
18+
version='0.7.0.1',
1919
description='A Keras/Tensorflow wrapper for scientific computations and physics-informed deep learning using artificial neural networks.',
2020
long_description=long_description,
2121
author='Ehsan Haghighat',

0 commit comments

Comments
 (0)