Hi everyone,
I am currently working on a model based on the U-Net architecture to segment parts of the brain. I installed tensorflow via “conda install tensorflow” and I am getting this warning while trying to fit:
history = model4.fit(
X_train_batch, y_train_batch,
batch_size=32, # Tamaño de lote de 32
epochs=30) # Entrenar durante 10 épocas
“Failed to get CPU frequency: 0 Hz”
I have never got this warning before, and appearently, the training goes as usual, but I am not sure if I have to fix this or how to do it.
Thank you all in advance