-
Notifications
You must be signed in to change notification settings - Fork 683
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
U-Net model for lung lesion segmentation model does not run using colab #67
Comments
for your reference the expected training outputs would be something like:
|
Thank you! Right now, I trying to figure out why I am getting |
I haven't tried it with a colab instance, but perhaps you need to put
as the very first cell |
I'm testing it out now to see if that works. |
Using it on the first cell in Cola doesn't work |
Tentatively I think it may because I'm running into out of memory in Colab. |
ok if that's the case, perhaps you could reduce the number of features for the network |
@wyli I was able to get it working with colab. You have to increase the RAM. |
I tried running the following command
python run_net.py train --data_folder "COVID-19-20_v2/Train" --model_folder "runs"
per the instructions and I get the output below in example A. It The model does not seem to be training. I also tried running the inference commandpython run_net.py infer --data_folder "COVID-19-20_v2/Validation" --model_folder "runs"
and I get the error in example B.When I check the
runs
folder, I do not see any indication that model ran or checkpoints saved.I am using google Colab to train to the model.
example A
example B
The text was updated successfully, but these errors were encountered: