Skip to content

Commit

Permalink
stage v0.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
levimcclenny committed Mar 27, 2021
1 parent ba0e44c commit 9a1303a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

setuptools.setup(
name="tensordiffeq",
version="0.1.6.7",
version="0.1.7",
author="Levi McClenny",
author_email="levimcclenny@tamu.edu",
description="Distributed PDE Solver in Tensorflow",
Expand Down
6 changes: 4 additions & 2 deletions tensordiffeq/output.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
from os import system, name
import sys

def print_screen(Domain, model):
def print_screen(model):
f = Figlet(font='slant')
print(f.renderText('TensorDiffEq'))
print(f.renderText('TensorDiffEq'))
print("Neural Network Model Summary\n")
print(model.u_model.summary())

0 comments on commit 9a1303a

Please sign in to comment.