This commit is contained in:
Mike J Innes 2017-01-30 22:26:46 +05:30
parent 349e81172d
commit 5f1d560e38

View File

@ -7,7 +7,7 @@ end
function tf(args...) function tf(args...)
loadtf() loadtf()
TF.tf(args...) eval(:(TF.tf($(args...))))
end end
function loadmx() function loadmx()
@ -17,5 +17,5 @@ end
function mxnet(args...) function mxnet(args...)
loadmx() loadmx()
MX.mxnet(args...) eval(:(MX.mxnet($(args...))))
end end