Skip to content

Commit 9a1303a

Browse files
committed
stage v0.1.7
1 parent ba0e44c commit 9a1303a

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

setup.py

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

1414
setuptools.setup(
1515
name="tensordiffeq",
16-
version="0.1.6.7",
16+
version="0.1.7",
1717
author="Levi McClenny",
1818
author_email="[email protected]",
1919
description="Distributed PDE Solver in Tensorflow",

tensordiffeq/output.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
from os import system, name
33
import sys
44

5-
def print_screen(Domain, model):
5+
def print_screen(model):
66
f = Figlet(font='slant')
7-
print(f.renderText('TensorDiffEq'))
7+
print(f.renderText('TensorDiffEq'))
8+
print("Neural Network Model Summary\n")
9+
print(model.u_model.summary())

0 commit comments

Comments
 (0)