Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cjen07/mocha_cnn
image classification with pre-trained imagenet cnn updated for julia v0.5 using mocha
https://github.com/cjen07/mocha_cnn
classification cnn julia mocha
Last synced: 20 days ago
JSON representation
image classification with pre-trained imagenet cnn updated for julia v0.5 using mocha
- Host: GitHub
- URL: https://github.com/cjen07/mocha_cnn
- Owner: cjen07
- Created: 2017-03-06T11:54:25.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-03-06T12:27:01.000Z (almost 8 years ago)
- Last Synced: 2024-10-30T00:44:43.665Z (2 months ago)
- Topics: classification, cnn, julia, mocha
- Language: Julia
- Homepage:
- Size: 93.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## mocha_cnn
image classification with pre-trained imagenet cnn updated for julia v0.5 using mocha### prerequisite
* [julia v0.5](http://julialang.org/downloads/)
* Mocha.jl, Images.jl, ImageView.jl, Gadfly.jl
```julia
Pkg.add("Mocha")
Pkg.add("Images")
Pkg.add("ImageView")
Pkg.add("Gadfly")
Pkg.test("Mocha")
```
* run `./get-model.sh`### usage
```
$ julia
julia> include("image-cnn.jl")
```### remark
* my contribution: update for julia v0.5
* original example: [link](http://nbviewer.jupyter.org/github/pluskid/Mocha.jl/blob/master/examples/ijulia/ilsvrc12/imagenet-classifier.ipynb)