HomeSort by relevance Sort by last modified time
    Searched full:overfeat (Results 1 - 6 of 6) sorted by null

  /external/tensorflow/tensorflow/contrib/slim/python/slim/nets/
overfeat_test.py 15 """Tests for slim.nets.overfeat."""
22 from tensorflow.contrib.slim.python.slim.nets import overfeat
38 logits, _ = overfeat.overfeat(inputs, num_classes)
39 self.assertEquals(logits.op.name, 'overfeat/fc8/squeezed')
49 logits, _ = overfeat.overfeat(inputs, num_classes, spatial_squeeze=False)
50 self.assertEquals(logits.op.name, 'overfeat/fc8/BiasAdd')
60 _, end_points = overfeat.overfeat(inputs, num_classes
    [all...]
overfeat.py 15 """Contains the model definition for the OverFeat network.
18 OverFeat: Integrated Recognition, Localization and Detection using
25 with slim.arg_scope(overfeat.overfeat_arg_scope()):
26 outputs, end_points = overfeat.overfeat(inputs)
28 @@overfeat
59 def overfeat(inputs, function
64 scope='overfeat'):
65 """Contains the model definition for the OverFeat network.
68 OverFeat: Integrated Recognition, Localization and Detection usin
    [all...]
BUILD 23 ":overfeat",
177 name = "overfeat",
178 srcs = ["overfeat.py"],
196 ":overfeat",
  /external/tensorflow/tensorflow/contrib/slim/
nets.py 25 @@overfeat
38 from tensorflow.contrib.slim.python.slim.nets import overfeat
BUILD 109 "//tensorflow/contrib/slim/python/slim/nets:overfeat",
  /external/tensorflow/tensorflow/python/ops/
nn_ops.py     [all...]

Completed in 528 milliseconds