Image recognition is a vital component in robotics such as driverless vehicles or domestic robots. Image recognition is also important in image search engines such as Google or Bing image search whereby you use rich image content to query for similar stuff. Like in Google photos where the system uses image recognition to categorize your images into things like cats, dogs, people and so on so that you can quickly search your albums for things like, “give me photos of my cat”, that's awesome.
Hey
When i extract the train_beg folder in the colab notebook the order of the images changes and becomes unordered.
So how to make them in order with the labels_csv
Hi @talal
One of the way could be to load the images in the same order as given in the csv file i.e. make use of that csv file while loading the images… Other could be you can make use of for loops and lists though this will be a long procedure.
The image size is (200,300,3) and there are 1000 images.
I know how to convert them to numpy array but how to keep all these 1000 3d numpy arrays into one training variable
I am having a problem in my training process i.e the accuracy and loss of my model is not changing rather it remains constant.Even if i train it on gray images
Help!
copying the contents of the animal data folder to Google Drive
!cp -r Datasets/animal_data /content/animal_data/
to my Jupyter Notebook, it showed this error
‘git’ is not recognized as an internal or external command,
operable program or batch file.
‘cp’ is not recognized as an internal or external command,
operable program or batch file.
Please I need help with building the model. I have loaded the dataset using Method 1 from the Help Notebook sent. But i don’t know how to split the data and parse it into the model. The data type is LIST.
Found 0 images belonging to 0 classes.
I am receiving this error while running model.fit the below code
history = model.fit_generator( train_generator , # train_generator
epochs=60,# epochs, verbose=1,
validation_data = validation_generator)