1. Select a category
In the dropdown located in top left corner, select a category between public or members only notebooks.
2. Write a short review 📝
Add a short review of the notebook:
- Can you"run all" the notebook cells at once without triggering any error?
- What can people learn from this notebook?
3. Add a link to the notebook 🔗
Add a link to the notebook you are sharing (Google Colab or GitHub are preferred)
4. Add the topics 🤖
Add the topics related (e.g. deeplearning, computervision, nlp, etc..). Remember to add a hashtag to each topic so it will be easier to find.
#example
5. Add the modules and libraries used 📚
In this section, list all the modules used in the notebook.
After you run all the imports in the notebook, you can easily get a list of all the modules used by running the code below:
import types def imports(): for name, val in globals().items(): if isinstance(val, types.ModuleType): yield val.__name__ list(imports())
Remember to add a hashtag before each module listed - like this: #guidelines #template
6. Add notebook credit 🌟
You can find the notebook owners if you click on View>Notebook info>Owners
Template: