Skip to main content

Failed to convert a NumPy array to a Tensor, when trying to train the image model

I'm trying to train a model of image recognition.But the model.fit is always returning the error:

ValueError                                Traceback (most recent call last)
Cell In\[106\], line 1
\----\> 1 history = model.fit(x_train, batch_size=batch_size, epochs=epochs)

File c:\\Users\\rochav3\\Anaconda\\envs\\py_OBJ_DETECTION\\lib\\site-packages\\keras\\utils\\traceback_utils.py:67, in filter_traceback..error_handler(\*args, \*\*kwargs)
65 except Exception as e:  # pylint: disable=broad-except
66   filtered_tb = \_process_traceback_frames(e.__traceback__)
\---\> 67   raise e.with_traceback(filtered_tb) from None
68 finally:
69   del filtered_tb

File c:\\Users\\rochav3\\Anaconda\\envs\\py_OBJ_DETECTION\\lib\\site-packages\\tensorflow\\python\\framework\\constant_op.py:102, in convert_to_eager_tensor(value, ctx, dtype)
100     dtype = dtypes.as_dtype(dtype).as_datatype_enum
101 ctx.ensure_initialized()
\--\> 102 return ops.EagerTensor(value, ctx.device_name, dtype)

ValueError: Failed to convert a NumPy array to a Tensor (Unsupported object type numpy.ndarray).

I saw some other topics related to this here, but nothing solved my problem, the float32 also did not solved.

Follow below my code.

Basically, I'm getting a dataset from a pickle file, with PILLOW images and converting them to grayscale and converting to numpy arrays.

`# %%
import tensorflow as tf
import cv2
import pickle
import numpy as np
from sklearn.model_selection import train_test_split
import random
import pandas as pd
import PIL
from PIL import ImageOps
with open('C:\Visual Studio\Django\DetectTool\OpenClosed_dataset.pickle', 'rb') as f:
    data = pickle.load(f)

# %%
np_data =[]
tam_data = len(data[0])

for i in range(tam_data):
    np_data.append((np.asarray(ImageOps.grayscale(data[0][i])),
    np.asarray(data[1][i])))

# %%
ds_Valves = []
for i in range(100):
    ds_Valves.append((np_data[i][0], np_data[i][1])) 

# %%
random.shuffle(ds_Valves)

df_Valves = pd.DataFrame(ds_Valves)

df_Valves.rename(columns= {0 : 'Image', 1: 'State'}, inplace= True)


# %%
df_X = df_Valves['Image']
df_Y = df_Valves.drop(columns=['Image'])

# %%
df_X = np.asarray(df_X).astype('object')
df_Y = np.asarray(df_Y).astype('float32')


# %%
x_train, x_test, y_train, y_test = train_test_split(df_X, df_Y, test_size=0.20, random_state=0 )

# %%
# Defina os hiperparĆ¢metros do modelo
batch_size = 32
epochs = 10
learning_rate = 0.001

# %%
# Escolha uma arquitetura de modelo e compile-o
model = tf.keras.models.Sequential([
    tf.keras.layers.Conv2D(32, (3, 3), activation='relu', input_shape=(510, 510,3)),
    tf.keras.layers.MaxPooling2D((2, 2)),
    tf.keras.layers.Conv2D(64, (3, 3), activation='relu'),
    tf.keras.layers.MaxPooling2D((2, 2)),
    tf.keras.layers.Conv2D(128, (3, 3), activation='relu'),
    tf.keras.layers.MaxPooling2D((2, 2)),
    tf.keras.layers.Flatten(),
    tf.keras.layers.Dense(512, activation='relu'),
    tf.keras.layers.Dense(3, activation='softmax')
])

# %%
model.compile(optimizer=tf.keras.optimizers.Adam(learning_rate=learning_rate),
              loss='categorical_crossentropy',
              metrics=['accuracy'])

# %%
history = model.fit(x_train, batch_size=batch_size, epochs=epochs)`

I saw some other topics related to this here, but nothing solved my problem, the float32 also did not solved.

Update: Just found a workaround here.

  • changed my dataset from .PNG to .JPG
  • Instead of using PIL, I used cv2
  • I created the tensor during the dataset creation.

I believe the mistake was that I was trying to create the tensor with the PIL image "in memory" and not the file.



source https://stackoverflow.com/questions/76006839/failed-to-convert-a-numpy-array-to-a-tensor-when-trying-to-train-the-image-mode

Comments

Popular posts from this blog

ValueError: X has 10 features, but LinearRegression is expecting 1 features as input

So, I am trying to predict the model but its throwing error like it has 10 features but it expacts only 1. So I am confused can anyone help me with it? more importantly its not working for me when my friend runs it. It works perfectly fine dose anyone know the reason about it? cv = KFold(n_splits = 10) all_loss = [] for i in range(9): # 1st for loop over polynomial orders poly_order = i X_train = make_polynomial(x, poly_order) loss_at_order = [] # initiate a set to collect loss for CV for train_index, test_index in cv.split(X_train): print('TRAIN:', train_index, 'TEST:', test_index) X_train_cv, X_test_cv = X_train[train_index], X_test[test_index] t_train_cv, t_test_cv = t[train_index], t[test_index] reg.fit(X_train_cv, t_train_cv) loss_at_order.append(np.mean((t_test_cv - reg.predict(X_test_cv))**2)) # collect loss at fold all_loss.append(np.mean(loss_at_order)) # collect loss at order plt.plot(np.log(al...

Sorting large arrays of big numeric stings

I was solving bigSorting() problem from hackerrank: Consider an array of numeric strings where each string is a positive number with anywhere from to digits. Sort the array's elements in non-decreasing, or ascending order of their integer values and return the sorted array. I know it works as follows: def bigSorting(unsorted): return sorted(unsorted, key=int) But I didnt guess this approach earlier. Initially I tried below: def bigSorting(unsorted): int_unsorted = [int(i) for i in unsorted] int_sorted = sorted(int_unsorted) return [str(i) for i in int_sorted] However, for some of the test cases, it was showing time limit exceeded. Why is it so? PS: I dont know exactly what those test cases were as hacker rank does not reveal all test cases. source https://stackoverflow.com/questions/73007397/sorting-large-arrays-of-big-numeric-stings

How to load Javascript with imported modules?

I am trying to import modules from tensorflowjs, and below is my code. test.html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title </head> <body> <script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@2.0.0/dist/tf.min.js"></script> <script type="module" src="./test.js"></script> </body> </html> test.js import * as tf from "./node_modules/@tensorflow/tfjs"; import {loadGraphModel} from "./node_modules/@tensorflow/tfjs-converter"; const MODEL_URL = './model.json'; const model = await loadGraphModel(MODEL_URL); const cat = document.getElementById('cat'); model.execute(tf.browser.fromPixels(cat)); Besides, I run the server using python -m http.server in my command prompt(Windows 10), and this is the error prompt in the console log of my browser: Failed to loa...