bug fixes ....

This commit is contained in:
Steve Nyemba 2021-05-10 14:49:08 -05:00
parent 28d919cade
commit 6e45704252
2 changed files with 2 additions and 2 deletions

View File

@ -178,7 +178,7 @@ def generate(**_args):
if partition : if partition :
lparams['partition'] = partition lparams['partition'] = partition
handler.load_meta(lparams) handler.load_meta(**lparams)
# #
# Let us now format the matrices by reverting them to a data-frame with values # Let us now format the matrices by reverting them to a data-frame with values
# #

View File

@ -5,7 +5,7 @@ import sys
def read(fname): def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read() return open(os.path.join(os.path.dirname(__file__), fname)).read()
args = {"name":"data-maker", args = {"name":"data-maker",
"version":"1.4.7.2", "version":"1.4.7.3",
"author":"Vanderbilt University Medical Center","author_email":"steve.l.nyemba@vanderbilt.edu","license":"MIT", "author":"Vanderbilt University Medical Center","author_email":"steve.l.nyemba@vanderbilt.edu","license":"MIT",
"packages":find_packages(),"keywords":["healthcare","data","transport","protocol"]} "packages":find_packages(),"keywords":["healthcare","data","transport","protocol"]}
args["install_requires"] = ['data-transport@git+https://dev.the-phi.com/git/steve/data-transport.git','tensorflow==1.15','pandas','pandas-gbq','pymongo'] args["install_requires"] = ['data-transport@git+https://dev.the-phi.com/git/steve/data-transport.git','tensorflow==1.15','pandas','pandas-gbq','pymongo']