Hi,
I tried to submit recently but the status is failed while getting "Skipping registering GPU devices..." from the ingestion error log
Is there any other running log to help understand the problem?
Thanks,
Meitar
Posted by: Lancelot-AI @ April 18, 2023, 10:19 a.m.Hi,
The error seems to happen in the predict function.
I suggest running the inference pipeline to check what and where the error is in your submission code.
You can run this short code snippet that demonstrates the inference pipeline (without statistic calibration and metadata):
from model import model
import cv2
image_path = '/content/images/126_0_1280.tiff'
predictor = model()
predictor.load('/content')
img = cv2.imread(image_path, -1)
print(img.shape)
res = predictor.predict(img, None)
print(res)
Neta,
MAFAT Challenge Team
Thank you!
Can you also stop my running submitting - "submit.zip" from the 04/17/2023 11:31:33?
I guess it's failed also but still has "running" status
Hi,
Yes. Indeed the submission status didn't updated.
Neta,
MAFAT Challenge Team