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
Tool Catalog Agent for Bedrock AgentCore Gateway
licux
6
2.4k
個人軟體時代
ethanhuang13
0
320
ユーザーも開発者も悩ませない TV アプリ開発 ~Compose の内部実装から学ぶフォーカス制御~
taked137
0
160
250830 IaCの選定~AWS SAMのLambdaをECSに乗り換えたときの備忘録~
east_takumi
0
390
「手軽で便利」に潜む罠。 Popover API を WCAG 2.2の視点で安全に使うには
taitotnk
0
850
ProxyによるWindow間RPC機構の構築
syumai
3
1.2k
Swift Updates - Learn Languages 2025
koher
2
470
@Environment(\.keyPath)那么好我不允许你们不知道! / atEnvironment keyPath is so good and you should know it!
lovee
0
120
Design Foundational Data Engineering Observability
sucitw
3
190
JSONataを使ってみよう Step Functionsが楽しくなる実践テクニック #devio2025
dafujii
1
530
OSS開発者という働き方
andpad
5
1.7k
Improving my own Ruby thereafter
sisshiki1969
1
160
Featured
See All Featured
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
139
34k
Exploring the Power of Turbo Streams & Action Cable | RailsConf2023
kevinliebholz
34
6k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
48
9.7k
4 Signs Your Business is Dying
shpigford
184
22k
The Cult of Friendly URLs
andyhume
79
6.6k
Navigating Team Friction
lara
189
15k
KATA
mclloyd
32
14k
Practical Orchestrator
shlominoach
190
11k
ピンチをチャンスに:未来をつくるプロダクトロードマップ #pmconf2020
aki_iinuma
126
53k
Producing Creativity
orderedlist
PRO
347
40k
Unsuck your backbone
ammeep
671
58k
RailsConf 2023
tenderlove
30
1.2k
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