All Projects → gavinln → Tensorflow Ipy

gavinln / Tensorflow Ipy

VM with the TensorFlow library from Google

Projects that are alternatives of or similar to Tensorflow Ipy

Deeplearner
AI精研社 超级原创 Learn Python and Deep Learning from scratch. 会用搜狗输入法 + chrome浏览器,就能学的会的 Python + 人工智能·机器学习·深度学习算法 的完整学习解决方案。
Stars: ✭ 46 (+0%)
Mutual labels:  jupyter-notebook
Tacotron2
pytorch tacotron2 https://arxiv.org/pdf/1712.05884.pdf
Stars: ✭ 46 (+0%)
Mutual labels:  jupyter-notebook
Juypter Notebooks
neural network explorations ⚡️ i know it's misspelled
Stars: ✭ 46 (+0%)
Mutual labels:  jupyter-notebook
Ssh tensorflow
This is a tensorflow re-implementation of SSH: Single Stage Headless Face Detector.
Stars: ✭ 46 (+0%)
Mutual labels:  jupyter-notebook
Tensorflow Crash Course
For those who already have some basic idea about deep learning, and preferably are familiar with PyTorch.
Stars: ✭ 46 (+0%)
Mutual labels:  jupyter-notebook
Marvin Public Engines
Marvin AI has been accepted into the Apache Foundation and is now available at https://github.com/apache/incubator-marvin
Stars: ✭ 46 (+0%)
Mutual labels:  jupyter-notebook
Motion planning
Robot path planning, mapping and exploration algorithms
Stars: ✭ 46 (+0%)
Mutual labels:  jupyter-notebook
Flashlight
Flashlight is a lightweight Python library for analyzing and solving quadrotor control problems.
Stars: ✭ 46 (+0%)
Mutual labels:  jupyter-notebook
Aidc 2018 Timeseries
Deep learning for time-series data
Stars: ✭ 46 (+0%)
Mutual labels:  jupyter-notebook
Deepdream pytorch
Stars: ✭ 46 (+0%)
Mutual labels:  jupyter-notebook
Vbyo2018
Veri Bilimi Yaz Okulu
Stars: ✭ 46 (+0%)
Mutual labels:  jupyter-notebook
Machine learning bookshelf
机器学习深度学习相关书籍、课件、代码的仓库。 Machine learning is the warehouse of books, courseware and codes.
Stars: ✭ 46 (+0%)
Mutual labels:  jupyter-notebook
Sdc System Integration
Self Driving Car Engineer Nanodegree System Integration Capstone Project
Stars: ✭ 46 (+0%)
Mutual labels:  jupyter-notebook
Openaigym
Code from "Intro to OpenAI Gym" tutorial video: https://youtu.be/8MC3y7ASoPs
Stars: ✭ 46 (+0%)
Mutual labels:  jupyter-notebook
Eegclassificationmcnn
Solution for EEG Classification via Multiscale Convolutional Net coded for NeuroHack at Yandex.
Stars: ✭ 46 (+0%)
Mutual labels:  jupyter-notebook
Computing Density Maps
Fast computing density maps for ShanghaiTech and other datasets
Stars: ✭ 46 (+0%)
Mutual labels:  jupyter-notebook
Ce9010 2018
Python notebooks and slides for CE9010: Introduction to Data Science, Semester 2 2017/18
Stars: ✭ 46 (+0%)
Mutual labels:  jupyter-notebook
Slicing Cnn
The source code for our CVPR 2016 work "Slicing Convolutional Neural Network for Crowd Video Understanding".
Stars: ✭ 46 (+0%)
Mutual labels:  jupyter-notebook
Ipds Kr
<따라 하며 배우는 데이터 과학> (2017) 소스코드
Stars: ✭ 46 (+0%)
Mutual labels:  jupyter-notebook
Variantnet
A simple neural network for calling het-/hom-variants from alignments of single molecule reads to a reference
Stars: ✭ 46 (+0%)
Mutual labels:  jupyter-notebook

tensorflow-ipy

About

This project provides a Ubuntu (14.04) Vagrant Virtual Machine (VM) with the TensorFlow library from Google and IPython (now know as Jupyter) notebooks.

Follow the Requirements section below for a one-time setup of Virtualbox, Vagrant and Git before running the commands below. These instructions should work on Windows, Mac and Linux operating systems.

Releases

The list of releases of this project with a description of the main changes are included here.

Running TensorFlow

1. Start the VM

  1. Change to the tensorflow-ipy root directory

    cd tensorflow-ipy
    
  2. Start the Virtual machine (VM)

    vagrant up
    
  3. Login to the VM

    vagrant ssh
    

2. Run your first TensorFlow command line program

First run section 1.

  1. Change to the python directory

    cd /vagrant/python
    
  2. Run the first program

    python3 first-tensorflow.py
    # to disable warnings type
    TF_CPP_MIN_LOG_LEVEL=2 python3 first-tensorflow.py
    
  3. Make sure the version printed on the first line of the output is the version you expect. The releases are documented on this page

3. Start the IPython (Jupyter) notebooks

First run section 1.

  1. Change to the notebooks directory

    cd /vagrant/notebooks
    
  2. Run the IPython notebook server

    chmod +x ipython-run.sh
    ./ipython-run.sh
    
  3. Open your browser to http://192.168.33.10:8888/ to view the notebooks

4. Get the TensorFlow source code and examples

First run section 1.

  1. Make the tensorflow directory if does not exist.

    mkdir /vagrant/tensorflow_source
    
  2. Change to the tensorflow directory (will not be checked in to git)

    cd /vagrant/tensorflow_source
    
  3. Clone the tensorflow repository

    git clone https://github.com/tensorflow/tensorflow.git
    

5. Run the Udacity TensorFlow examples

First run section 1.

  1. Change to the notebooks directory

    cd /vagrant/scripts
    
  2. Run the IPython notebook server with Udacity TensorFlow notebooks

    chmod +x ./ipy-udacity.sh
    ./ipy-udacity.sh
    
  3. Open your browser to http://192.168.33.10:8888/ to view the notebooks

6. Using Tensorboard

  1. Run Tensorboard from the command line
tensorboard --logdir=/home/ubuntu/tensorflow-logs
  1. Open a web browser to Tensorboard at http://192.168.33.10:6006/

Tensorflow links

Jupyter notebook extensions

  1. Install Jupyter notebook extensions

    jupyter contrib nbextension install --user
    
  2. Install vim extension (optional)

    cd $(jupyter --data-dir)/nbextensions
    git clone https://github.com/lambdalisue/jupyter-vim-binding vim_binding
    

Requirements

The following software is needed to get the software from github and run Vagrant. The Git environment also provides an SSH client for Windows.

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].