Upgrade to Pro — share decks privately, control downloads, hide ads and more …

CAPTCHAとボットの共進化

Sponsored · Ship Features Fearlessly Turn features on and off without deploys. Used by thousands of Ruby developers.

 CAPTCHAとボットの共進化

Avatar for Yuma Kurogome

Yuma Kurogome

April 26, 2016

More Decks by Yuma Kurogome

Other Decks in Technology

Transcript

  1. 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), ) • • • • • • •