Brandon Dutra
Brandon Dutra
iris model trained from your master branch does not work with gcloud local predict. gcloud ml-engine local predict --model-dir TOUT/model/ --text-instances iris/data/eval.csv Traceback (most recent call last): File "lib/googlecloudsdk/command_lib/ml/local_predict.py", line...
$ gcloud ml-engine versions create v1 --model tfx --origin gs://cloud-ml-dev_bdt/TOUT/model Creating version (this might take a few minutes)......failed. ERROR: (gcloud.ml-engine.versions.create) Create Version failed. Model validation failed: SavedModel must contain at...
Got gcloud local predict working with this proof of concept: ``` def _build_signature(inputs, outputs): def tensor_alias(tensor): local_name = tensor.name.split('/')[-1] return local_name.split(':')[0] input_map = {} output_map = {} for tensor in...
Getting gcloud local predict is a real test too: that's the first thing a ml-engine user will try! Also, did your last update undo your table init work? Because gcloud...
problem: setuptools >= 34.3.1 is needed. I built the tar ball with 28.2.0 the first time and got this error.
sent PR #12 to check for this in build.sh. min setuptools needed is 30
which version of setuptools did you use?
The structure data package reads the vocab file, and embeds it in the graph with index_table_from_tensor (but I think index_to_string_table_from_file would work fine). The vocab file then does not need...
PR sent to remove the duplicated logging.
See #13 for basic first pr.