Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
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
Webの外へ飛び出せ NativePHPが切り拓くPHPの未来
takuyakatsusa
2
460
明示と暗黙 ー PHPとGoの インターフェイスの違いを知る
shimabox
2
390
AI時代のソフトウェア開発を考える(2025/07版) / Agentic Software Engineering Findy 2025-07 Edition
twada
PRO
7
310
地方に住むエンジニアの残酷な現実とキャリア論
ichimichi
5
1.5k
AWS CDKの推しポイント 〜CloudFormationと比較してみた〜
akihisaikeda
3
320
たった 1 枚の PHP ファイルで実装する MCP サーバ / MCP Server with Vanilla PHP
okashoi
1
220
0626 Findy Product Manager LT Night_高田スライド_speaker deck用
mana_takada
0
140
“いい感じ“な定量評価を求めて - Four Keysとアウトカムの間の探求 -
nealle
0
590
GraphRAGの仕組みまるわかり
tosuri13
8
520
Cursor AI Agentと伴走する アプリケーションの高速リプレイス
daisuketakeda
1
130
PicoRuby on Rails
makicamel
2
120
プロダクト志向なエンジニアがもう一歩先の価値を目指すために意識したこと
nealle
0
120
Featured
See All Featured
Distributed Sagas: A Protocol for Coordinating Microservices
caitiem20
331
22k
The Myth of the Modular Monolith - Day 2 Keynote - Rails World 2024
eileencodes
26
2.9k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
32
2.4k
Optimizing for Happiness
mojombo
379
70k
What's in a price? How to price your products and services
michaelherold
246
12k
Gamification - CAS2011
davidbonilla
81
5.3k
RailsConf 2023
tenderlove
30
1.1k
Typedesign – Prime Four
hannesfritz
42
2.7k
The Invisible Side of Design
smashingmag
300
51k
10 Git Anti Patterns You Should be Aware of
lemiorhan
PRO
657
60k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
34
3.1k
Scaling GitHub
holman
459
140k
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