File tree Expand file tree Collapse file tree 5 files changed +12
-10
lines changed Expand file tree Collapse file tree 5 files changed +12
-10
lines changed Original file line number Diff line number Diff line change 11Metadata-Version: 2.1
22Name: SciANN
3- Version: 0.7.0.0
3+ Version: 0.7.0.1
44Summary: A Keras/Tensorflow wrapper for scientific computations and physics-informed deep learning using artificial neural networks.
55Home-page: https://github.com/sciann/sciann
66Author: Ehsan Haghighat
Original file line number Diff line number Diff line change 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 ' + \
Original file line number Diff line number Diff 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+ # })
Original file line number Diff line number Diff 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+ # })
Original file line number Diff line number Diff line change 1515
1616setup (
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' ,
You can’t perform that action at this time.
0 commit comments