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

CAPTCHAとボットの共進化

Sponsored · SiteGround - Reliable hosting with speed, security, and support you can count on.

 CAPTCHAとボットの共進化

Avatar for Yuma Kurogome

Yuma Kurogome

April 26, 2016
Tweet

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