def test_caffe_import(self):
data, label = L.WindowData(source='/dummy/source/', batch_size=32, ntop=2,
fg_threshold=0.5, bg_threshold=0.5, fg_fraction=0.25,
context_pad=0, crop_mode='warp', cache_images=False,
root_folder='/dummy/folder/',
transform_param=dict(crop_size=227, mean_value=[104, 117, 123],
mirror=True, force_color=False,
force_gray=False))
with open(os.path.join(settings.BASE_DIR, 'media', 'test.prototxt'), 'w') as f:
f.write(str(to_proto(data, label)))
sample_file = open(os.path.join(settings.BASE_DIR, 'media', 'test.prototxt'), 'r')
response = self.client.post(reverse('caffe-import'), {'file': sample_file})
response = json.loads(response.content)
os.remove(os.path.join(settings.BASE_DIR, 'media', 'test.prototxt'))
self.assertGreaterEqual(len(response['net']['l0']['params']), 14)
self.assertEqual(response['result'], 'success')
评论列表
文章目录