-
Notifications
You must be signed in to change notification settings - Fork 14
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
train/val/test batch #3
Comments
Thank you for your interest in this work. The reason nb_test_batch is different from the value of the article is that we used this code for further work which involved using a larger database for training/validation/testing on patches (you can also see that the architecture of the network is a bit different from the one described in the article). |
OK, Thanks for your reply. Recently, i need to compare my result with your result use the best framework, i.e., TABLE II, Stats-2L. Because i am very unfamiliar with TensorFlow, so would you mind sending me the model.py, which is consistent with the article (WIFS2017, Distinguishing Computer Graphics from Natural Images Using Convolution Neural Networks)? My email: qweizework@gmail.com |
Thanks for your work. Presently, I am researching some related topic, and I need the same dataset. I wonder if you can share me your dataset which would give me a great of help in making some comparisons with mine. Btw, I have alreadly download CG images for the link you have share on github. But, I also need the 1800 Photographic images. Can you share it too? Sorry to bother you. I will be appreciated for your reply as soon as possible, thank you very much! |
Hi, |
Thanks a lot. I also want to know how to convert TIFF or RAW images to JPEG(with 95% compression rate). Could you share your code or bash command too? |
Hi, |
Reading the class train(self, nb_train_batch, nb_test_batch,
nb_validation_batch, validation_frequency = 10, show_filters = False):
, your shared code now is used to train on patches (100x100), and also val/test on patches. Here, you set crop = False, if one want to train on full-size image, need to change "crop" to True.
I don't understand why nb_test_batch = 80? In your paper (), TABLE 1: the Ntest = 2000. Therefore, i think that nb_test_batch = 40 is right, the reason is that nb_test_batch (i.e., 40) * batch_size (i.e., 50) = Ntest (i.e., 2000).
The text was updated successfully, but these errors were encountered: