All Projects → PythonWorkshop → Intro To Tensorflow

PythonWorkshop / Intro To Tensorflow

Licence: other
This is an introduction to tensorflow

Projects that are alternatives of or similar to Intro To Tensorflow

Ipytracer
📊 Algorithm Visualizer for IPython/Jupyter Notebook
Stars: ✭ 138 (-0.72%)
Mutual labels:  jupyter-notebook
Image classifier
CNN image classifier implemented in Keras Notebook 🖼️.
Stars: ✭ 139 (+0%)
Mutual labels:  jupyter-notebook
Finrl Library
FinRL: Financial Reinforcement Learning Framework. Please star. 🔥
Stars: ✭ 3,037 (+2084.89%)
Mutual labels:  jupyter-notebook
99 Ml Learning Projects
A list of 99 machine learning projects for anyone interested to learn from coding and building projects
Stars: ✭ 139 (+0%)
Mutual labels:  jupyter-notebook
Python Engineer Notebooks
Stars: ✭ 139 (+0%)
Mutual labels:  jupyter-notebook
Pytorch Ppuu
Code for Prediction and Planning Under Uncertainty (PPUU)
Stars: ✭ 139 (+0%)
Mutual labels:  jupyter-notebook
Recommender live
Stars: ✭ 138 (-0.72%)
Mutual labels:  jupyter-notebook
Coco Text
COCO-Text API http://vision.cornell.edu/se3/coco-text/
Stars: ✭ 138 (-0.72%)
Mutual labels:  jupyter-notebook
Multi Task Refinenet
Multi-Task (Joint Segmentation / Depth / Surface Normas) Real-Time Light-Weight RefineNet
Stars: ✭ 139 (+0%)
Mutual labels:  jupyter-notebook
Pytorch Faster Rcnn
pytorch1.0 updated. Support cpu test and demo. (Use detectron2, it's a masterpiece)
Stars: ✭ 1,779 (+1179.86%)
Mutual labels:  jupyter-notebook
Hadith Data Sets
All Hadith With Tashkil and Without Tashkel from the Nine Books that are 62,169 Hadith.
Stars: ✭ 139 (+0%)
Mutual labels:  jupyter-notebook
Tensorflow In Practice Specialization
Tensorflow-in-Practice-Specialization
Stars: ✭ 139 (+0%)
Mutual labels:  jupyter-notebook
Python For Data Science
A blog for data analytics using data science technologies
Stars: ✭ 139 (+0%)
Mutual labels:  jupyter-notebook
Ipython Quick Ref Sheets
This is ongoing work developing quick reference sheets for IPython
Stars: ✭ 138 (-0.72%)
Mutual labels:  jupyter-notebook
Widendeep
wide and deep labs and samples
Stars: ✭ 139 (+0%)
Mutual labels:  jupyter-notebook
Imageaugmentation
Image augmentation for randomly rotating, shearing, translating and changing lighting conditions.
Stars: ✭ 138 (-0.72%)
Mutual labels:  jupyter-notebook
Usiigaci
Usiigaci: stain-free cell tracking in phase contrast microscopy enabled by supervised machine learning
Stars: ✭ 139 (+0%)
Mutual labels:  jupyter-notebook
Ipytest
Pytest in IPython notebooks.
Stars: ✭ 139 (+0%)
Mutual labels:  jupyter-notebook
Crypto Rnn
Learning the Enigma with Recurrent Neural Networks
Stars: ✭ 139 (+0%)
Mutual labels:  jupyter-notebook
Mnist draw
This is a sample project demonstrating the use of Keras (Tensorflow) for the training of a MNIST model for handwriting recognition using CoreML on iOS 11 for inference.
Stars: ✭ 139 (+0%)
Mutual labels:  jupyter-notebook

Binder

Introduction to TensorFlow

In this tutorial the steps needed to clean a dataset and prepare it for modeling using the machine learning library TensorFlow. The tutorial uses the Wine dataset from the UCI Machine Learning Repository.

Prerequisites

This tutorial includes several machine learning terms. To get a good mathematical understanding of these concepts, please read the Math Primer.

Installation Notes

There are a few packages you will need in order to run this tutorial. We recommend installing the miniconda environment, which makes the installation process quite easy. Please see the README file for this mornings session for instructions on how to install miniconda.

In order to run this tutorial, you will need the following Python packages:

  • numpy 1.11 or later
  • pandas 0.18 or later
  • matplotlib 1.5 or later
  • seaborn 0.7 or later
  • scikit-learn 0.17.1 or later
  • six 1.10.0 or later
  • jupyter
  • tensorflow 0.8.0

The first seven packages can be installed with the following command:

pip install seaborn scikit-learn jupyter

Alternatively if you are using conda you can do:

conda install seaborn scikit-learn jupyter

For TensorFlow, the installation depends on your environment. Below are installation instructions. For detailed instuctions, please see the TensorFlow Download and Setup page.

Note, skflow is now part of the TensorFlow library. Once you have installed TensorFlow, you can load skflow with the following command:

import tensorflow.contrib.learn as skflow

For detailed instructions about skflow, please read Skflow Readme.

NOTE:

What's better to use? The virtual environment or normal pip installation?

Playing With Outliers

I have added a fun interactive application using the Python visualization library called Bokeh. The app allows you to pick features from the wine data set and define an outlier threshold to explore how this affects the data. The application source code is in the playing_with_outliers directory and is called main.py. To run this application, you will need to install bokeh:

pip install bokeh

Then, to run the application, download the playing_with_outliers directory and its contents. Then, in the directory where you downloaded it, run:

bokeh serve --show playing_with_outliers

The application will open in your browser.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].