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
27k
死にゆくアンチウイルスへの祈り
ntddk
55
39k
Windows Subsystem for Linux Internals
ntddk
10
3k
なぜマルウェア解析は自動化できないのか
ntddk
6
4.2k
Linear Obfuscation to Drive angr Angry
ntddk
4
840
マルウェアを機械学習する前に
ntddk
3
1.6k
Peeling Onions
ntddk
7
3.6k
仮想化技術を用いたマルウェア解析
ntddk
8
27k
An Introduction to Drawbridge(ja)
ntddk
11
3.3k
Other Decks in Technology
See All in Technology
[新卒向け研修資料] テスト文字列に「うんこ」と入れるな(2025年版)
infiniteloop_inc
13
43k
VitePress & MCPでアプリ仕様のオープン化に挑戦する
hal_spidernight
0
120
試作とデモンストレーション / Prototyping and Demonstrations
ks91
PRO
0
140
LangfuseではじめるAIアプリのLLMトレーシング
codenote
0
190
Next.jsと状態管理のプラクティス
uhyo
6
2.3k
ソフトウェアテスト 最初の一歩 〜テスト設計技法をワークで体験しながら学ぶ〜 #JaSSTTokyo / SoftwareTestingFirstStep
nihonbuson
PRO
2
190
4月15日の AZ 障害をテクサポの中の人目線で振り返ってみる
kazzpapa3
2
140
続・やっぱり余白が大切だった話
kakehashi
PRO
4
350
Global Azure2025(GitHub Copilot ハンズオン)
tomokusaba
2
810
SaaS公式MCPサーバーをリリースして得た学び
kawamataryo
5
1.4k
人間性を捧げる生成AI時代の技術選定
yo4raw
1
680
TanStack Start 技術選定の裏側 / Findy-Lunch-LT-TanStack-Start
iktakahiro
1
160
Featured
See All Featured
Scaling GitHub
holman
459
140k
Making Projects Easy
brettharned
116
6.2k
Product Roadmaps are Hard
iamctodd
PRO
53
11k
Building Adaptive Systems
keathley
41
2.5k
The Pragmatic Product Professional
lauravandoore
33
6.6k
Faster Mobile Websites
deanohume
307
31k
Typedesign – Prime Four
hannesfritz
41
2.6k
Large-scale JavaScript Application Architecture
addyosmani
512
110k
Keith and Marios Guide to Fast Websites
keithpitt
411
22k
Design and Strategy: How to Deal with People Who Don’t "Get" Design
morganepeng
129
19k
Building Better People: How to give real-time feedback that sticks.
wjessup
368
19k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
41
2.3k
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), ) • • • • • • •