It's been two years and there still doesn't seem to be a way to have a locally trained neural network model evaluated in the cloud. Is that correct?
Here's some simple sample code, everything but CloudDeploy is straight from the docs:
net = NetChain[{LinearLayer[], LogisticSigmoid}];
trained = NetTrain[net, {1->False, 2->False, 3->True, 4->True}]
trained[3.5] (* True *)
CloudDeploy[FormPage[{"n" -> "Number"}, trained[#n] &], Permissions -> "Public"] // SystemOpen
When you run it, and put in 3.5 into the form, it returns an errorCode "no-wolfram-engine-response", statusCode 503, and errorDetails "Unable to evaluate".
1) Am I doing something wrong?
2) Is there an ETA for when it will be possible?
3) Is there a workaround?
Thanks