By amolkahat, Thu 28 April 2016, in category Pythonpune
In April Pythonpune organize "Machine Learning Workshop". This meetup is basically on machine learning algorithms on your data sets using Python and Scikit-Learn.
For this workshop following libraries require:
IPython is python interactive shell specially designed for python. It supports interactive data visualization and use of GUI toolkits.
You can install it using
$ pip install ipython
Run it using:
$ ipython
IPython helpful commands:
| Command | Description |
|---|---|
| v? | Overview of python feature. |
| \%ref | Returns reference of function. |
| help | Help for python. |
| object? | Help for object. |
| \%run | filename This command allows user to run python script in interactive shell. |
| !command args | System commands can be executed using this syntax. |
Required packages:
Ubuntu :
$ sudo apt-get install python-numpy python-scipy python-matplotlib ipython ipython-notebook python-pandas python-sympy python-nose python-scikit-learn
Fedora :
sudo dnf install numpy scipy python-matplotlib ipython python-pandas sympy python-nose python-scikit-learn
Enjoy the workshop. :)