We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba0e44c commit 9a1303aCopy full SHA for 9a1303a
setup.py
@@ -13,7 +13,7 @@
13
14
setuptools.setup(
15
name="tensordiffeq",
16
- version="0.1.6.7",
+ version="0.1.7",
17
author="Levi McClenny",
18
author_email="[email protected]",
19
description="Distributed PDE Solver in Tensorflow",
tensordiffeq/output.py
@@ -2,6 +2,8 @@
2
from os import system, name
3
import sys
4
5
-def print_screen(Domain, model):
+def print_screen(model):
6
f = Figlet(font='slant')
7
- print(f.renderText('TensorDiffEq'))
+ print(f.renderText('TensorDiffEq'))
8
+ print("Neural Network Model Summary\n")
9
+ print(model.u_model.summary())
0 commit comments