bug fix
This commit is contained in:
parent
b10296246d
commit
7de89a576a
|
@ -174,7 +174,11 @@ def generate(**_args):
|
||||||
args['gpu'] = _args['gpu']
|
args['gpu'] = _args['gpu']
|
||||||
|
|
||||||
handler = gan.Predict (**args)
|
handler = gan.Predict (**args)
|
||||||
handler.load_meta(column=None)
|
lparams = {'columns':None}
|
||||||
|
if partition :
|
||||||
|
lparams['partition'] = partition
|
||||||
|
|
||||||
|
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
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in New Issue