Python Penang Meetup held on 14th July 2018 with following Topics :
- Small Introduction of participants 10:30 - 10:45 AM
- Python Installation on windows, Linux & Environment setup(By Abhi) 10:45 AM 11.00 AM
- Installation and setup of Anaconda (By Abhi) 11.00 AM to 11.15 AM
- Installation of packages using pip and easy_install (By Abhi) 11.15 AM to 11.30 AM
- How to use Jupyter Notebook (By Abhi) 11.30 to 12.30 PM
- Deep Learning - Hand Writing Recognition(By Lika Lee) 12.30 PM to 2.00 PM
Magic Commands to be used inside Ipython, Jupyter notebooks : %pdb Debug %prun Do a performance run %writefile Saves the contents of a cell to an external file %pycat Shows the syntax highlighted contents of an external file %who List all variables of a global scope %store Pass variables between notebooks %load Insert code from an external script %run Execute Python code %env Set environment variables
%time x = range(100) %%timeit x = range(100) max(x)
List of Documents lists: Jupyter/IPython Notebook Quick Start Guide Documentation https://media.readthedocs.org/pdf/jupyter-notebook-beginner-guide/latest/jupyter-notebook-beginner-guide.pdf
Cheatsheets for ipython https://nsls-ii.github.io/_static/ipython-cheatsheet-v1.pdf file:///C:/Users/amotex/Downloads/ipynb-cheat-sheet.pdf
Jupyter Installation Guide: http://jupyter.readthedocs.io/en/latest/install.html
Running the Notebook http://jupyter.readthedocs.io/en/latest/running.html
Pycharm Download https://www.jetbrains.com/pycharm/download/#section=windows
Anaconda Installation Guide https://conda.io/docs/user-guide/install/download.html
Another Directory Contains the Hand Recognition detection Using Deep Learning.