tdeboissiere / DeepLearningImplementations

Implementation of recent Deep Learning papers
MIT License
1.81k stars 650 forks source link

Style+documentation #5

Closed IanQS closed 7 years ago

IanQS commented 7 years ago

Updated documentation for easier reading, restructured run_cifar in both densenet, and denserecnet.

Added minimal changes to deconv/vgg_deconv to allow users to specify whether or not to use randomly selected images or not (makes it easier to compare between networks, and see which parts each neuron focuses on as we go through the layers)

tdeboissiere commented 7 years ago

I have not quite settled on the documentation style. I usually prefer something that looks like:

` def f(arg): """ Desc

Args: arg1 (type) desc

Returns: ret (type) desc """ `

Other than that, changes look ok. I'll merge for now and may update the documentation style afterwards.

IanQS commented 7 years ago

No worries! Google style documentation, right?

Sorry I couldn't figure out how to get my sphinx to do it but I think I might have an idea. I'm a little busy this week but once I get that up and running (assuming you haven't done so by that point) I'll get on it