-
-
Notifications
You must be signed in to change notification settings - Fork 332
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
Added and updated README files for vision models #218 #305
Conversation
thanks, this is nice work! just added some minor comments |
Co-authored-by: Carlo Lucibello <[email protected]>
Co-authored-by: Carlo Lucibello <[email protected]>
I have made all the changes can you please review @CarloLucibello . |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @aditkumar72! I've done a first pass and left some comments. The main points here are a) determining where the images come from and (assuming we have permission to use them) providing attribution as required, and b) re-formatting the references to be more detailed and structured.
@@ -0,0 +1,24 @@ | |||
# LeNet-5 | |||
|
|||
![LeNet-5](../conv_mnist/docs/LeNet-5.png) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Where does this image come from? Does it require attribution?
vision/dcgan_mnist/README.md
Outdated
[Unsupervised Representation Learning with Deep Convolutional Generative Adversarial Networks by Soumith Chintala et al.](https://arxiv.org/pdf/1511.06434v2.pdf) | ||
|
||
[pytorch.org/tutorials/beginner/dcgan_faces_tutorial](https://pytorch.org/tutorials/beginner/dcgan_faces_tutorial.html) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ditto comment about reference format.
@@ -0,0 +1,18 @@ | |||
# Multilayer Perceptron (MLP) | |||
|
|||
![mlp](../mlp_mnist/docs/mlp.svg) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Similar comments about image sourcing and reference formats for this file.
All the model images except of dcgan are taken from references mentioned in their respective READMEs. The dcgan image is taken from google image. I will add its source in its README file. |
Thanks @ToucheSir and @CarloLucibello for reviewing. I will soon come up with the proposed changes. |
@ToucheSir I have made all the changes can you please review. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pinging @CarloLucibello to have a final look, but I think this is almost ready to go.
vision/conv_mnist/README.md
Outdated
|
||
* [Y. Lecun, L. Bottou, Y. Bengio and P. Haffner, "Gradient-based learning applied to document recognition," in Proceedings of the IEEE, vol. 86, no. 11, pp. 2278-2324, Nov. 1998, doi: 10.1109/5.726791.](http://yann.lecun.com/exdb/publis/pdf/lecun-01a.pdf) | ||
|
||
* [@book |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This doesn't seem to render correctly for me. Can you confirm it's Github compatible?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking at the preview it seems like rendering properly. Should I need to change anything?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe that's your local markdown editor, because GitHub renders the raw bibtex. I'd recommend just using the plaintext citation like you have for the reference above.
vision/dcgan_mnist/README.md
Outdated
|
||
## Model Info | ||
|
||
A DC-GAN is a direct extension of the GAN, except that it explicitly uses convolutional and transposed convolutions layers in the discriminator and generator, respectively. _The discriminator is made up of strided convolution layers, batch norm layers, and LeakyReLU activations. The generator is comprised of transposed convolutions layers, batch norm layers, and ReLU activations_. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- I think "transposed convolutional" would read better than "transposed convolutions", especially next to "convolutional".
- What is the intent of italicizing the text at the end?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The intent of italicizing is to highlight the layers info. Should I remove it?
@ToucheSir I have made all the changes can you please review. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Apologies for not getting back to you on this @aditkumar72! Just some very minor changes around reference formats and I think it's good to go. I'd make them myself, but I'm not sure what citation format you used so it'd be great if you could do it :)
vision/dcgan_mnist/README.md
Outdated
|
||
## Results | ||
|
||
2000 training step |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"steps" should be plural here as well.
vision/conv_mnist/README.md
Outdated
|
||
* [Y. Lecun, L. Bottou, Y. Bengio and P. Haffner, "Gradient-based learning applied to document recognition," in Proceedings of the IEEE, vol. 86, no. 11, pp. 2278-2324, Nov. 1998, doi: 10.1109/5.726791.](http://yann.lecun.com/exdb/publis/pdf/lecun-01a.pdf) | ||
|
||
* [@book |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe that's your local markdown editor, because GitHub renders the raw bibtex. I'd recommend just using the plaintext citation like you have for the reference above.
vision/mlp_mnist/README.md
Outdated
|
||
## Reference | ||
|
||
* [@book |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same comment as above about this just rendering as bibtex.
vision/vgg_cifar10/README.md
Outdated
* [Simonyan, K. and Zisserman, A., “Very Deep Convolutional Networks for Large-Scale Image Recognition”, <i>arXiv e-prints</i>, 2015. | ||
](https://arxiv.org/pdf/1409.1556v4.pdf) | ||
|
||
* [@book |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ditto here RE the link text being raw bibtex.
@ToucheSir I have made all the needed changes can you please review. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wonderful, thanks for your patience through this!
I have added README files for cdcgan_mnist, conv_mnist, dcgan_mnist, mlp_mnist, vgg_cifar10 and updated README file of vae_mnist. I have also added
abspath
code in the training files of cdcgan_mnist, conv_mnist, dcgan_mnist, mlp_mnist, vgg_cifar10 .