VGG16 Reference/Documentation

I am working through lesson 1 and the dogs cats redux notebook.

As I study the code, I was wondering if there is a reference on the web for the vgg16 functions that are used?

I looked around the wiki, forum and web, but was unable to locate a reference/documentation on the functions.

Thanks for any help!

Easiest thing to do is to look at the code itself.

In JupyterNotebook you can quickly see arguments by hitting shift tab inside the parentheses for a function. Hit it again for even more info.

function? and function?? also work (or the function help if not in Jupyter).

Most of the code from the course consists of wrappers around Keras, so looking at the code + reading Keras documentation is probably the best way to go. People have discussed specific issues about the course codebase in this forum as well.

2 Likes

Thanks @davecg!

Now that you mention the Shift + Tab feature, I am starting to recall that it was mentioned in lesson 0 or 1.

I appreciate your help!

1 Like