You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am curious about this as well. It looks like the vector column contains the actual data for the image. I am not familiar with TF image processing. A pointer in the right direction would be appreciated.
@app.route('/mix_images', methods=['POST'])
def mix_images():
try:
label1 = np.asarray(json.loads(request.form['label1']), dtype='float64')
label2 = np.asarray(json.loads(request.form['label2']), dtype='float64')
vector1 = np.asarray(json.loads(request.form['vector1']), dtype='float64')
vector2 = np.asarray(json.loads(request.form['vector2']), dtype='float64')
The text was updated successfully, but these errors were encountered: