tensorflow.keras.Normalization in Google Colab Notebook
Apologies if this is a basic question. In the following python code I try to normalize a simple tensor using a Google Colab notebook.
Google Colab GPU: []
I am working with the maskrcnn model in google colab. I select GPU from the runtime section.
VS Code to Google Colab transition tensorflow
I have written a code in VSCode using tensorflow library that trains a model to detect road lanes. I have used the Road Line and Marking Dataset for training. It worked perfectly fine in VS Code but I wanted to transition to colab to make it faster. I am getting a lot of value errors like this:
ValueError Traceback (most recent call last)
in <cell line: 126>()
124
125 # Training loop
–> 126 detect = model.fit(
127 load_dataset_batch(extracted_trains_folder, extracted_labels_folder, batch_size),
128 steps_per_epoch=steps_per_epoch,