This is a problem sheet that was given to me for the module Emerging Technologies by lecture Ian McLoughlin. The course module can be located here.
TensorFlow is a software framework for building and deploying machine learning models. Machine learning is a different approach than traditional programming. With traditional programming, we write the program that tells the computer exactly what to do to complete the task. With machine learning, we don't explicitly tell the computer how to do something. Instead we show a training data and the machine learning algorithm uses the training data that come up with its own rules to complete the task.
To install Tensorflow on your machine, follow the instructions on the TensorFlow Website for your operating system.
pip install keras
Jupyter Notebook The Jupyter Notebook is an open-source web application that allows you to create and share documents that contain live code, equations, visualizations and narrative text. Uses include: data cleaning and transformation, numerical simulation, statistical modeling, data visualization, machine learning, and much more.
Python is developed under an OSI-approved open source license, making it freely usable and distributable, even for commercial use. Python's license is administered by the Python Software Foundation.
You can simply go to Tensorflow.ipynb and my answers to the problem sheet will appear in a jupyter notebook.
You must make sure you have Jupyter Notebook downloaded and working on your machine.
These problems relate to the Python package Tensorflow. We will again use the famous iris data set. Save your work as a single Jupyter notebook file in a GitHub repository. Include any required data files, a README, and a gitignore file in the repository.
- Use Tensorflow to create a model to predict the species of Iris from a flower’s sepal width, sepal length, petal width, and petal length.
- Split the data set into a training set and a testing set. You should investigate the best way to do this, and list any online references used in your notebook. If you wish to, you can write some code to randomly separate the data on the fly.
- Use the testing set to train your model.
- Use the testing set to test your model, clearly calculating and displaying the error rate.