Lock in $30 Savings on PRO—Offer Ends Soon! ⏳
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Neural networks on your phone
Search
Alejandro Isaza
August 02, 2016
Programming
0
47
Neural networks on your phone
Slides for technical lightning talk on neural networks running on portable devices.
Alejandro Isaza
August 02, 2016
Tweet
Share
Other Decks in Programming
See All in Programming
안드로이드 9년차 개발자, 프론트엔드 주니어로 커리어 리셋하기
maryang
1
110
20251127_ぼっちのための懇親会対策会議
kokamoto01_metaps
2
440
AIエンジニアリングのご紹介 / Introduction to AI Engineering
rkaga
8
2.8k
Full-Cycle Reactivity in Angular: SignalStore mit Signal Forms und Resources
manfredsteyer
PRO
0
140
Integrating WordPress and Symfony
alexandresalome
0
150
なあ兄弟、 余白の意味を考えてから UI実装してくれ!
ktcryomm
11
11k
Socio-Technical Evolution: Growing an Architecture and Its Organization for Fast Flow
cer
PRO
0
340
AIコーディングエージェント(Gemini)
kondai24
0
230
tsgolintはいかにしてtypescript-goの非公開APIを呼び出しているのか
syumai
7
2.2k
生成AIを利用するだけでなく、投資できる組織へ
pospome
2
340
まだ間に合う!Claude Code元年をふりかえる
nogu66
5
830
Microservices rules: What good looks like
cer
PRO
0
1.4k
Featured
See All Featured
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
37
2.6k
Practical Orchestrator
shlominoach
190
11k
Fantastic passwords and where to find them - at NoRuKo
philnash
52
3.5k
KATA
mclloyd
PRO
33
15k
Context Engineering - Making Every Token Count
addyosmani
9
510
Facilitating Awesome Meetings
lara
57
6.7k
A Modern Web Designer's Workflow
chriscoyier
698
190k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
35
3.3k
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
35
2.3k
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
162
16k
Performance Is Good for Brains [We Love Speed 2024]
tammyeverts
12
1.3k
The Pragmatic Product Professional
lauravandoore
37
7.1k
Transcript
Artificial Intelligence
Companies doing AI
[the AI revolution is] no longer a matter of if,
but when. — Tech Crunch 1 1 https://techcrunch.com/2016/07/18/why-the-top-5-tech-companies-are-dead-set-on-ai/
Neural networks
None
Neural networks on your phone
Snapchat Forevery Prisma
None
https://intune.com
None
BrainCore https://github.com/aleph7/BrainCore
InfiniteMonkeys https://github.com/craigomac/InfiniteMonkeys
None
Training a network Keras: https://github.com/fchollet/keras 2 2 https://github.com/fchollet/keras/blob/master/examples/lstm_text_generation.py
func loadNetFromFile(path: String) -> Net { guard let file =
File.open(path, mode: .ReadOnly) else { fatalError("File not found '\(path)'") } let lstm_1 = try! loadLSTMLayerFromFile(file, name: "lstm_1") let lstm_2 = try! loadLSTMLayerFromFile(file, name: "lstm_2") let denseLayer = loadDenseLayerFromFile(file) return Net.build { self.dataLayer => lstm_1 => lstm_2 => denseLayer => self.sinkLayer } }
let evaluator = try Evaluator(net: net, device: self.device) // Run
while running { evaluator.evaluate { snapshot in let char = sinkOutput() display(string: char) dataLayer.data = self.inputFromChar(char).elements } }
Alejandro Isaza https://github.com/aleph7