Skip to content

Instantly share code, notes, and snippets.

View ramaswamym1987's full-sized avatar

RAMASWAMY MUTHUKRISHNAN ramaswamym1987

View GitHub Profile
@ramaswamym1987
ramaswamym1987 / caffe_install.md
Created May 21, 2017 14:42 — forked from FrancoisPl/caffe_install.md
Installing caffe on ubuntu 16.04 with Anaconda

Caffe Installation

Credit

Thank you to Changjiang as most of the code here comes from this tutorial and I have only added a few lines in order to get caffe working.

Caffe and Anaconda

Install Anaconda (for Python 2.7) Then clone the caffe repository somewhere:

git clone git@github.com:BVLC/caffe.git
@ramaswamym1987
ramaswamym1987 / CaffeInstallation.md
Created May 21, 2017 14:42 — forked from arundasan91/CaffeInstallation.md
Caffe Installation Tutorial for beginners

Caffe

Freshly brewed !

With the availability of huge amount of data for research and powerfull machines to run your code on, Machine Learning and Neural Networks is gaining their foot again and impacting us more than ever in our everyday lives. With huge players like Google opensourcing part of their Machine Learning systems like the TensorFlow software library for numerical computation, there are many options for someone interested in starting off with Machine Learning/Neural Nets to choose from. Caffe, a deep learning framework developed by the Berkeley Vision and Learning Center (BVLC) and its contributors, comes to the play with a fresh cup of coffee.

Installation Instructions (Ubuntu 14 Trusty)

The following section is divided in to two parts. Caffe's documentation suggest

@ramaswamym1987
ramaswamym1987 / dp1.txt
Created May 5, 2017 03:24 — forked from chakkritte/dp1.txt
Deep learning Part 1
1.Install python
https://www.python.org/downloads/release/python-352/
2.To install the CPU-only version of TensorFlow
C:\> pip install --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-0.12.1-cp35-cp35m-win_amd64.whl
3.Test your installation
$ python
-- Xception model
-- a Torch7 implementation of: https://arxiv.org/abs/1610.02357
-- E. Culurciello, October 2016
require 'nn'
local nClasses = 1000
function nn.SpatialSeparableConvolution(nInputPlane, nOutputPlane, kW, kH)
local block = nn.Sequential()
block:add(nn.SpatialConvolutionMap(nn.tables.oneToOne(nInputPlane), kW,kH, 1,1, 1,1))