I'm following the "Getting started with the built-in image classification algorithm" tutorial from Google's AI Platform and before submit a training job, one has to specify (it seems optional) the "image_size" which is defined as: "the image size (width and height) used for training". Do I have to specify a couple of scalars (comma delimited?) or a scalar ? How can we interpret this parameter? If I specify something, does it impose that all my input images should be of this particular size or will the images be automatically resized (or cropped?) to this size by the training graph? And equivalently for prediction task do I have to resize my input image to this specific size or does the prediction graph takes care of that.
How to interpret image_size parameter in AI Platform built-in classification algorithm?
85 Views Asked by Patrick At
1
There are 1 best solutions below
Related Questions in TENSORFLOW
- (Tensorflow)Does the op assign change the gradient computation?
- Tensorflow Windows Accessing Folders Denied:"NewRandomAccessFile failed to Create/Open: Access is denied. ; Input/output error"
- Android App TensorFlow Google Cloud ML
- Convert Tensorflow model to Caffe model
- Google Tensorflow LSTMCell Variables Mapping to Hochreiter97_lstm.pdf paper
- additive Gaussian noise in Tensorflow
- TFlearn evaluate method results meaning
- Regularization losses Tensorflow - TRAINABLE_VARIABLES to Tensor Array
- feed picture to model tensorflow for training
- Fail to read the new format of tensorflow checkpoint?
- I got a error when running a github project in tensorflow
- Tensorflow R0.12 softmax_cross_entropy_with_logits ASSERT Error
- RuntimeError in run_one_batch of TensorFlowDataFrame in tensorflow
- Same output in neural network for each input after training
- ConvNet : Validation Loss not strongly decreasing but accuracy is improving
Related Questions in IMAGE-CLASSIFICATION
- Incorrect printed message in tensorflow image classification tutorial due to warning "Could not load dynamic library 'cudart64_110.dll';...."
- How to load CUB-200-2011 dataset in pytorch?
- Error when training Tensorflow image classification model even when all images in jpeg format. Anyone have a fix?
- Pytorch: Overfitting on a small batch: Debugging
- Accuracy of Multi Layer Neural Network using Backpropagation around 86% normal?
- Prediction for single image file using tensor flow transfer learning model
- Having problems while doing multiclass classification with tensorflow
- How do I convert a list of grayscale images into RGB images using EBImage
- do I use "rescale=1. / 255" or not? Building VGG-like CNN
- Caffe classification testing losses are always 0 and top-1 is always -nan
- How to get most probable className from TensorFlow.js in Node
- Keras predicting different output for same input image
- Testing a Random Image against a Python Keras/Tensorflow CNN
- Why is my CNN/Image Classifier model accuracy so low?
- The current path, imageupload, didn't match any of these, Page not Found Django
Related Questions in GOOGLE-AI-PLATFORM
- Google AI Platform Error: VM: Write access to project 'PROJECT ID' was denied. How to allow write access?
- AI Platform Training Job exited with a non-zero status of 1. Termination reason: Error
- Is it required to have a google notebook instance running for every user who needs a Jupyter notebook on AI platform?
- gcloud beta ai - PERMISSION_DENIED
- Getting Configurations for tf.Serving From Saved Keras Model
- Detection and Cleaning of Strike-out Texts on Handwriting
- How to transform Google protobuf message into JSON
- How to make request to google Vertex AI API for MultiModal embeddings
- Google.Protobuf.JsonFormatter fails when formatting PredictResponse to JSON
- Creating a product set on Google Vision API
- I have defined my domain and problem in pddl for a logistic problem. I am very new in the field and i am currently struggling to generate a plan
- Google cloud aiplatform getting "Request contains invalid argument."
- Invalid json syntax, expected json object but was json primitive
- GoogleGenerativeAIError: [400 Bad Request] API key not valid. Please pass a valid API key
- Scaling Behavior on Google's Vertex AI Versus AI Platform
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Have not used the built in classifier however I am pretty sure you should specify the images as as a tuple of integers like (200,300). The classifier will read in your images and convert all of them to this size automatically.