-
Notifications
You must be signed in to change notification settings - Fork 253
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
How do I start training from scratch? #38
Comments
I have the same problem as you. Have you made any progress |
Unfortunately, no. I am working with a really specific dataset and I don't want to contaminate my data by using pre-trained models. I am new to Keras and Tensorflow. Although I can kinda understand how the code works, I don't know how to modify it without ruining it. It would be great if someone made a simplified version of this, so more people can use it. I will try to make one once I figured out how to get it to work |
I am also no expert, but try to use: 1.in step 4 change into: model = PConvUnet(vgg_weights='./data/logs/pytorch_vgg16.h5') model.load(INITIAL_WEIGHTS_1)the pytorch_vgg16.h5 can be downloaded from https://drive.google.com/file/d/1HOzmKQFljTdKWftEP-kWD7p2paEaeHM0/view . 2.I would try to insert premade masks( covering Humans ), which You can than use in training the model, but to modify the code for that is much more complicated, I am now trying something similar, but I just start the training so result is unkown. 3.Yes step 5 is correct, mayby You don't need to train from scratch, why don't You just try and use pretrained model ? and run step 5 only,with masks on those people( RGB=(0,0,0,0) ) |
Notebook 5 references "random_mask" which isn't available. |
put MaskGenerator()._generate() on that. |
Best regards, |
hi, i am also having trouble using notebook - 'Step 4 - Imagenet Training'. Specifically the part below. Could someone provide me with clarification to this? I am guessing But what argument should I provide in |
where is the "single_image_test\weights.10-0.89.h5"? |
any solution? |
Sorry if this is a stupid question, I'm a newbie. I've tried reading the notebooks and looking at 'Issues', but I don't quite get how to get this thing to work. Here are some issues I'm facing:
Thank you
The text was updated successfully, but these errors were encountered: