Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.9k views
in Technique[技术] by (71.8m points)

tensorflow - Keras model generates Nan on predict on gcp

I have a Keras model (Yolo3) and I want to run the code on several images in the loop:

here is the pseudo-code

model = Model(input, output)
for image in list_images:
    image_processed = processing(image)
    result = model.predict(image_processed)

I remark that the code is running very well on my local GPU as expected.

Running exactly the same code on GCP instance K80 crash at the second iteration by predicting NaN value !!!!) I debug the image (infinite, Nan value), consider a list of the same image, etc, it still giving the same error!!

I also debug the weights of the model and I get that it has the same weights across iterations!

Anyone from the GCP team can help ?

If someone wants to reproduce the error, here is the link github

I try to set an issue tracker as mentioned in the first comment but as you see it does not work because I don't have enough permissions. enter image description here


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...