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
CAPTCHAとボットの共進化
Search
Yuma Kurogome
April 26, 2016
Technology
2
1.2k
CAPTCHAとボットの共進化
http://connpass.com/event/29969/
LT資料
Yuma Kurogome
April 26, 2016
Tweet
Share
More Decks by Yuma Kurogome
See All by Yuma Kurogome
The Art of De-obfuscation
ntddk
16
28k
死にゆくアンチウイルスへの祈り
ntddk
55
39k
Windows Subsystem for Linux Internals
ntddk
10
3.1k
なぜマルウェア解析は自動化できないのか
ntddk
6
4.3k
Linear Obfuscation to Drive angr Angry
ntddk
4
890
マルウェアを機械学習する前に
ntddk
3
1.7k
Peeling Onions
ntddk
7
3.7k
仮想化技術を用いたマルウェア解析
ntddk
8
27k
An Introduction to Drawbridge(ja)
ntddk
11
3.5k
Other Decks in Technology
See All in Technology
大規模サービスにおける レガシーコードからReactへの移行
magicpod
1
110
Eight Engineering Unit 紹介資料
sansan33
PRO
1
6.9k
社内でAWS BuilderCards体験会を立ち上げ、得られた気づき / 20260225 Masaki Okuda
shift_evolve
PRO
1
160
管理者向けGitHub Enterpriseの運用Tips紹介: 人にもAIにも優しいプラットフォームづくり
yuriemori
0
100
Digitization部 紹介資料
sansan33
PRO
1
7k
どこで打鍵するのが良い? IaCの実行基盤選定について
nrinetcom
PRO
2
160
LINE Messengerの次世代ストレージ選定
lycorptech_jp
PRO
19
7.2k
Oracle Database@AWS:サービス概要のご紹介
oracle4engineer
PRO
4
1.6k
入門DBSC
ynojima
0
130
Kaggleの経験が実務にどう活きているか / kaggle_findy
sansan_randd
3
380
LLM活用の壁を超える:リクルートR&Dの戦略と打ち手
recruitengineers
PRO
1
220
EMからICへ、二周目人材としてAI全振りのプロダクト開発で見つけた武器
yug1224
3
190
Featured
See All Featured
Automating Front-end Workflow
addyosmani
1370
200k
HDC tutorial
michielstock
1
490
Fireside Chat
paigeccino
42
3.8k
The Myth of the Modular Monolith - Day 2 Keynote - Rails World 2024
eileencodes
26
3.4k
Dealing with People You Can't Stand - Big Design 2015
cassininazir
367
27k
Keith and Marios Guide to Fast Websites
keithpitt
413
23k
Between Models and Reality
mayunak
2
220
Agile Leadership in an Agile Organization
kimpetersen
PRO
0
97
Digital Projects Gone Horribly Wrong (And the UX Pros Who Still Save the Day) - Dean Schuster
uxyall
0
590
First, design no harm
axbom
PRO
2
1.1k
How to Build an AI Search Optimization Roadmap - Criteria and Steps to Take #SEOIRL
aleyda
1
1.9k
What does AI have to do with Human Rights?
axbom
PRO
1
2k
Transcript
None
• •
None
•
None
• •
None
None
None
def __init__(self, input_channel, output_channel, filter_height, filter_width, mid_units, n_units, n_label): super(CNN,
self).__init__( conv1 = L.Convolution2D(input_channel, output_channel, (filter_height, filter_width)), l1 = L.Linear(mid_units, n_units), l2 = L.Linear(n_units, n_label), ) • • • • • • •