I am trying to use Google Cloud ML Engine to optimize hyperparameters for my variational autoencoder model, but the job fails because the .tfrecord files I specify for my input are not found. In my model code, I pass train.tfrecords to my input tensor as in the canonical cifar10 example and specify the location of train.tfrecords with the full path.
Relevant information:
- JOB_DIR points to the trainer directory
- This image shows my directory structure
My setup.py file is below:
from setuptools import find_packages from setuptools import setup REQUIRED_PACKAGES = ['tensorflow==1.3.0', 'opencv-python'] setup( name='trainer', version='0.1', install_requires=REQUIRED_PACKAGES, packages=find_packages(), include_package_data=True, description='My trainer application package.' )