mirror of
				https://github.com/gsi-upm/sitc
				synced 2025-10-30 23:18:18 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			121 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			121 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| {
 | |
|  "cells": [
 | |
|   {
 | |
|    "cell_type": "markdown",
 | |
|    "metadata": {},
 | |
|    "source": [
 | |
|     ""
 | |
|    ]
 | |
|   },
 | |
|   {
 | |
|    "cell_type": "markdown",
 | |
|    "metadata": {},
 | |
|    "source": [
 | |
|     "# Course Notes for Learning Intelligent Systems"
 | |
|    ]
 | |
|   },
 | |
|   {
 | |
|    "cell_type": "markdown",
 | |
|    "metadata": {},
 | |
|    "source": [
 | |
|     "Department of Telematic Engineering Systems, Universidad Politécnica de Madrid, ©  Carlos A. Iglesias"
 | |
|    ]
 | |
|   },
 | |
|   {
 | |
|    "cell_type": "markdown",
 | |
|    "metadata": {},
 | |
|    "source": [
 | |
|     "## [Introduction to Machine Learning](2_0_0_Intro_ML.ipynb)"
 | |
|    ]
 | |
|   },
 | |
|   {
 | |
|    "cell_type": "markdown",
 | |
|    "metadata": {},
 | |
|    "source": [
 | |
|     "# Introduction to Machine Learning\n",
 | |
|     "\n",
 | |
|     "This lecture provides a quick introduction to Machine Learning in Python using the Iris dataset as an example. In this session we will focus on applying multiclass classification algorithms.\n",
 | |
|     "\n",
 | |
|     "The main objectives of this session are:\n",
 | |
|     "\n",
 | |
|     "* Learn to use scikit-learn\n",
 | |
|     "* Learn the basic steps to apply machine learning techniques: dataset analysis, load, preprocessing, training, validation, optimization and persistence.\n",
 | |
|     "* Learn how to do a exploratory data analysis\n",
 | |
|     "* Learn how to visualise a dataset\n",
 | |
|     "* Learn how to load a bundled dataset\n",
 | |
|     "* Learn how to separate the dataset into traning and testing datasets\n",
 | |
|     "* Learn how to train a classifier\n",
 | |
|     "* Learn how to predict with a trained classifier\n",
 | |
|     "* Learn how to evaluate the predictions\n",
 | |
|     "* Learn how to optimize the configuration of a classifier\n",
 | |
|     "* Learn how to save a model\n"
 | |
|    ]
 | |
|   },
 | |
|   {
 | |
|    "cell_type": "markdown",
 | |
|    "metadata": {},
 | |
|    "source": [
 | |
|     "## References"
 | |
|    ]
 | |
|   },
 | |
|   {
 | |
|    "cell_type": "markdown",
 | |
|    "metadata": {},
 | |
|    "source": [
 | |
|     "* [Scikit-learn web page](http://scikit-learn.org/stable/)\n",
 | |
|     "* [Scikit-learn videos](http://blog.kaggle.com/author/kevin-markham/) and [notebooks](https://github.com/justmarkham/scikit-learn-videos) by Kevin Marham\n",
 | |
|     "* [Learning scikit-learn: Machine Learning in Python](http://proquest.safaribooksonline.com/book/programming/python/9781783281930/1dot-machine-learning-a-gentle-introduction/ch01s02_html), Raúl Garreta; Guillermo Moncecchi, Packt Publishing, 2013.\n",
 | |
|     "* [Python Machine Learning](http://proquest.safaribooksonline.com/book/programming/python/9781783555130), Sebastian Raschka, Packt Publishing, 2015."
 | |
|    ]
 | |
|   },
 | |
|   {
 | |
|    "cell_type": "markdown",
 | |
|    "metadata": {},
 | |
|    "source": [
 | |
|     "## LIcence\n",
 | |
|     "The notebook is freely licensed under under the [Creative Commons Attribution Share-Alike license](https://creativecommons.org/licenses/by/2.0/).  \n",
 | |
|     "\n",
 | |
|     "©  Carlos A. Iglesias, Universidad Politécnica de Madrid."
 | |
|    ]
 | |
|   }
 | |
|  ],
 | |
|  "metadata": {
 | |
|   "kernelspec": {
 | |
|    "display_name": "Python 3",
 | |
|    "language": "python",
 | |
|    "name": "python3"
 | |
|   },
 | |
|   "language_info": {
 | |
|    "codemirror_mode": {
 | |
|     "name": "ipython",
 | |
|     "version": 3
 | |
|    },
 | |
|    "file_extension": ".py",
 | |
|    "mimetype": "text/x-python",
 | |
|    "name": "python",
 | |
|    "nbconvert_exporter": "python",
 | |
|    "pygments_lexer": "ipython3",
 | |
|    "version": "3.6.7"
 | |
|   },
 | |
|   "latex_envs": {
 | |
|    "LaTeX_envs_menu_present": true,
 | |
|    "autocomplete": true,
 | |
|    "bibliofile": "biblio.bib",
 | |
|    "cite_by": "apalike",
 | |
|    "current_citInitial": 1,
 | |
|    "eqLabelWithNumbers": true,
 | |
|    "eqNumInitial": 1,
 | |
|    "hotkeys": {
 | |
|     "equation": "Ctrl-E",
 | |
|     "itemize": "Ctrl-I"
 | |
|    },
 | |
|    "labels_anchors": false,
 | |
|    "latex_user_defs": false,
 | |
|    "report_style_numbering": false,
 | |
|    "user_envs_cfg": false
 | |
|   }
 | |
|  },
 | |
|  "nbformat": 4,
 | |
|  "nbformat_minor": 1
 | |
| }
 |