-
Notifications
You must be signed in to change notification settings - Fork 4
/
builtin_models_static.go
2006 lines (1673 loc) · 371 KB
/
builtin_models_static.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Code generated by go-bindata.
// sources:
// builtin_models/AlexNet.yml
// builtin_models/CIFAR_ResNet110_v1.yml
// builtin_models/CIFAR_ResNet110_v2.yml
// builtin_models/CIFAR_ResNet20_v1.yml
// builtin_models/CIFAR_ResNet20_v2.yml
// builtin_models/CIFAR_ResNet56_v1.yml
// builtin_models/CIFAR_ResNet56_v2.yml
// builtin_models/CIFAR_ResNext29_16x64d.yml
// builtin_models/CIFAR_ResNext29_32x4d.yml
// builtin_models/CIFAR_WideResNet16_10.yml
// builtin_models/CIFAR_WideResNet28_10.yml
// builtin_models/CIFAR_WideResNet40_8.yml
// builtin_models/DarkNet53.yml
// builtin_models/DenseNet121 .yml
// builtin_models/DenseNet161.yml
// builtin_models/DenseNet169.yml
// builtin_models/DenseNet201.yml
// builtin_models/Faster_RCNN_ResNet50_v1b_VOC.yml
// builtin_models/Inception_v3.yml
// builtin_models/MobileNet_0.25.yml
// builtin_models/MobileNet_0.5.yml
// builtin_models/MobileNet_0.75 .yml
// builtin_models/MobileNet_1.0 .yml
// builtin_models/MobileNet_1.0_int8 .yml
// builtin_models/MobileNet_v2_0.25.yml
// builtin_models/MobileNet_v2_0.5.yml
// builtin_models/MobileNet_v2_0.75 .yml
// builtin_models/MobileNet_v2_1.0 .yml
// builtin_models/ResNet101_v1.yml
// builtin_models/ResNet101_v1b.yml
// builtin_models/ResNet101_v1c.yml
// builtin_models/ResNet101_v1d.yml
// builtin_models/ResNet101_v2.yml
// builtin_models/ResNet152_v1.yml
// builtin_models/ResNet152_v1b.yml
// builtin_models/ResNet152_v1c.yml
// builtin_models/ResNet152_v1d.yml
// builtin_models/ResNet152_v2.yml
// builtin_models/ResNet18_v1.yml
// builtin_models/ResNet18_v1b.yml
// builtin_models/ResNet18_v2.yml
// builtin_models/ResNet34_v1.yml
// builtin_models/ResNet34_v1b.yml
// builtin_models/ResNet34_v2.yml
// builtin_models/ResNet50_v1.yml
// builtin_models/ResNet50_v1_int8.yml
// builtin_models/ResNet50_v1b.yml
// builtin_models/ResNet50_v1b_gn.yml
// builtin_models/ResNet50_v1c.yml
// builtin_models/ResNet50_v1d.yml
// builtin_models/ResNet50_v2.yml
// builtin_models/ResNext101_32x4d.yml
// builtin_models/ResNext101_64x4d_v1.yml
// builtin_models/ResNext50_32x4d.yml
// builtin_models/SENet154.yml
// builtin_models/SE_ResNext101_32x4d.yml
// builtin_models/SE_ResNext101_64x4d.yml
// builtin_models/SE_ResNext50_32x4d.yml
// builtin_models/SSD_300_VGG16_Atrous_COCO.yml
// builtin_models/SSD_300_VGG16_Atrous_VOC.yml
// builtin_models/SSD_512_MobileNet_1.0_COCO.yml
// builtin_models/SSD_512_MobileNet_1.0_VOC.yml
// builtin_models/SSD_512_ResNet101_v2_VOC.yml
// builtin_models/SSD_512_ResNet50_v1_COCO.yml
// builtin_models/SSD_512_ResNet50_v1_VOC.yml
// builtin_models/SSD_512_VGG16_Atrous_COCO.yml
// builtin_models/SSD_512_VGG16_Atrous_VOC.yml
// builtin_models/SqueezeNet_v1.0.yml
// builtin_models/SqueezeNet_v1.1.yml
// builtin_models/VGG11.yml
// builtin_models/VGG11_bn.yml
// builtin_models/VGG13.yml
// builtin_models/VGG13_bn.yml
// builtin_models/VGG16.yml
// builtin_models/VGG16_bn.yml
// builtin_models/VGG19.yml
// builtin_models/VGG19_bn.yml
// builtin_models/Xception.yml
// DO NOT EDIT!
package mxnet
import (
"bytes"
"compress/gzip"
"fmt"
"io"
"io/ioutil"
"os"
"path/filepath"
"strings"
"time"
)
func bindataRead(data, name string) ([]byte, error) {
gz, err := gzip.NewReader(strings.NewReader(data))
if err != nil {
return nil, fmt.Errorf("Read %q: %v", name, err)
}
var buf bytes.Buffer
_, err = io.Copy(&buf, gz)
clErr := gz.Close()
if err != nil {
return nil, fmt.Errorf("Read %q: %v", name, err)
}
if clErr != nil {
return nil, err
}
return buf.Bytes(), nil
}
type asset struct {
bytes []byte
info os.FileInfo
}
type bindataFileInfo struct {
name string
size int64
mode os.FileMode
modTime time.Time
}
func (fi bindataFileInfo) Name() string {
return fi.name
}
func (fi bindataFileInfo) Size() int64 {
return fi.size
}
func (fi bindataFileInfo) Mode() os.FileMode {
return fi.mode
}
func (fi bindataFileInfo) ModTime() time.Time {
return fi.modTime
}
func (fi bindataFileInfo) IsDir() bool {
return false
}
func (fi bindataFileInfo) Sys() interface{} {
return nil
}
var _alexnetYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\xdb\x8e\xdb\x36\x13\xbe\xd7\x53\x0c\xb0\x17\xfb\xff\x80\x97\xb2\x24\xdb\xeb\x15\xd0\x00\xed\x5e\xa4\x05\xda\xbd\x08\x7a\x02\x82\xc0\x18\x51\x23\x8b\x09\x45\x0a\xe4\x68\x77\x9d\xa7\x2f\x48\xca\xa7\x34\x48\xd0\x1b\x9b\xe4\x7c\x73\xe0\x37\x07\xca\xe0\x40\x35\xfc\xa8\xe9\xf5\x89\x18\x6e\x20\xec\xc1\x76\x70\xb0\x93\x83\xc1\xb6\xa4\xb3\xce\xe1\x40\x2f\xd6\x7d\xaa\x33\x80\x84\xff\xed\xef\x84\x3e\x89\xa0\xb3\x0e\xb8\xa7\x59\x05\xe0\x99\x9c\x57\xd6\xd4\x70\xfb\xe6\x87\x42\x14\x62\x79\x7b\x05\x9f\xc5\x20\xad\x61\x87\xca\x70\x76\x52\x28\xc4\x12\x6e\x4e\x00\x65\x3a\xeb\x06\xe4\xb4\x06\x4f\x03\x1a\x56\xf2\x24\x4f\xd2\x2c\xd8\x41\x65\xc8\xd5\x70\x03\xa7\x8d\x87\xc9\x53\x0b\x6c\x61\x24\x17\x90\x29\x3c\xa0\x67\xd4\x53\xb4\x99\x01\xe0\xd0\x6e\x56\xe1\x6a\x00\xfb\x71\xaa\xc1\xa1\x1a\x9d\xfd\x48\x92\x73\x89\x6e\xd0\x77\x12\xbb\x8e\xea\x08\xbb\x93\xe3\x14\x91\xf2\xbb\xc8\x7d\x44\x8e\xa3\xdc\xac\x34\xd5\xdf\x55\x9a\x81\xb3\xda\xb7\x43\xb9\xc4\xb6\xe4\xa5\x53\x23\x47\xea\xde\x64\x30\xa7\xe6\x97\x01\xf7\x04\x8f\x1a\xbd\x57\x9d\x92\x89\xbf\x78\xf9\x05\xbc\xf4\x4a\xf6\xa0\x3c\x44\xe6\xa9\x05\x6b\x62\xea\xa2\x4e\x50\x6e\x91\xd1\x13\x8b\x0c\xe0\x0f\x4f\xa7\xe2\xe8\x9c\x1d\xe0\xad\x9e\xac\x79\xfc\x73\x26\xf2\xb3\xb5\x22\x73\xd4\x91\x23\x23\xc9\x07\xf2\xcf\xbb\xc8\x3b\x8e\x21\x0d\x39\xbc\x50\xe3\x15\x53\x58\x12\x4b\x21\x20\x05\xde\x28\xb3\xbf\xaa\x9b\x3b\xe8\x99\x47\x5f\xe7\xf9\x3e\x78\xba\x93\xcf\x62\x78\x35\xc4\x42\xd9\x3c\x62\x76\x9f\xad\xcd\xe5\xd5\xc5\x44\xcf\xc3\x17\xba\x8a\xfb\xa9\x11\xd2\x0e\x79\x3b\x68\x79\xb2\x95\x37\xda\x36\xf9\x80\x9e\xc9\xe5\x89\x38\xff\x85\xb1\x5c\x05\x1a\x0c\x71\xfe\x4c\x4e\x75\x87\xdd\xe8\x68\x26\x4a\x8c\x87\x4c\x2b\x49\xc6\x53\x0d\x93\x71\xe4\xd9\x29\xc9\xd4\xc2\x0d\xcc\xe7\xa1\x75\xce\xd7\x51\x66\x9c\x38\xb2\x92\xe8\x4a\xfb\x18\x29\x1f\x46\xaa\x21\xfa\x0a\x8d\xa1\x9c\xe7\x24\x0e\x50\xd4\x8a\x0f\xb1\x0c\xae\xd2\x1b\x0c\x27\xcc\x51\xef\x42\x7c\xf4\x7c\x61\x2a\x5a\x18\x31\x34\x1d\x93\xf3\xa9\x08\x01\x48\xd3\x40\x86\x77\x29\x84\x4e\x5b\xe4\xaa\x9c\x65\x51\x6f\xa7\xf1\x10\x3a\x29\xd4\xc1\x7c\xae\xf1\x60\x27\xae\xe1\xf6\xf1\xe7\xbf\x6e\xe7\x33\x69\xb5\x75\xbb\x70\xb3\x1a\x6e\xdf\xbd\xfd\xe9\x78\xde\xaa\x81\x4c\x68\x4e\x5f\xc3\xfb\x6a\x01\x65\xb9\x8a\x3f\x1f\x66\xf9\x40\x68\x6a\x78\x5f\x94\x95\xd8\xdc\xaf\x17\x50\x14\x1b\x51\x6e\x17\x50\x2c\x2b\xb1\xae\x8e\x28\x2f\x51\x53\x0d\xef\xd7\x5b\x51\x3d\xac\x17\xb0\xbe\x17\x45\x19\xff\xaa\xfb\xf5\x87\xcc\x4e\x3c\x4e\x1c\xae\x94\xae\x71\x9d\x44\xb8\x89\x5c\x04\xd1\x91\x97\xa4\x90\x7d\x85\xd2\x24\x01\x8d\x0d\x69\xb8\x01\xfc\x1a\xab\x33\xe6\x44\x66\x76\x45\x6c\x70\x17\x5c\x9d\x8f\xb2\x6f\x13\x3d\x3a\xdb\x60\xa3\xb4\x62\x45\x7e\xc7\x0e\x8d\x0f\xe3\xa9\x06\x6f\x3b\x1e\xf0\x35\x18\x8c\x87\xa1\xe5\x2e\xfd\x5f\xea\x7d\xc5\xd2\x9c\xb8\x30\x40\x95\x69\xe9\xf5\x18\xfe\x15\x0a\x22\x2a\x4c\xd3\xb3\xe5\x64\xac\x23\xe4\xc9\x91\xdf\x4d\x4e\xd7\xb1\x99\xea\x3c\xf7\x95\xc0\x01\x3f\x5b\x83\x2f\x3e\x76\x94\x67\xeb\x48\xc4\x81\x24\xac\xdb\xe7\xfe\x60\x3c\xb1\x3f\x37\x4e\x3a\x10\xfc\xca\xd7\x56\x65\x4f\xf2\x93\x9f\x86\x1a\x56\x6d\x59\xad\x9a\xf5\xb6\xaa\x50\xe2\x6a\xf5\x50\x6e\x97\x9b\x35\x16\xdb\x65\xdb\x54\xcb\x62\x83\x59\xec\x97\xc0\xab\x1f\x49\xaa\x2e\x44\x9d\x5a\x68\xef\x70\xec\x01\x4d\x0b\x2f\xa4\xf6\x3d\x7b\xf0\x76\x72\x32\xb2\xd1\xa0\xa7\xff\x16\x7a\xb4\xe9\xf3\x38\x61\xd2\x90\x90\xcf\x39\x6a\x0a\xfb\x0c\x92\xb3\xdd\x88\xdc\xd7\xc9\xfd\x9d\x3f\x0c\x8d\xd5\xe2\xa3\x8f\x4f\xc7\x1c\xc2\x15\x62\xb9\x5c\x2e\x45\x2c\x84\x10\x92\xf2\x3b\x74\xb2\x57\xcf\xf3\x13\xd0\xa1\xf6\xa1\x71\x55\x07\x9e\x78\x11\x32\x90\xd2\x70\x8c\x3d\xcc\x65\x84\xb0\x60\x0b\x68\x60\xd6\x8e\xca\xa9\xa8\xcf\x41\x5d\xd2\x90\x0e\xa2\xb9\x96\x8c\x65\x0a\xeb\x59\xab\x53\x9a\xe2\xc3\xed\x8f\xf5\xf0\x6f\x16\x5f\x14\xf7\x73\x45\x9c\x5d\x26\x57\x17\x69\xc3\xa6\x5d\xdf\x93\xdc\x6e\x37\x55\xd7\x55\x54\x51\xf9\x40\xb2\x5d\x11\xb6\xab\xaa\x2d\xba\x0b\x4a\xce\x4a\x0f\xcb\x4d\x48\x76\x89\x9b\xa6\x58\x35\xd4\xa2\x2c\x5b\x29\x65\x83\xdb\xe2\x7e\xbb\x2e\x1f\x32\x64\x76\xaa\x99\x38\xbd\x1f\xf4\xca\x0e\xe7\x64\x9f\x25\x19\xc0\x27\x65\xda\x1a\x1e\x9f\x9e\x66\x1e\xc2\x3e\xdc\xc7\xd0\xe4\x50\x83\x21\x8e\x5f\x16\xff\x7b\x7c\x7a\x5a\xc0\xbb\xf0\x23\x84\xf8\x7f\x18\x10\x61\x7a\x2b\xb3\xdf\xcd\xef\x5a\x7d\x7e\xe9\x6e\x8e\x6f\xdd\xe9\x43\x21\x7e\xc7\xcc\x0a\x19\xc0\x80\x46\x75\xe4\x79\x87\x13\xf7\xd6\xd5\xf0\xd8\x93\xd9\xc3\xaf\x2a\x03\xf8\xdd\x8e\x45\x0d\xeb\x95\x78\x28\xd3\x6e\x5d\xc3\xfd\x56\x2c\xab\xec\x9f\x00\x00\x00\xff\xff\xba\xd3\x97\x85\x55\x09\x00\x00"
func alexnetYmlBytes() ([]byte, error) {
return bindataRead(
_alexnetYml,
"AlexNet.yml",
)
}
func alexnetYml() (*asset, error) {
bytes, err := alexnetYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "AlexNet.yml", size: 2389, mode: os.FileMode(436), modTime: time.Unix(1561403340, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _cifar_resnet110_v1Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x59\x8b\xdb\xc8\x13\x7f\xd7\xa7\x28\xf0\xc3\xfc\xff\xe0\x69\x49\x96\x3d\x99\x08\x36\xb0\x6b\xd8\x6c\x60\x77\x1e\x86\xbd\x20\x04\x51\x6e\x95\xac\x4e\xa4\x6e\xd1\x5d\x9a\x19\xe7\xd3\x2f\x7d\xf8\x62\x87\x84\x7d\xb1\xbb\xab\x7e\x75\x1f\x2d\x8d\x23\xd5\xb0\xfd\xf0\xf3\x8f\x8f\xcd\x23\xb9\x07\xe2\xb2\x2c\x9a\xa7\x12\x16\xe0\x59\x60\x3a\x38\x98\xd9\xc2\x68\x5a\x1a\xb2\xce\xe2\x48\xcf\xc6\x7e\xa9\x33\x80\x28\xfa\xdb\xdf\x0f\xc4\xb0\x80\x13\x0b\x3a\x63\x81\x7b\x4a\x22\x00\x4f\x64\x9d\x32\xba\x86\x9b\x77\x3f\x94\xa2\x14\xc5\xcd\x15\x3c\xb1\x41\x1a\xcd\x16\x95\xe6\xec\x24\x50\x8a\x02\x16\x27\x80\xd2\x9d\xb1\x23\x72\x3c\x83\xa3\x11\x35\x2b\x79\xe2\x47\x6e\xe6\xf5\xa0\xd2\x64\x6b\x58\xc0\xe9\xe2\x60\x76\xd4\x02\x1b\x98\xc8\x7a\x64\x74\x0f\xe8\x09\x87\x39\xe8\xcc\x00\x70\x6c\xef\xd6\x3e\x34\x80\xfd\x34\xd7\x60\x51\x4d\xd6\x7c\x26\xc9\xb9\x44\x3b\x0e\xb7\x12\xbb\x8e\xea\x00\xbb\x95\xd3\x1c\x90\xf2\xbb\xc8\x7d\x40\x4e\x93\xbc\x5b\x0f\x54\x7f\x57\x28\x01\x93\xd8\xb7\x5d\xb9\xc4\xb6\xe4\xa4\x55\x13\x87\xd4\xbd\xcb\x20\x95\xe6\xc3\x88\x7b\x82\xed\x80\xce\xa9\x4e\xc9\x98\xbf\x10\xfc\x12\x9e\x7b\x25\x7b\x50\x0e\x42\xe6\xa9\x05\xa3\x43\xe9\x82\x8c\x17\x6e\x91\xd1\x11\x8b\x0c\xe0\x0f\x47\xaf\xf5\x49\x67\xcd\x08\xef\x87\xd9\xe8\xed\x9f\x29\xa7\x5f\x8d\x11\x99\xa5\x8e\x2c\x69\x49\xce\xd7\xe1\x7c\x0b\x25\xc0\xc9\x57\x24\x87\x67\xda\x39\xc5\xe4\x8f\xc4\x52\x08\x88\x31\xec\x94\xde\x5f\xb5\xd0\x2d\xf4\xcc\x93\xab\xf3\x7c\xef\x2d\xdd\xca\x27\x31\xbe\x68\x62\xa1\x4c\x1e\x30\xcd\x57\x63\x72\x79\x15\xa3\xe8\x79\x1c\xb2\x41\x49\xd2\x8e\x6a\x98\xb5\x25\xc7\x56\x49\xa6\x16\x16\x90\xe8\xbe\xbf\xcf\x86\x94\x9e\x66\x0e\xfe\xc6\x40\xe2\x3d\xd8\xe7\xc3\x44\x35\xa8\x90\xcb\x05\x74\xca\x3a\x8e\x6c\x0f\xc5\x41\xf1\x21\xd4\xea\xaa\x06\x5e\x71\xc4\x1c\xe5\x2e\xd8\x47\xcb\x17\xaa\x82\x86\x09\xfd\x64\x30\x59\x17\x3b\x05\x80\x06\x1a\x49\x73\x13\x5d\xe8\x06\x83\x5c\xad\x12\x2f\xc8\x35\x03\x1e\x7c\xbb\xfb\x62\x25\xfa\x80\x07\x33\x73\x0d\x37\xdb\x5f\xfe\xba\x49\x34\x69\x06\x63\x1b\x1f\x59\x0d\x37\x8f\xef\x7f\x3a\xd2\x5b\x35\x92\xf6\x13\xe4\x6a\xf8\x58\x2d\x61\xb5\x5a\x87\x9f\x4f\x89\x3f\x12\xea\x1a\x3e\x96\xab\x4a\xdc\xbd\xd9\x2c\xa1\x2c\xef\xc4\xea\x7e\x09\x65\x51\x89\x4d\x75\x44\x39\x89\x03\xd5\xf0\x71\x73\x2f\xaa\xb7\x9b\x25\x6c\xde\x88\x72\x15\xfe\xaa\x37\x9b\x4f\x99\x99\x79\x9a\xd9\x87\x14\xc3\xb8\xae\x15\x2c\x42\x2e\x3c\xeb\x98\x97\x28\x90\xbd\x92\xd2\xc8\x81\x01\x77\x34\xc0\x02\xf0\xb5\xac\x26\xcc\x29\x99\xd9\x55\x62\xbd\x39\x6f\xea\x4c\xca\xbe\x9d\xe8\xc9\x9a\x1d\xee\xd4\xa0\x58\x91\x6b\xd8\xa2\x76\x7e\x87\xd4\xe0\x4c\xc7\x23\xbe\x78\x85\x81\xe8\x87\xe1\xd2\xfe\xa5\xdc\x2b\x9a\x52\xe1\xfc\x96\x53\xba\xa5\x97\xa3\xfb\x57\x28\x08\x28\xbf\xf2\xce\x9a\xa3\xb2\x8e\x90\x67\x4b\xae\x99\xed\x50\x87\x11\xa9\xf3\xdc\x55\x02\x47\xfc\x6a\x34\x3e\x3b\x21\xcd\x98\x3b\x36\x96\x44\xd8\x1a\xc2\xd8\x7d\xee\x0e\xda\x11\xbb\x3c\x34\xa5\x26\x4e\x04\xc1\x2f\x7c\xad\x55\xf6\x24\xbf\xb8\x79\xac\x61\xdd\xae\xaa\xf5\x6e\x73\x5f\x55\x28\x71\xbd\x7e\xbb\xba\x2f\xee\x36\x58\xde\x17\xed\xae\x2a\xca\x3b\xcc\xc2\xbc\xf8\xbc\xba\x89\xa4\xea\xbc\xd7\x71\x84\xf6\x16\xa7\x1e\x50\xb7\xf0\x4c\x6a\xdf\xb3\x03\x67\x66\x2b\x43\x36\x76\xe8\xe8\xbf\xb9\x1e\x74\xba\x3c\xcc\x7e\x5c\x05\xf2\x29\x97\xaa\x43\xdb\x58\x72\xfa\xb8\x94\x32\x88\x76\x9b\x09\xb9\xaf\xa3\x27\xb7\xee\x30\xee\xcc\x20\x3e\xbb\xb0\xea\x93\x37\x57\x88\xa2\x28\x0a\x11\x7a\xc2\x7b\xa7\x5c\x83\x56\xf6\xea\x29\xad\xec\x0e\x07\xe7\x67\x58\x75\xe0\x88\x97\xbe\x18\xb1\x22\xc7\x30\xfc\x1e\x45\xf0\x07\x36\x80\x1a\x92\x74\x10\x8e\xfd\x7d\x76\xea\x32\x23\x91\x10\xd4\xb5\xa4\x0d\x93\x3f\x27\xa9\x4e\x0d\x14\x1e\x5a\x77\x6c\x8d\x7f\x27\xf4\x59\x71\x9f\x9a\xe3\x6c\x32\x9a\x3a\x55\xf0\x22\xe2\x33\x0d\x99\xad\xda\xcd\x1c\x57\x34\xbd\xb0\xc5\x54\xb5\x33\x27\x03\xf8\xa2\x74\x5b\xc3\xf6\xe1\x21\x45\xe1\xef\xde\x1b\x4d\xb3\xc5\x01\x34\x71\x78\xc7\xff\xb7\x7d\x78\x58\xc2\xa3\xff\x11\x42\xfc\xdf\x4f\xba\x7f\x54\x94\xde\x37\xe9\x15\x49\xdf\x19\xa5\x6f\xf7\x44\x3a\xbd\xca\xe1\xa3\x21\xe1\x33\x80\x11\xb5\xea\xc8\x71\x83\x33\xf7\xc6\xd6\xb0\xed\x49\xef\xe1\x57\x95\x01\xfc\x6e\xa6\xb2\x86\xb7\x95\x28\xb2\x7f\x02\x00\x00\xff\xff\x22\x0a\xe0\x67\xbe\x08\x00\x00"
func cifar_resnet110_v1YmlBytes() ([]byte, error) {
return bindataRead(
_cifar_resnet110_v1Yml,
"CIFAR_ResNet110_v1.yml",
)
}
func cifar_resnet110_v1Yml() (*asset, error) {
bytes, err := cifar_resnet110_v1YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "CIFAR_ResNet110_v1.yml", size: 2238, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _cifar_resnet110_v2Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x59\x8b\xdb\xc8\x13\x7f\xd7\xa7\x28\xf0\xc3\xfc\xff\xe0\x69\x59\x96\x3d\x99\x08\x36\xb0\x6b\xd8\x6c\x60\x77\x1e\x86\xbd\x20\x04\x51\x6e\x95\xac\x4e\xa4\x6e\xd1\x5d\xb2\xc7\xf9\xf4\x4b\x1f\xbe\xd8\x21\x61\x5f\xec\xee\xaa\x5f\xdd\x47\x4b\xe3\x40\x15\x6c\x3e\xfc\xfc\xe3\x73\xfd\x4c\xee\x89\xb8\x28\x16\xf5\x7e\x09\x33\xf0\x2c\x30\x2d\x1c\xcd\x64\x61\x30\x0d\xf5\x59\x6b\x71\xa0\x83\xb1\x5f\xaa\x0c\x20\x8a\xfe\xf6\xf7\x13\x31\xcc\xe0\xcc\x82\xd6\x58\xe0\x8e\x92\x08\xc0\x9e\xac\x53\x46\x57\x70\xf7\xee\x87\x42\x14\x62\x71\x77\x03\x4f\x6c\x90\x46\xb3\x45\xa5\x39\x3b\x0b\x14\x62\x01\xb3\x33\x40\xe9\xd6\xd8\x01\x39\x9e\xc1\xd1\x80\x9a\x95\x3c\xf3\x23\x37\xf3\x7a\x50\x69\xb2\x15\xcc\xe0\x7c\x71\x30\x39\x6a\x80\x0d\x8c\x64\x3d\x32\xba\x07\xb4\xc7\x7e\x0a\x3a\x33\x00\x1c\x9a\x87\x95\x0f\x0d\x60\x37\x4e\x15\x58\x54\xa3\x35\x9f\x49\x72\x2e\xd1\x0e\xfd\xbd\xc4\xb6\xa5\x2a\xc0\xee\xe5\x38\x05\xa4\xfc\x2e\x72\x17\x90\xe3\x28\x1f\x56\x3d\x55\xdf\x15\x4a\xc0\x24\xf6\x6d\x57\xae\xb1\x0d\x39\x69\xd5\xc8\x21\x75\xef\x32\x48\xa5\xf9\x30\xe0\x8e\x60\xd3\xa3\x73\xaa\x55\x32\xe6\x2f\x04\x3f\x87\x43\xa7\x64\x07\xca\x41\xc8\x3c\x35\x60\x74\x28\x5d\x90\xf1\xc2\x0d\x32\x3a\x62\x91\x01\xfc\xe1\xe8\xb5\x3e\x69\xad\x19\xe0\x7d\x3f\x19\xbd\xf9\x33\xe5\xf4\xab\x31\x22\xb3\xd4\x92\x25\x2d\xc9\xf9\x3a\x5c\x6e\xa1\x04\x38\xfa\x8a\xe4\x70\xa0\xad\x53\x4c\xfe\x48\x2c\x85\x80\x18\xc3\x56\xe9\xdd\x4d\x0b\xdd\x43\xc7\x3c\xba\x2a\xcf\x77\xde\xd2\xbd\xdc\x8b\xe1\x45\x13\x0b\x65\xf2\x80\xa9\xbf\x1a\x93\xcb\x9b\x18\x45\xc7\x43\x9f\xf5\x4a\x92\x76\x54\xc1\xa4\x2d\x39\xb6\x4a\x32\x35\x30\x83\x44\xf7\xfd\x7d\x31\xa4\xf4\x38\x71\xf0\x37\x06\x12\xef\xc1\x3e\x1f\x47\xaa\x40\x85\x5c\xce\xa0\x55\xd6\x71\x64\x7b\x28\xf6\x8a\x8f\xa1\x56\x37\x35\xf0\x8a\x23\xe6\x24\x77\xc5\x3e\x59\xbe\x52\x15\x34\x8c\xe8\x27\x83\xc9\xba\xd8\x29\x00\xd4\xd3\x40\x9a\xeb\xe8\x42\xdb\x1b\xe4\x72\x99\x78\x41\xae\xee\xf1\xe8\xdb\xdd\x17\x2b\xd1\x7b\x3c\x9a\x89\x2b\xb8\xdb\xfc\xf2\xd7\x5d\xa2\x49\xd3\x1b\x5b\xfb\xc8\x2a\xb8\x7b\x7e\xff\xd3\x89\xde\xa8\x81\xb4\x9f\x20\x57\xc1\xc7\x72\x0e\xcb\xe5\x2a\xfc\x7c\x4a\xfc\x81\x50\x57\xf0\xb1\x58\x96\xe2\xe1\xcd\x7a\x0e\x45\xf1\x20\x96\x8f\x73\x28\x16\xa5\x58\x97\x27\x94\x93\xd8\x53\x05\x1f\xd7\x8f\xa2\x7c\xbb\x9e\xc3\xfa\x8d\x28\x96\xe1\xaf\x7c\xb3\xfe\x94\x99\x89\xc7\x89\x7d\x48\x31\x8c\xdb\x5a\xc1\x2c\xe4\xc2\xb3\x4e\x79\x89\x02\xd9\x2b\x29\x8d\x1c\xe8\x71\x4b\x3d\xcc\x00\x5f\xcb\x6a\xc2\x9c\x93\x99\xdd\x24\xd6\x9b\xf3\xa6\x2e\xa4\xec\xdb\x89\x1e\xad\xd9\xe2\x56\xf5\x8a\x15\xb9\x9a\x2d\x6a\xe7\x77\x48\x05\xce\xb4\x3c\xe0\x8b\x57\x18\x88\x7e\x18\xae\xed\x5f\xcb\xbd\xa2\x29\x15\xce\x6f\x39\xa5\x1b\x7a\x39\xb9\x7f\x83\x82\x80\xf2\x2b\xef\xa2\x39\x2a\x6b\x09\x79\xb2\xe4\xea\xc9\xf6\x55\x18\x91\x2a\xcf\x5d\x29\x70\xc0\xaf\x46\xe3\xc1\x09\x69\x86\xdc\xb1\xb1\x24\xc2\xd6\x10\xc6\xee\x72\x77\xd4\x8e\xd8\xe5\xa1\x29\x35\x71\x22\x08\x7e\xe1\x5b\xad\xb2\x23\xf9\xc5\x4d\x43\x05\xab\x66\x59\xae\xb6\xeb\xc7\xb2\x44\x89\xab\xd5\xdb\xe5\xe3\xe2\x61\x8d\xc5\xe3\xa2\xd9\x96\x8b\xe2\x01\xb3\x30\x2f\x3e\xaf\x6e\x24\xa9\x5a\xef\x75\x1c\xa1\x9d\xc5\xb1\x03\xd4\x0d\x1c\x48\xed\x3a\x76\xe0\xcc\x64\x65\xc8\xc6\x16\x1d\xfd\x37\xd7\x83\x4e\x97\x87\xd9\x8f\xab\x40\xee\x73\xa9\x5a\xb4\xb5\x25\xa7\x4f\x4b\x29\x83\x68\xb7\x1e\x91\xbb\x2a\x7a\x72\xef\x8e\xc3\xd6\xf4\xe2\xb3\x0b\xab\x3e\x79\x73\x83\x58\x2c\x16\x0b\x11\x7a\xc2\x7b\xa7\x5c\x8d\x56\x76\x6a\x9f\x56\x76\x8b\xbd\xf3\x33\xac\x5a\x70\xc4\x73\x5f\x8c\x58\x91\x53\x18\x7e\x8f\x22\xf8\x03\x1b\x40\x0d\x49\x3a\x08\xc7\xfe\xbe\x38\x75\x9d\x91\x48\x08\xea\x1a\xd2\x86\xc9\x9f\x93\x54\xab\x7a\x0a\x0f\xad\x3b\xb5\xc6\xbf\x13\x7a\x50\xdc\xa5\xe6\xb8\x98\x8c\xa6\xce\x15\xbc\x8a\xf8\x42\x43\x66\xab\xb6\x13\xc7\x15\x4d\x2f\x6c\x31\x55\xed\xc2\xc9\x00\xbe\x28\xdd\x54\xb0\x79\x7a\x4a\x51\xf8\xbb\xf7\x46\xd3\x64\xb1\x07\x4d\x1c\xde\xf1\xff\x6d\x9e\x9e\xe6\xf0\xec\x7f\x84\x10\xff\xf7\x93\xee\x1f\x15\xa5\x77\x75\x7a\x45\xd2\x77\x46\xe1\xdb\x3d\x91\xce\xaf\x72\xf8\x68\x48\xf8\x0c\x60\x40\xad\x5a\x72\x5c\xe3\xc4\x9d\xb1\x15\x6c\x3a\xd2\x3b\xf8\x55\x65\x00\xbf\x9b\xb1\xa8\xe0\xed\x4a\x94\xd9\x3f\x01\x00\x00\xff\xff\x11\x3c\x8a\x54\xbe\x08\x00\x00"
func cifar_resnet110_v2YmlBytes() ([]byte, error) {
return bindataRead(
_cifar_resnet110_v2Yml,
"CIFAR_ResNet110_v2.yml",
)
}
func cifar_resnet110_v2Yml() (*asset, error) {
bytes, err := cifar_resnet110_v2YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "CIFAR_ResNet110_v2.yml", size: 2238, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _cifar_resnet20_v1Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x59\x8b\xdb\xc8\x13\x7f\xd7\xa7\x28\xf0\xc3\xfc\xff\xe0\x69\x59\x96\x3d\x99\x08\x36\xb0\x6b\xd8\x6c\x60\x77\x1e\x86\xbd\x20\x04\x51\x6e\x95\xac\x4e\xa4\x6e\xd1\x5d\xb2\xc7\xf9\xf4\x4b\x1f\xbe\xd8\x21\x61\x5f\xec\xee\xaa\x5f\xdd\x47\x4b\xe3\x40\x15\x6c\x3e\xfc\xfc\xe3\x73\xfd\x4c\xee\x89\x78\xb9\xa8\xf7\x05\xcc\xc0\x73\xc0\xb4\x70\x34\x93\x85\xc1\x34\xd4\x67\xad\xc5\x81\x0e\xc6\x7e\xa9\x32\x80\x28\xf9\xdb\xdf\x4f\xc4\x30\x83\x33\x0b\x5a\x63\x81\x3b\x4a\x22\x00\x7b\xb2\x4e\x19\x5d\xc1\xdd\xbb\x1f\x0a\x51\x88\xc5\xdd\x0d\x3c\xb1\x41\x1a\xcd\x16\x95\xe6\xec\x2c\x50\x88\x05\xcc\xce\x00\xa5\x5b\x63\x07\xe4\x78\x06\x47\x03\x6a\x56\xf2\xcc\x8f\xdc\xcc\xeb\x41\xa5\xc9\x56\x30\x83\xf3\xc5\xc1\xe4\xa8\x01\x36\x30\x92\xf5\xc8\xe8\x1e\xd0\x1e\xfb\x29\xe8\xcc\x00\x70\x68\x1e\x56\x3e\x34\x80\xdd\x38\x55\x60\x51\x8d\xd6\x7c\x26\xc9\xb9\x44\x3b\xf4\xf7\x12\xdb\x96\xaa\x00\xbb\x97\xe3\x14\x90\xf2\xbb\xc8\x5d\x40\x8e\xa3\x7c\x58\xf5\x54\x7d\x57\x28\x01\x93\xd8\xb7\x5d\xb9\xc6\x36\xe4\xa4\x55\x23\x87\xd4\xbd\xcb\x20\x95\xe6\xc3\x80\x3b\x82\x4d\x8f\xce\xa9\x56\xc9\x98\xbf\x10\xfc\x1c\x0e\x9d\x92\x1d\x28\x07\x21\xf3\xd4\x80\xd1\xa1\x74\x41\xc6\x0b\x37\xc8\xe8\x88\x45\x06\xf0\x87\xa3\x57\xda\xa4\xb5\x66\x80\xf7\xfd\x64\xf4\xe6\xcf\x94\xd2\xaf\xc6\x88\xcc\x52\x4b\x96\xb4\x24\xe7\xcb\x70\xb9\x85\x0a\xe0\xe8\x0b\x92\xc3\x81\xb6\x4e\x31\xf9\x23\xb1\x14\x02\x62\x08\x5b\xa5\x77\x37\x1d\x74\x0f\x1d\xf3\xe8\xaa\x3c\xdf\x79\x4b\xf7\x72\x2f\x86\x17\x4d\x2c\x94\xc9\x03\xa6\xfe\x6a\x4c\x2e\x6f\x42\x14\x1d\x0f\x7d\xd6\x2b\x49\xda\x51\x05\x93\xb6\xe4\xd8\x2a\xc9\xd4\xc0\x0c\x12\xdd\xb7\xf7\xc5\x90\xd2\xe3\xc4\xc1\xdf\x18\x48\xbc\x07\xfb\x7c\x1c\xa9\x02\x15\x52\x39\x83\x56\x59\xc7\x91\xed\xa1\xd8\x2b\x3e\x86\x52\xdd\x94\xc0\x2b\x8e\x98\x93\xdc\x15\xfb\x64\xf9\x4a\x55\xd0\x30\xa2\x1f\x0c\x26\xeb\x62\xa3\x00\x50\x4f\x03\x69\xae\xa3\x0b\x6d\x6f\x90\xcb\x65\xe2\x05\xb9\xba\xc7\xa3\xef\x76\x5f\xab\x44\xef\xf1\x68\x26\xae\xe0\x6e\xf3\xcb\x5f\x77\x89\x26\x4d\x6f\x6c\xed\x23\xab\xe0\xee\xf9\xfd\x4f\x27\x7a\xa3\x06\xd2\x7e\x80\x5c\x05\x1f\xcb\x39\x2c\x97\xab\xf0\xf3\x29\xf1\x07\x42\x5d\xc1\xc7\x62\x59\x8a\x87\x37\xeb\x39\x14\xc5\x83\x58\x3e\xce\xa1\x58\x94\x62\x5d\x9e\x50\x4e\x62\x4f\x15\x7c\x5c\x3f\x8a\xf2\xed\x7a\x0e\xeb\x37\xa2\x58\x86\xbf\xf2\xcd\xfa\x53\x66\x26\x1e\x27\xf6\x21\xc5\x30\x6e\x6b\x05\xb3\x90\x0b\xcf\x3a\xe5\x25\x0a\x64\xaf\xa4\x34\x72\xa0\xc7\x2d\xf5\x30\x03\x7c\x2d\xab\x09\x73\x4e\x66\x76\x93\x58\x6f\xce\x9b\xba\x90\xb2\x6f\x27\x7a\xb4\x66\x8b\x5b\xd5\x2b\x56\xe4\x6a\xb6\xa8\x9d\x5f\x21\x15\x38\xd3\xf2\x80\x2f\x5e\x61\x20\xfa\x61\xb8\xb6\x7f\x2d\xf7\x8a\xa6\x54\x38\xbf\xe4\x94\x6e\xe8\xe5\xe4\xfe\x0d\x0a\x02\xca\x6f\xbc\x8b\xe6\xa8\xac\x25\xe4\xc9\x92\xab\x27\xdb\x57\x61\x44\xaa\x3c\x77\xa5\xc0\x01\xbf\x1a\x8d\x07\x27\xa4\x19\x72\xc7\xc6\x92\x08\x4b\x43\x18\xbb\xcb\xdd\x51\x3b\x62\x97\x87\xa6\xd4\xc4\x89\x20\xf8\x85\x6f\xb5\xca\x8e\xe4\x17\x37\x0d\x15\xac\x9a\x65\xb9\xda\xae\x1f\xcb\x12\x25\xae\x56\x6f\x97\x8f\x8b\x87\x35\x16\x8f\x8b\x66\x5b\x2e\x8a\x07\xcc\xc2\xbc\xf8\xbc\xba\x91\xa4\x6a\xbd\xd7\x71\x84\x76\x16\xc7\x0e\x50\x37\x70\x20\xb5\xeb\xd8\x81\x33\x93\x95\x21\x1b\x5b\x74\xf4\xdf\x5c\x0f\x3a\x5d\x1e\x66\x3f\xae\x02\xb9\xcf\xa5\x6a\xd1\xd6\x96\x9c\x4e\x3b\x29\x83\x68\xb6\x1e\x91\xbb\x2a\x3a\x72\xef\x8e\xc3\xd6\xf4\xe2\xb3\x0b\x8b\x3e\x39\x73\x83\x58\x2c\x16\x0b\x11\x5a\xc2\x3b\xa7\x5c\x8d\x56\x76\x6a\x9f\x16\x76\x8b\xbd\xf3\x23\xac\x5a\x70\xc4\x73\x5f\x8b\x58\x90\x53\x14\x7e\x8b\x22\xf8\x03\x1b\x40\x0d\x49\x3a\x08\xc7\xf6\xbe\x38\x75\x9d\x90\x48\x08\xea\x1a\xd2\x86\xc9\x9f\x93\x54\xab\x7a\x0a\xcf\xac\x3b\x75\xc6\xbf\xf3\x79\x50\xdc\xa5\xde\xb8\x98\x8c\xa6\xce\x05\xbc\x8a\xf8\x42\x43\x66\xab\xb6\x13\xc7\x0d\x4d\x2f\x6c\x31\x15\xed\xc2\xc9\x00\xbe\x28\xdd\x54\xb0\x79\x7a\x4a\x51\xf8\xbb\xf7\x46\xd3\x64\xb1\x07\x4d\x1c\x5e\xf1\xff\x6d\x9e\x9e\xe6\xf0\xec\x7f\x84\x10\xff\xf7\x83\xee\x9f\x14\xa5\x77\x75\x7a\x43\xd2\x47\x46\xe1\xbb\x3d\x91\xce\x6f\x72\xf8\x64\x48\xf8\x0c\x60\x40\xad\x5a\x72\x5c\xe3\xc4\x9d\xb1\x15\x6c\x3a\xd2\x3b\xf8\x55\x65\x00\xbf\x9b\xb1\xa8\xe0\xed\x52\x14\xd9\x3f\x01\x00\x00\xff\xff\xc5\x10\x66\x04\xbb\x08\x00\x00"
func cifar_resnet20_v1YmlBytes() ([]byte, error) {
return bindataRead(
_cifar_resnet20_v1Yml,
"CIFAR_ResNet20_v1.yml",
)
}
func cifar_resnet20_v1Yml() (*asset, error) {
bytes, err := cifar_resnet20_v1YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "CIFAR_ResNet20_v1.yml", size: 2235, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _cifar_resnet20_v2Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x59\x8b\xdb\xc8\x13\x7f\xd7\xa7\x28\xf0\xc3\xfc\xff\xe0\x69\x59\x96\x3d\x99\x08\x36\xb0\x6b\xd8\x6c\x60\x77\x1e\x86\xbd\x20\x04\x51\x6e\x95\xac\x4e\xa4\x6e\xd1\x5d\xb2\xc7\xf9\xf4\x4b\x1f\xbe\xd8\x21\x61\x5f\xec\xee\xaa\x5f\xdd\x47\x4b\xe3\x40\x15\x6c\x3e\xfc\xfc\xe3\x73\xfd\x4c\xee\x89\x78\xb9\xa8\xf7\x4b\x98\x81\xe7\x80\x69\xe1\x68\x26\x0b\x83\x69\xa8\xcf\x5a\x8b\x03\x1d\x8c\xfd\x52\x65\x00\x51\xf2\xb7\xbf\x9f\x88\x61\x06\x67\x16\xb4\xc6\x02\x77\x94\x44\x00\xf6\x64\x9d\x32\xba\x82\xbb\x77\x3f\x14\xa2\x10\x8b\xbb\x1b\x78\x62\x83\x34\x9a\x2d\x2a\xcd\xd9\x59\xa0\x10\x0b\x98\x9d\x01\x4a\xb7\xc6\x0e\xc8\xf1\x0c\x8e\x06\xd4\xac\xe4\x99\x1f\xb9\x99\xd7\x83\x4a\x93\xad\x60\x06\xe7\x8b\x83\xc9\x51\x03\x6c\x60\x24\xeb\x91\xd1\x3d\xa0\x3d\xf6\x53\xd0\x99\x01\xe0\xd0\x3c\xac\x7c\x68\x00\xbb\x71\xaa\xc0\xa2\x1a\xad\xf9\x4c\x92\x73\x89\x76\xe8\xef\x25\xb6\x2d\x55\x01\x76\x2f\xc7\x29\x20\xe5\x77\x91\xbb\x80\x1c\x47\xf9\xb0\xea\xa9\xfa\xae\x50\x02\x26\xb1\x6f\xbb\x72\x8d\x6d\xc8\x49\xab\x46\x0e\xa9\x7b\x97\x41\x2a\xcd\x87\x01\x77\x04\x9b\x1e\x9d\x53\xad\x92\x31\x7f\x21\xf8\x39\x1c\x3a\x25\x3b\x50\x0e\x42\xe6\xa9\x01\xa3\x43\xe9\x82\x8c\x17\x6e\x90\xd1\x11\x8b\x0c\xe0\x0f\x47\xaf\xb4\x49\x6b\xcd\x00\xef\xfb\xc9\xe8\xcd\x9f\x29\xa5\x5f\x8d\x11\x99\xa5\x96\x2c\x69\x49\xce\x97\xe1\x72\x0b\x15\xc0\xd1\x17\x24\x87\x03\x6d\x9d\x62\xf2\x47\x62\x29\x04\xc4\x10\xb6\x4a\xef\x6e\x3a\xe8\x1e\x3a\xe6\xd1\x55\x79\xbe\xf3\x96\xee\xe5\x5e\x0c\x2f\x9a\x58\x28\x93\x07\x4c\xfd\xd5\x98\x5c\xde\x84\x28\x3a\x1e\xfa\xac\x57\x92\xb4\xa3\x0a\x26\x6d\xc9\xb1\x55\x92\xa9\x81\x19\x24\xba\x6f\xef\x8b\x21\xa5\xc7\x89\x83\xbf\x31\x90\x78\x0f\xf6\xf9\x38\x52\x05\x2a\xa4\x72\x06\xad\xb2\x8e\x23\xdb\x43\xb1\x57\x7c\x0c\xa5\xba\x29\x81\x57\x1c\x31\x27\xb9\x2b\xf6\xc9\xf2\x95\xaa\xa0\x61\x44\x3f\x18\x4c\xd6\xc5\x46\x01\xa0\x9e\x06\xd2\x5c\x47\x17\xda\xde\x20\x97\xcb\xc4\x0b\x72\x75\x8f\x47\xdf\xed\xbe\x56\x89\xde\xe3\xd1\x4c\x5c\xc1\xdd\xe6\x97\xbf\xee\x12\x4d\x9a\xde\xd8\xda\x47\x56\xc1\xdd\xf3\xfb\x9f\x4e\xf4\x46\x0d\xa4\xfd\x00\xb9\x0a\x3e\x96\x73\x58\x2e\x57\xe1\xe7\x53\xe2\x0f\x84\xba\x82\x8f\xc5\xb2\x14\x0f\x6f\xd6\x73\x28\x8a\x07\xb1\x7c\x9c\x43\xb1\x28\xc5\xba\x3c\xa1\x9c\xc4\x9e\x2a\xf8\xb8\x7e\x14\xe5\xdb\xf5\x1c\xd6\x6f\x44\xb1\x0c\x7f\xe5\x9b\xf5\xa7\xcc\x4c\x3c\x4e\xec\x43\x8a\x61\xdc\xd6\x0a\x66\x21\x17\x9e\x75\xca\x4b\x14\xc8\x5e\x49\x69\xe4\x40\x8f\x5b\xea\x61\x06\xf8\x5a\x56\x13\xe6\x9c\xcc\xec\x26\xb1\xde\x9c\x37\x75\x21\x65\xdf\x4e\xf4\x68\xcd\x16\xb7\xaa\x57\xac\xc8\xd5\x6c\x51\x3b\xbf\x42\x2a\x70\xa6\xe5\x01\x5f\xbc\xc2\x40\xf4\xc3\x70\x6d\xff\x5a\xee\x15\x4d\xa9\x70\x7e\xc9\x29\xdd\xd0\xcb\xc9\xfd\x1b\x14\x04\x94\xdf\x78\x17\xcd\x51\x59\x4b\xc8\x93\x25\x57\x4f\xb6\xaf\xc2\x88\x54\x79\xee\x4a\x81\x03\x7e\x35\x1a\x0f\x4e\x48\x33\xe4\x8e\x8d\x25\x11\x96\x86\x30\x76\x97\xbb\xa3\x76\xc4\x2e\x0f\x4d\xa9\x89\x13\x41\xf0\x0b\xdf\x6a\x95\x1d\xc9\x2f\x6e\x1a\x2a\x58\x35\xcb\x72\xb5\x5d\x3f\x96\x25\x4a\x5c\xad\xde\x2e\x1f\x17\x0f\x6b\x2c\x1e\x17\xcd\xb6\x5c\x14\x0f\x98\x85\x79\xf1\x79\x75\x23\x49\xd5\x7a\xaf\xe3\x08\xed\x2c\x8e\x1d\xa0\x6e\xe0\x40\x6a\xd7\xb1\x03\x67\x26\x2b\x43\x36\xb6\xe8\xe8\xbf\xb9\x1e\x74\xba\x3c\xcc\x7e\x5c\x05\x72\x9f\x4b\xd5\xa2\xad\x2d\x39\x9d\x76\x52\x06\xd1\x6c\x3d\x22\x77\x55\x74\xe4\xde\x1d\x87\xad\xe9\xc5\x67\x17\x16\x7d\x72\xe6\x06\xb1\x58\x2c\x16\x22\xb4\x84\x77\x4e\xb9\x1a\xad\xec\xd4\x3e\x2d\xec\x16\x7b\xe7\x47\x58\xb5\xe0\x88\xe7\xbe\x16\xb1\x20\xa7\x28\xfc\x16\x45\xf0\x07\x36\x80\x1a\x92\x74\x10\x8e\xed\x7d\x71\xea\x3a\x21\x91\x10\xd4\x35\xa4\x0d\x93\x3f\x27\xa9\x56\xf5\x14\x9e\x59\x77\xea\x8c\x7f\xe7\xf3\xa0\xb8\x4b\xbd\x71\x31\x19\x4d\x9d\x0b\x78\x15\xf1\x85\x86\xcc\x56\x6d\x27\x8e\x1b\x9a\x5e\xd8\x62\x2a\xda\x85\x93\x01\x7c\x51\xba\xa9\x60\xf3\xf4\x94\xa2\xf0\x77\xef\x8d\xa6\xc9\x62\x0f\x9a\x38\xbc\xe2\xff\xdb\x3c\x3d\xcd\xe1\xd9\xff\x08\x21\xfe\xef\x07\xdd\x3f\x29\x4a\xef\xea\xf4\x86\xa4\x8f\x8c\xc2\x77\x7b\x22\x9d\xdf\xe4\xf0\xc9\x90\xf0\x19\xc0\x80\x5a\xb5\xe4\xb8\xc6\x89\x3b\x63\x2b\xd8\x74\xa4\x77\xf0\xab\xca\x00\x7e\x37\x63\x51\xc1\xdb\xa5\x28\xb2\x7f\x02\x00\x00\xff\xff\xe6\x8f\x1e\x9b\xbb\x08\x00\x00"
func cifar_resnet20_v2YmlBytes() ([]byte, error) {
return bindataRead(
_cifar_resnet20_v2Yml,
"CIFAR_ResNet20_v2.yml",
)
}
func cifar_resnet20_v2Yml() (*asset, error) {
bytes, err := cifar_resnet20_v2YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "CIFAR_ResNet20_v2.yml", size: 2235, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _cifar_resnet56_v1Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x59\x8b\xdb\xc8\x13\x7f\xd7\xa7\x28\xf0\xc3\xfc\xff\xe0\x69\x59\x96\xed\x4c\x04\x1b\xd8\x35\x6c\x36\xb0\x3b\x0f\xc3\x5e\x10\x82\x28\xb7\x4a\x56\x27\x52\xb7\xe8\x2e\x8d\xc7\xf9\xf4\x4b\x1f\xbe\xd8\x21\x61\x5f\xec\xee\xaa\x5f\xdd\x47\x4b\xe3\x40\x15\x6c\x3f\xfc\xfc\xe3\x53\xfd\x44\xee\x91\x78\xbd\xa9\x9f\x0b\x98\x81\xe7\x80\x69\xe1\x68\x26\x0b\x83\x69\xa8\xcf\x5a\x8b\x03\x1d\x8c\xfd\x52\x65\x00\x51\xf2\xb7\xbf\x1f\x89\x61\x06\x67\x16\xb4\xc6\x02\x77\x94\x44\x00\x9e\xc9\x3a\x65\x74\x05\x77\xef\x7e\x28\x44\x21\x16\x77\x37\xf0\xc4\x06\x69\x34\x5b\x54\x9a\xb3\xb3\x40\x21\x16\x30\x3b\x03\x94\x6e\x8d\x1d\x90\xe3\x19\x1c\x0d\xa8\x59\xc9\x33\x3f\x72\x33\xaf\x07\x95\x26\x5b\xc1\x0c\xce\x17\x07\x93\xa3\x06\xd8\xc0\x48\xd6\x23\xa3\x7b\x40\xcf\xd8\x4f\x41\x67\x06\x80\x43\xb3\x59\xf9\xd0\x00\xf6\xe3\x54\x81\x45\x35\x5a\xf3\x99\x24\xe7\x12\xed\xd0\xdf\x4b\x6c\x5b\xaa\x02\xec\x5e\x8e\x53\x40\xca\xef\x22\xf7\x01\x39\x8e\x72\xb3\xea\xa9\xfa\xae\x50\x02\x26\xb1\x6f\xbb\x72\x8d\x6d\xc8\x49\xab\x46\x0e\xa9\x7b\x97\x41\x2a\xcd\x87\x01\xf7\x04\xdb\x1e\x9d\x53\xad\x92\x31\x7f\x21\xf8\x39\x1c\x3a\x25\x3b\x50\x0e\x42\xe6\xa9\x01\xa3\x43\xe9\x82\x8c\x17\x6e\x90\xd1\x11\x8b\x0c\xe0\x0f\x47\xaf\xb4\x49\x6b\xcd\x00\xef\xfb\xc9\xe8\xed\x9f\x29\xa5\x5f\x8d\x11\x99\xa5\x96\x2c\x69\x49\xce\x97\xe1\x72\x0b\x15\xc0\xd1\x17\x24\x87\x03\xed\x9c\x62\xf2\x47\x62\x29\x04\xc4\x10\x76\x4a\xef\x6f\x3a\xe8\x1e\x3a\xe6\xd1\x55\x79\xbe\xf7\x96\xee\xe5\xb3\x18\x5e\x34\xb1\x50\x26\x0f\x98\xfa\xab\x31\xb9\xbc\x09\x51\x74\x3c\xf4\x59\xaf\x24\x69\x47\x15\x4c\xda\x92\x63\xab\x24\x53\x03\x33\x48\x74\xdf\xde\x17\x43\x4a\x8f\x13\x07\x7f\x63\x20\xf1\x1e\xec\xf3\x71\xa4\x0a\x54\x48\xe5\x0c\x5a\x65\x1d\x47\xb6\x87\x62\xaf\xf8\x18\x4a\x75\x53\x02\xaf\x38\x62\x4e\x72\x57\xec\x93\xe5\x2b\x55\x41\xc3\x88\x7e\x30\x98\xac\x8b\x8d\x02\x40\x3d\x0d\xa4\xb9\x8e\x2e\xb4\xbd\x41\x2e\x97\x89\x17\xe4\xea\x1e\x8f\xbe\xdb\x7d\xad\x12\xbd\xc7\xa3\x99\xb8\x82\xbb\xed\x2f\x7f\xdd\x25\x9a\x34\xbd\xb1\xb5\x8f\xac\x82\xbb\xa7\xf7\x3f\x9d\xe8\x8d\x1a\x48\xfb\x01\x72\x15\x7c\x2c\xe7\xb0\x5c\xae\xc2\xcf\xa7\xc4\x1f\x08\x75\x05\x1f\x8b\x65\x29\x36\x6f\xd6\x73\x28\x8a\x8d\x58\x3e\xcc\xa1\x58\x94\x62\x5d\x9e\x50\x4e\x62\x4f\x15\x7c\x5c\x3f\x88\xf2\xed\x7a\x0e\xeb\x37\xa2\x58\x86\xbf\xf2\xcd\xfa\x53\x66\x26\x1e\x27\xf6\x21\xc5\x30\x6e\x6b\x05\xb3\x90\x0b\xcf\x3a\xe5\x25\x0a\x64\xaf\xa4\x34\x72\xa0\xc7\x1d\xf5\x30\x03\x7c\x2d\xab\x09\x73\x4e\x66\x76\x93\x58\x6f\xce\x9b\xba\x90\xb2\x6f\x27\x7a\xb4\x66\x87\x3b\xd5\x2b\x56\xe4\x6a\xb6\xa8\x9d\x5f\x21\x15\x38\xd3\xf2\x80\x2f\x5e\x61\x20\xfa\x61\xb8\xb6\x7f\x2d\xf7\x8a\xa6\x54\x38\xbf\xe4\x94\x6e\xe8\xe5\xe4\xfe\x0d\x0a\x02\xca\x6f\xbc\x8b\xe6\xa8\xac\x25\xe4\xc9\x92\xab\x27\xdb\x57\x61\x44\xaa\x3c\x77\xa5\xc0\x01\xbf\x1a\x8d\x07\x27\xa4\x19\x72\xc7\xc6\x92\x08\x4b\x43\x18\xbb\xcf\xdd\x51\x3b\x62\x97\x87\xa6\xd4\xc4\x89\x20\xf8\x85\x6f\xb5\xca\x8e\xe4\x17\x37\x0d\x15\xac\x9a\x65\xb9\xda\xad\x1f\xca\x12\x25\xae\x56\x6f\x97\x0f\x8b\xcd\x1a\x8b\x87\x45\xb3\x2b\x17\xc5\x06\xb3\x30\x2f\x3e\xaf\x6e\x24\xa9\x5a\xef\x75\x1c\xa1\xbd\xc5\xb1\x03\xd4\x0d\x1c\x48\xed\x3b\x76\xe0\xcc\x64\x65\xc8\xc6\x0e\x1d\xfd\x37\xd7\x83\x4e\x97\x87\xd9\x8f\xab\x40\x3e\xe7\x52\xb5\x68\x6b\x4b\x4e\xa7\x9d\x94\x41\x34\x5b\x8f\xc8\x5d\x15\x1d\xb9\x77\xc7\x61\x67\x7a\xf1\xd9\x85\x45\x9f\x9c\xb9\x41\x2c\x16\x8b\x85\x08\x2d\xe1\x9d\x53\xae\x46\x2b\x3b\xf5\x9c\x16\x76\x8b\xbd\xf3\x23\xac\x5a\x70\xc4\x73\x5f\x8b\x58\x90\x53\x14\x7e\x8b\x22\xf8\x03\x1b\x40\x0d\x49\x3a\x08\xc7\xf6\xbe\x38\x75\x9d\x90\x48\x08\xea\x1a\xd2\x86\xc9\x9f\x93\x54\xab\x7a\x0a\xcf\xac\x3b\x75\xc6\xbf\xf3\x79\x50\xdc\xa5\xde\xb8\x98\x8c\xa6\xce\x05\xbc\x8a\xf8\x42\x43\x66\xab\x76\x13\xc7\x0d\x4d\x2f\x6c\x31\x15\xed\xc2\xc9\x00\xbe\x28\xdd\x54\xb0\x7d\x7c\x4c\x51\xf8\xbb\xf7\x46\xd3\x64\xb1\x07\x4d\x1c\x5e\xf1\xff\x6d\x1f\x1f\xe7\xf0\xe4\x7f\x84\x10\xff\xf7\x83\xee\x9f\x14\xa5\xf7\x75\x7a\x43\xd2\x47\x46\xe1\xbb\x3d\x91\xce\x6f\x72\xf8\x64\x48\xf8\x0c\x60\x40\xad\x5a\x72\x5c\xe3\xc4\x9d\xb1\x15\x6c\x3b\xd2\x7b\xf8\x55\x65\x00\xbf\x9b\xb1\xa8\xe0\x6d\x29\x36\xd9\x3f\x01\x00\x00\xff\xff\xdc\xb6\x1a\xa7\xbb\x08\x00\x00"
func cifar_resnet56_v1YmlBytes() ([]byte, error) {
return bindataRead(
_cifar_resnet56_v1Yml,
"CIFAR_ResNet56_v1.yml",
)
}
func cifar_resnet56_v1Yml() (*asset, error) {
bytes, err := cifar_resnet56_v1YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "CIFAR_ResNet56_v1.yml", size: 2235, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _cifar_resnet56_v2Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x59\x8b\xe3\xc6\x13\x7f\xd7\xa7\x28\xf0\xc3\xfc\xff\xe0\x69\x59\x96\xed\x99\x15\x64\x21\x31\x64\xb3\x90\xcc\xc3\x90\x0b\x96\x45\x94\x5b\x25\xab\x77\xa5\x6e\xd1\x5d\x9a\x19\xcf\xa7\x0f\x7d\xf8\x22\xc3\x2e\x79\xb1\xbb\xab\x7e\x75\x1f\x2d\x8d\x03\x55\xb0\xfd\xf8\xf3\x8f\x8f\xf5\x23\xb9\x07\xe2\xf5\xa6\x7e\x5a\xc2\x0c\x3c\x07\x4c\x0b\x07\x33\x59\x18\x4c\x43\x7d\xd6\x5a\x1c\xe8\xd9\xd8\xaf\x55\x06\x10\x25\x7f\xfb\xfb\x81\x18\x66\x70\x62\x41\x6b\x2c\x70\x47\x49\x04\xe0\x89\xac\x53\x46\x57\x70\xf3\xfe\x87\x42\x14\x62\x71\x73\x05\x4f\x6c\x90\x46\xb3\x45\xa5\x39\x3b\x09\x14\x62\x01\xb3\x13\x40\xe9\xd6\xd8\x01\x39\x9e\xc1\xd1\x80\x9a\x95\x3c\xf1\x23\x37\xf3\x7a\x50\x69\xb2\x15\xcc\xe0\x74\x71\x30\x39\x6a\x80\x0d\x8c\x64\x3d\x32\xba\x07\xf4\x84\xfd\x14\x74\x66\x00\x38\x34\x9b\x95\x0f\x0d\x60\x3f\x4e\x15\x58\x54\xa3\x35\x5f\x48\x72\x2e\xd1\x0e\xfd\xad\xc4\xb6\xa5\x2a\xc0\x6e\xe5\x38\x05\xa4\xfc\x2e\x72\x1f\x90\xe3\x28\x37\xab\x9e\xaa\xef\x0a\x25\x60\x12\xfb\xb6\x2b\x97\xd8\x86\x9c\xb4\x6a\xe4\x90\xba\xf7\x19\xa4\xd2\x7c\x1c\x70\x4f\xb0\xed\xd1\x39\xd5\x2a\x19\xf3\x17\x82\x9f\xc3\x73\xa7\x64\x07\xca\x41\xc8\x3c\x35\x60\x74\x28\x5d\x90\xf1\xc2\x0d\x32\x3a\x62\x91\x01\xfc\xe1\xe8\x8d\x36\x69\xad\x19\xe0\x43\x3f\x19\xbd\xfd\x33\xa5\xf4\xd5\x18\x91\x59\x6a\xc9\x92\x96\xe4\x7c\x19\xce\xb7\x50\x01\x1c\x7d\x41\x72\x78\xa6\x9d\x53\x4c\xfe\x48\x2c\x85\x80\x18\xc2\x4e\xe9\xfd\x55\x07\xdd\x42\xc7\x3c\xba\x2a\xcf\xf7\xde\xd2\xad\x7c\x12\xc3\x8b\x26\x16\xca\xe4\x01\x53\xbf\x1a\x93\xcb\xab\x10\x45\xc7\x43\x9f\xf5\x4a\x92\x76\x54\xc1\xa4\x2d\x39\xb6\x4a\x32\x35\x30\x83\x44\xf7\xed\x7d\x36\xa4\xf4\x38\x71\xf0\x37\x06\x12\xef\xc1\x3e\x1f\x46\xaa\x40\x85\x54\xce\xa0\x55\xd6\x71\x64\x7b\x28\xf6\x8a\x0f\xa1\x54\x57\x25\xf0\x8a\x23\xe6\x28\x77\xc1\x3e\x5a\xbe\x50\x15\x34\x8c\xe8\x07\x83\xc9\xba\xd8\x28\x00\xd4\xd3\x40\x9a\xeb\xe8\x42\xdb\x1b\xe4\x72\x99\x78\x41\xae\xee\xf1\xe0\xbb\xdd\xd7\x2a\xd1\x7b\x3c\x98\x89\x2b\xb8\xd9\xfe\xf2\xd7\x4d\xa2\x49\xd3\x1b\x5b\xfb\xc8\x2a\xb8\x79\xfc\xf0\xd3\x91\xde\xa8\x81\xb4\x1f\x20\x57\xc1\xa7\x72\x0e\xcb\xe5\x2a\xfc\x7c\x4e\xfc\x81\x50\x57\xf0\xa9\x58\x96\x62\x73\xb7\x9e\x43\x51\x6c\xc4\xf2\x7e\x0e\xc5\xa2\x14\xeb\xf2\x88\x72\x12\x7b\xaa\xe0\xd3\xfa\x5e\x94\xef\xd6\x73\x58\xdf\x89\x62\x19\xfe\xca\xbb\xf5\xe7\xcc\x4c\x3c\x4e\xec\x43\x8a\x61\x5c\xd7\x0a\x66\x21\x17\x9e\x75\xcc\x4b\x14\xc8\xde\x48\x69\xe4\x40\x8f\x3b\xea\x61\x06\xf8\x56\x56\x13\xe6\x94\xcc\xec\x2a\xb1\xde\x9c\x37\x75\x26\x65\xdf\x4e\xf4\x68\xcd\x0e\x77\xaa\x57\xac\xc8\xd5\x6c\x51\x3b\xbf\x42\x2a\x70\xa6\xe5\x01\x5f\xbc\xc2\x40\xf4\xc3\x70\x69\xff\x52\xee\x0d\x4d\xa9\x70\x7e\xc9\x29\xdd\xd0\xcb\xd1\xfd\x2b\x14\x04\x94\xdf\x78\x67\xcd\x51\x59\x4b\xc8\x93\x25\x57\x4f\xb6\xaf\xc2\x88\x54\x79\xee\x4a\x81\x03\xbe\x1a\x8d\xcf\x4e\x48\x33\xe4\x8e\x8d\x25\x11\x96\x86\x30\x76\x9f\xbb\x83\x76\xc4\x2e\x0f\x4d\xa9\x89\x13\x41\xf0\x0b\x5f\x6b\x95\x1d\xc9\xaf\x6e\x1a\x2a\x58\x35\xcb\x72\xb5\x5b\xdf\x97\x25\x4a\x5c\xad\xde\x2d\xef\x17\x9b\x35\x16\xf7\x8b\x66\x57\x2e\x8a\x0d\x66\x61\x5e\x7c\x5e\xdd\x48\x52\xb5\xde\xeb\x38\x42\x7b\x8b\x63\x07\xa8\x1b\x78\x26\xb5\xef\xd8\x81\x33\x93\x95\x21\x1b\x3b\x74\xf4\xdf\x5c\x0f\x3a\x5d\x1e\x66\x3f\xae\x02\xf9\x94\x4b\xd5\xa2\xad\x2d\x39\x9d\x76\x52\x06\xd1\x6c\x3d\x22\x77\x55\x74\xe4\xd6\x1d\x86\x9d\xe9\xc5\x17\x17\x16\x7d\x72\xe6\x0a\xb1\x58\x2c\x16\x22\xb4\x84\x77\x4e\xb9\x1a\xad\xec\xd4\x53\x5a\xd8\x2d\xf6\xce\x8f\xb0\x6a\xc1\x11\xcf\x7d\x2d\x62\x41\x8e\x51\xf8\x2d\x8a\xe0\x0f\x6c\x00\x35\x24\xe9\x20\x1c\xdb\xfb\xec\xd4\x65\x42\x22\x21\xa8\x6b\x48\x1b\x26\x7f\x4e\x52\xad\xea\x29\x3c\xb3\xee\xd8\x19\xff\xce\xe7\xb3\xe2\x2e\xf5\xc6\xd9\x64\x34\x75\x2a\xe0\x45\xc4\x67\x1a\x32\x5b\xb5\x9b\x38\x6e\x68\x7a\x61\x8b\xa9\x68\x67\x4e\x06\xf0\x55\xe9\xa6\x82\xed\xc3\x43\x8a\xc2\xdf\xbd\x37\x9a\x26\x8b\x3d\x68\xe2\xf0\x8a\xff\x6f\xfb\xf0\x30\x87\x47\xff\x23\x84\xf8\xbf\x1f\x74\xff\xa4\x28\xbd\xaf\xd3\x1b\x92\x3e\x32\x0a\xdf\xed\x89\x74\x7a\x93\xc3\x27\x43\xc2\x67\x00\x03\x6a\xd5\x92\xe3\x1a\x27\xee\x8c\xad\x60\xdb\x91\xde\xc3\xaf\x2a\x03\xf8\xdd\x8c\x45\x05\xef\x4a\x71\x97\xfd\x13\x00\x00\xff\xff\xbe\x18\x79\x21\xbb\x08\x00\x00"
func cifar_resnet56_v2YmlBytes() ([]byte, error) {
return bindataRead(
_cifar_resnet56_v2Yml,
"CIFAR_ResNet56_v2.yml",
)
}
func cifar_resnet56_v2Yml() (*asset, error) {
bytes, err := cifar_resnet56_v2YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "CIFAR_ResNet56_v2.yml", size: 2235, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _cifar_resnext29_16x64dYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x5b\x8b\xdb\xc8\x12\x7e\xd7\xaf\x28\xf0\xc3\x9c\x03\x9e\x96\x65\xd9\xce\x8c\xe0\x04\xce\x1a\x36\x1b\xd8\x9d\x87\x61\x6f\x10\x82\x28\xb7\x4a\x56\x27\x52\xb7\xe8\x2e\xcd\xd8\xf9\xf5\x4b\x5f\x7c\x63\xb3\x09\xfb\x62\x77\x57\x7d\x75\xbf\xb4\x34\x0e\x54\xc1\xf6\xfd\x8f\xff\x7f\xae\x9f\xc9\x3d\xd1\x81\x97\x8f\x75\xb1\x39\x6c\x56\x0d\xcc\xc0\xb3\xc1\xb4\x70\x34\x93\x85\xc1\x34\xd4\x67\xad\xc5\x81\x5e\x8d\xfd\x5c\x65\x00\x51\xfc\x97\x3f\x9f\x88\x61\x06\x67\x16\xb4\xc6\x02\x77\x94\x44\x00\x5e\xc8\x3a\x65\x74\x05\x77\x6f\xff\x57\x88\x42\x2c\xee\x6e\xe0\x89\x0d\xd2\x68\xb6\xa8\x34\x67\x67\x81\x42\x2c\x60\x76\x06\x28\xdd\x1a\x3b\x20\xc7\x33\x38\x1a\x50\xb3\x92\x67\x7e\xe4\x66\x5e\x0f\x2a\x4d\xb6\x82\x19\x9c\x2f\x0e\x26\x47\x0d\xb0\x81\x91\xac\x47\x46\xf7\x80\x5e\xb0\x9f\x82\xce\x0c\x00\x87\x66\xb3\xf2\xa1\x01\xec\xc7\xa9\x02\x8b\x6a\xb4\xe6\x13\x49\xce\x25\xda\xa1\xbf\x97\xd8\xb6\x54\x05\xd8\xbd\x1c\xa7\x80\x94\xdf\x45\xee\x03\x72\x1c\xe5\x66\xd5\x53\xf5\x5d\xa1\x04\x4c\x62\xdf\x76\xe5\x1a\xdb\x90\x93\x56\x8d\x1c\x52\xf7\x36\x83\x54\x9a\xf7\x03\xee\x09\xb6\x3d\x3a\xa7\x5a\x25\x63\xfe\x42\xf0\x73\x78\xed\x94\xec\x40\x39\x08\x99\xa7\x06\x8c\x0e\xa5\x0b\x32\x5e\xb8\x41\x46\x47\x2c\x32\x80\xdf\x1c\xfd\x53\xaf\xb4\xd6\x0c\xf0\xae\x9f\x8c\xde\xfe\x9e\xf2\xfa\xc5\x18\x91\x59\x6a\xc9\x92\x96\xe4\x7c\x2d\x2e\xb7\x50\x06\x1c\x7d\x55\x72\x78\xa5\x9d\x53\x4c\xfe\x48\x2c\x85\x80\x18\xc7\x4e\xe9\xfd\x4d\x1b\xdd\x43\xc7\x3c\xba\x2a\xcf\xf7\xde\xd2\xbd\x7c\x11\xc3\x41\x13\x0b\x65\xf2\x80\xa9\xbf\x18\x93\xcb\x9b\x38\x45\xc7\x43\x9f\xf5\x4a\x92\x76\x54\xc1\xa4\x2d\x39\xb6\x4a\x32\xf9\x06\x4f\x74\xdf\xe3\x17\x43\x4a\x8f\x13\x07\x7f\x63\x20\xf1\x1e\xec\xf3\x71\xa4\x0a\x54\xc8\xe7\x0c\x5a\x65\x1d\x47\xb6\x87\x62\xaf\xf8\x18\xea\x75\x53\x07\xaf\x38\x62\x4e\x72\x57\xec\x93\xe5\x2b\x55\x41\xc3\x88\x7e\x3a\x98\xac\x8b\xdd\x02\x40\x3d\x0d\xa4\xb9\x8e\x2e\xb4\xbd\x41\x2e\x97\x89\x17\xe4\xea\x1e\x8f\xbe\xe5\x7d\xc1\x12\xbd\xc7\xa3\x99\xb8\x82\xbb\xed\x4f\x7f\xdc\x25\x9a\x34\xbd\xb1\xb5\x8f\xac\x82\xbb\xe7\x77\x3f\x9c\xe8\x8d\x1a\x48\xfb\x29\x72\x15\x7c\x28\xe7\xb0\x5c\xae\xc2\xcf\xc7\xc4\x1f\x08\x75\x05\x1f\x8a\x65\x29\x36\x6f\xd6\x73\x28\x8a\x8d\x58\x3e\xcc\xa1\x58\x94\x62\x5d\x9e\x50\x4e\x62\x4f\x15\x7c\x58\x3f\x88\xf2\x71\x3d\x87\xf5\x1b\x51\x2c\xc3\x5f\xf9\x66\xfd\x31\x33\x13\x8f\x13\xfb\x90\x62\x18\xb7\xb5\x82\x59\xc8\x85\x67\x9d\xf2\x12\x05\xb2\xaf\xa4\x34\x72\xa0\xc7\x1d\xf5\x30\x03\xfc\x5a\x56\x13\xe6\x9c\xcc\xec\x26\xb1\xde\x9c\x37\x75\x21\x65\xdf\x4e\xf4\x68\xcd\x0e\x77\xaa\x57\xac\xc8\xd5\x6c\x51\x3b\xbf\x47\x2a\x70\xa6\xe5\x01\x0f\x5e\x61\x20\xfa\x61\xb8\xb6\x7f\x2d\xf7\x15\x4d\xa9\x70\x7e\xd3\x29\xdd\xd0\xe1\xe4\xfe\x0d\x0a\x02\xca\xaf\xbd\x8b\xe6\xa8\xac\x25\xe4\xc9\x92\xab\x27\xdb\x57\x61\x44\xaa\x3c\x77\xa5\xc0\x01\xbf\x18\x8d\xaf\x4e\x48\x33\xe4\x8e\x8d\x25\x11\x36\x87\x30\x76\x9f\xbb\xa3\x76\xc4\x2e\x0f\x4d\xa9\x89\x13\x41\xf0\x81\x6f\xb5\xca\x8e\xe4\x67\x37\x0d\x15\xac\x9a\x65\xb9\xda\xad\x1f\xca\x12\x25\xae\x56\x8f\xcb\x87\xc5\x66\x8d\xc5\xc3\xa2\xd9\x95\x8b\x62\x83\x59\x98\x17\x9f\x57\x37\x92\x54\xad\xf7\x3a\x8e\xd0\xde\xe2\xd8\x01\xea\x06\x5e\x49\xed\x3b\x76\xe0\xcc\x64\x65\xc8\xc6\x0e\x1d\xfd\x3b\xd7\x83\x4e\x97\x87\xd9\x8f\xab\x40\xbe\xe4\x52\xb5\x68\x6b\x4b\x4e\x5f\x2f\xa6\x0c\xa2\xed\x7a\x44\xee\xaa\xe8\xcd\xbd\x3b\x0e\x3b\xd3\x8b\x4f\x2e\xac\xfc\xe4\xd1\x0d\x62\xb1\x58\x2c\x44\xe8\x0b\xef\xa1\x72\x35\x5a\xd9\xa9\x97\xb4\xba\x5b\xec\x9d\x9f\x63\xd5\x82\x23\x9e\xfb\x82\xc4\xaa\x9c\x42\xf1\xfb\x14\xc1\x1f\xd8\x00\x6a\x48\xd2\x41\x38\xf6\xf8\xc5\xa9\xeb\xac\x44\x42\x50\xd7\x90\x36\x4c\xfe\x9c\xa4\x5a\xd5\x53\x78\x70\xdd\xa9\x3d\xfe\x9e\xd4\x57\xc5\x5d\x6a\x90\x8b\xc9\x68\xea\x5c\xc5\xab\x88\x2f\x34\x64\xb6\x6a\x37\x71\x5c\xd3\x74\x60\x8b\xa9\x72\x17\x4e\x06\xf0\x59\xe9\xa6\x82\xed\xd3\x53\x8a\xc2\xdf\xbd\x37\x9a\x26\x8b\x3d\x68\xe2\xf0\x9e\xff\x67\xfb\xf4\x34\x87\x67\xff\x23\x84\xf8\xaf\x9f\x76\xff\xb8\x28\xbd\xaf\xd3\x6b\x92\xbe\x39\x0a\xdf\xf2\x89\x74\x7e\x9d\xc3\xc7\x43\xc2\x67\x00\x03\x6a\xd5\x92\xe3\x1a\x27\xee\x8c\xad\x60\xdb\x91\xde\xc3\xcf\x2a\x03\xf8\xd5\x8c\x45\x05\x8f\x1b\x51\x66\x7f\x05\x00\x00\xff\xff\x7b\xda\x2c\x46\xca\x08\x00\x00"
func cifar_resnext29_16x64dYmlBytes() ([]byte, error) {
return bindataRead(
_cifar_resnext29_16x64dYml,
"CIFAR_ResNext29_16x64d.yml",
)
}
func cifar_resnext29_16x64dYml() (*asset, error) {
bytes, err := cifar_resnext29_16x64dYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "CIFAR_ResNext29_16x64d.yml", size: 2250, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _cifar_resnext29_32x4dYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x5b\xab\xdb\xc6\x13\x7f\xd7\xa7\x18\xf0\xc3\xf9\xff\xc1\x67\x65\x5b\xb6\x73\x22\x68\xa0\x35\x34\x0d\xb4\x7e\x38\xd0\x0b\x84\x20\xc6\xab\x91\xb5\x89\xb4\x2b\x76\x47\xc7\x76\x3e\x7d\xd9\x8b\x6f\xf4\x34\xa1\x2f\xf6\xee\xcc\x6f\xee\x97\x95\xc6\x9e\x4a\xd8\x7c\xf8\xf9\xc7\xe7\xea\x99\xdc\x96\x8e\xbc\x78\x5b\x15\x8b\xe3\xb2\x86\x09\x78\x2e\x98\x06\x4e\x66\xb4\xd0\x9b\x9a\xba\xac\xb1\xd8\xd3\xc1\xd8\x2f\x65\x06\x10\xa5\x7f\xfb\x6b\x4b\x0c\x13\xb8\xb0\xa0\x31\x16\xb8\xa5\x24\x02\xf0\x42\xd6\x29\xa3\x4b\x78\x78\xf7\xc3\x5c\xcc\xc5\xec\xe1\x0e\x9e\xd8\x20\x8d\x66\x8b\x4a\x73\x76\x11\x98\x8b\x19\x4c\x2e\x00\xa5\x1b\x63\x7b\xe4\x78\x06\x47\x3d\x6a\x56\xf2\xc2\x8f\xdc\xcc\xeb\x41\xa5\xc9\x96\x30\x81\xcb\xc5\xc1\xe8\xa8\x06\x36\x30\x90\xf5\xc8\xe8\x1e\xd0\x0b\x76\x63\xd0\x99\x01\x60\x5f\xaf\x97\x3e\x34\x80\xfd\x30\x96\x60\x51\x0d\xd6\x7c\x26\xc9\xb9\x44\xdb\x77\x8f\x12\x9b\x86\xca\x00\x7b\x94\xc3\x18\x90\xf2\xbb\xc8\x7d\x40\x0e\x83\x5c\x2f\x3b\x2a\xbf\x2b\x94\x80\x49\xec\xdb\xae\xdc\x62\x6b\x72\xd2\xaa\x81\x43\xea\xde\x65\x90\x4a\xf3\xa1\xc7\x3d\xc1\xa6\x43\xe7\x54\xa3\x64\xcc\x5f\x08\x7e\x0a\x87\x56\xc9\x16\x94\x83\x90\x79\xaa\xc1\xe8\x50\xba\x20\xe3\x85\x6b\x64\x74\xc4\x22\x03\xf8\xdd\xd1\xbf\xb4\x4a\x63\x4d\x0f\xef\xbb\xd1\xe8\xcd\x1f\x29\xad\x5f\x8d\x11\x99\xa5\x86\x2c\x69\x49\xce\x97\xe2\x7a\x0b\x55\xc0\xc1\x17\x25\x87\x03\xed\x9c\x62\xf2\x47\x62\x29\x04\xc4\x30\x76\x4a\xef\xef\xba\xe8\x11\x5a\xe6\xc1\x95\x79\xbe\xf7\x96\x1e\xe5\x8b\xe8\x8f\x9a\x58\x28\x93\x07\x4c\xf5\xd5\x98\x5c\xde\x85\x29\x5a\xee\xbb\xac\x53\x92\xb4\xa3\x12\x46\x6d\xc9\xb1\x55\x92\xc9\xf7\x77\xa2\xfb\x16\xbf\x1a\x52\x7a\x18\x39\xf8\x1b\x03\x89\xf7\x60\x9f\x4f\x03\x95\xa0\x42\x3a\x27\xd0\x28\xeb\x38\xb2\x3d\x14\x3b\xc5\xa7\x50\xae\xbb\x32\x78\xc5\x11\x73\x96\xbb\x61\x9f\x2d\xdf\xa8\x0a\x1a\x06\xf4\xc3\xc1\x64\x5d\x6c\x16\x00\xea\xa8\x27\xcd\x55\x74\xa1\xe9\x0c\x72\xb1\x48\xbc\x20\x57\x75\x78\xf2\x1d\xef\xeb\x95\xe8\x1d\x9e\xcc\xc8\x25\x3c\x6c\x7e\xf9\xf3\x21\xd1\xa4\xe9\x8c\xad\x7c\x64\x25\x3c\x3c\xbf\xff\xe9\x4c\xaf\x55\x4f\xda\x0f\x91\x2b\xe1\x63\x31\x85\xc5\x62\x19\x7e\x3e\x25\x7e\x4f\xa8\x4b\xf8\x38\x5f\x14\x62\xfd\x66\x35\x85\xf9\x7c\x2d\x16\x4f\x53\x98\xcf\x0a\xb1\x2a\xce\x28\x27\xb1\xa3\x12\x3e\xae\x9e\x44\xf1\x76\x35\x85\xd5\x1b\x31\x5f\x84\xbf\xe2\xcd\xea\x53\x66\x46\x1e\x46\xf6\x21\xc5\x30\xee\x6b\x05\x93\x90\x0b\xcf\x3a\xe7\x25\x0a\x64\xaf\xa4\x34\x72\xa0\xc3\x1d\x75\x30\x01\x7c\x2d\xab\x09\x73\x49\x66\x76\x97\x58\x6f\xce\x9b\xba\x92\xb2\x6f\x27\x7a\xb0\x66\x87\x3b\xd5\x29\x56\xe4\x2a\xb6\xa8\x9d\x5f\x23\x25\x38\xd3\x70\x8f\x47\xaf\x30\x10\xfd\x30\xdc\xda\xbf\x95\x7b\x45\x53\x2a\x9c\x5f\x74\x4a\xd7\x74\x3c\xbb\x7f\x87\x82\x80\xf2\x5b\xef\xaa\x39\x2a\x6b\x08\x79\xb4\xe4\xaa\xd1\x76\x65\x18\x91\x32\xcf\x5d\x21\xb0\xc7\xaf\x46\xe3\xc1\x09\x69\xfa\xdc\xb1\xb1\x24\xc2\xe2\x10\xc6\xee\x73\x77\xd2\x8e\xd8\xe5\xa1\x29\x35\x71\x22\x08\x3e\xf2\xbd\x56\xd9\x92\xfc\xe2\xc6\xbe\x84\x65\xbd\x28\x96\xbb\xd5\x53\x51\xa0\xc4\xe5\xf2\xed\xe2\x69\xb6\x5e\xe1\xfc\x69\x56\xef\x8a\xd9\x7c\x8d\x59\x98\x17\x9f\x57\x37\x90\x54\x8d\xf7\x3a\x8e\xd0\xde\xe2\xd0\x02\xea\x1a\x0e\xa4\xf6\x2d\x3b\x70\x66\xb4\x32\x64\x63\x87\x8e\xfe\x9b\xeb\x41\xa7\xcb\xc3\xec\xc7\x55\x20\x5f\x72\xa9\x1a\xb4\x95\x25\xa7\x6f\xf6\x52\x06\xd1\x74\x35\x20\xb7\x65\x74\xe6\xd1\x9d\xfa\x9d\xe9\xc4\x67\x17\x16\x7e\x72\xe8\x0e\x31\x9b\xcd\x66\x22\xb4\x85\x77\x50\xb9\x0a\xad\x6c\xd5\x4b\x5a\xdc\x0d\x76\xce\x8f\xb1\x6a\xc0\x11\x4f\x7d\x3d\x62\x51\xce\x91\xf8\x6d\x8a\xe0\x0f\x6c\x00\x35\x24\xe9\x20\x1c\x5b\xfc\xea\xd4\x6d\x52\x22\x21\xa8\xab\x49\x1b\x26\x7f\x4e\x52\x8d\xea\x28\x3c\xb7\xee\xdc\x1d\xff\xcc\xe9\x41\x71\x9b\xfa\xe3\x6a\x32\x9a\xba\x14\xf1\x26\xe2\x2b\x0d\x99\xad\xda\x8d\x1c\xb7\x34\x1d\xd9\x62\x2a\xdc\x95\x93\x01\x7c\x51\xba\x2e\x61\xb3\xdd\xa6\x28\xfc\xdd\x7b\xa3\x69\xb4\xd8\x81\x26\x0e\xaf\xf9\xff\x36\xdb\xed\x14\x9e\xfd\x8f\x10\xe2\xff\x7e\xd8\xfd\xd3\xa2\xf4\xbe\x4a\x6f\x49\xfa\xe0\x98\xfb\x8e\x4f\xa4\xcb\xdb\x1c\x3e\x1d\x12\x3e\x03\xe8\x51\xab\x86\x1c\x57\x38\x72\x6b\x6c\x09\x9b\x96\xf4\x1e\x7e\x55\xd9\xdf\x01\x00\x00\xff\xff\x57\x3f\x7d\x6b\xba\x08\x00\x00"
func cifar_resnext29_32x4dYmlBytes() ([]byte, error) {
return bindataRead(
_cifar_resnext29_32x4dYml,
"CIFAR_ResNext29_32x4d.yml",
)
}
func cifar_resnext29_32x4dYml() (*asset, error) {
bytes, err := cifar_resnext29_32x4dYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "CIFAR_ResNext29_32x4d.yml", size: 2234, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _cifar_wideresnet16_10Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\xdb\x8e\xdb\x36\x13\xbe\xd7\x53\x0c\xe0\x8b\xfd\x7f\xc0\x4b\x59\x96\xed\x6c\x04\x34\x40\x6b\xa0\x69\x80\x76\x2f\x16\x6d\x53\x20\x08\x84\x31\x35\xb2\x98\x48\xa4\x40\x8e\xd6\xeb\x3c\x7d\xc1\x83\x4f\x68\x9a\xa0\x37\x36\x39\xf3\xcd\xf9\x40\x69\x1c\xa8\x82\xed\xbb\x9f\x7f\x7c\xaa\xdf\xab\x86\x9e\xc8\x3d\x12\x17\x9b\xba\x58\xc0\x0c\x3c\x17\x4c\x0b\x47\x33\x59\x18\x4c\x43\x7d\xd6\x5a\x1c\xe8\x60\xec\xe7\x2a\x03\x88\xd2\xbf\xfd\xf5\x48\x0c\x33\x38\xb3\xa0\x35\x16\xb8\xa3\x24\x02\xf0\x4c\xd6\x29\xa3\x2b\xb8\x7b\xf3\x43\x21\x0a\xb1\xb8\xbb\x81\x27\x36\x48\xa3\xd9\xa2\xd2\x9c\x9d\x05\x0a\xe1\xfd\x38\x01\x94\x6e\x8d\x1d\x90\xe3\x19\x1c\x0d\xa8\x59\xc9\x33\x3f\x72\x33\xaf\x07\x95\x26\x5b\xc1\x0c\xce\x17\x07\x93\xa3\x06\xd8\xc0\x48\xd6\x23\xa3\x7b\x40\xcf\xd8\x4f\x41\x67\x06\x80\x43\xb3\x59\xf9\xd0\x00\xf6\xe3\x54\x81\x45\x35\x5a\xf3\x89\x24\xe7\x12\xed\xd0\xdf\x4b\x6c\x5b\xaa\x02\xec\x5e\x8e\x53\x40\xca\xef\x22\xf7\x01\x39\x8e\x72\xb3\xea\xa9\xfa\xae\x50\x02\x26\xb1\x6f\xbb\x72\x8d\x6d\xc8\x49\xab\x46\x0e\xa9\x7b\x93\x41\x2a\xcd\xbb\x01\xf7\x04\xdb\x1e\x9d\x53\xad\x92\x31\x7f\x21\xf8\x39\x1c\x3a\x25\x3b\x50\x0e\x42\xe6\xa9\x01\xa3\x43\xe9\x82\x8c\x17\x6e\x90\xd1\x11\x8b\x0c\xe0\x0f\x47\xff\xd2\x2a\xad\x35\x03\xbc\xed\x27\xa3\xb7\x7f\xa6\xb4\x7e\x31\x46\x64\x96\x5a\xb2\xa4\x25\x39\x5f\x8a\xcb\x2d\x54\x01\x47\x5f\x94\x1c\x0e\xb4\x73\x8a\xc9\x1f\x89\xa5\x10\x10\xc3\xd8\x29\xbd\xbf\xe9\xa2\x7b\xe8\x98\x47\x57\xe5\xf9\xde\x5b\xba\x97\xcf\x62\x78\xd1\xc4\x42\x99\x3c\x60\xea\x2f\xc6\xe4\xf2\x26\x4c\xd1\xf1\xd0\x67\xbd\x92\xa4\x1d\x55\x30\x69\x4b\x8e\xad\x92\x4c\x0d\xcc\x20\xd1\x7d\x8b\x5f\x0c\x29\x3d\x4e\x1c\xfc\x8d\x81\xc4\x7b\xb0\xcf\xc7\x91\x2a\x50\x21\x9d\x33\x68\x95\x75\x1c\xd9\x1e\x8a\xbd\xe2\x63\x28\xd7\x4d\x19\xbc\xe2\x88\x39\xc9\x5d\xb1\x4f\x96\xaf\x54\x05\x0d\x23\xfa\xe1\x60\xb2\x2e\x36\x0b\x00\xf5\x34\x90\xe6\x3a\xba\xd0\xf6\x06\xb9\x5c\x26\x5e\x90\xab\x7b\x3c\xfa\x8e\xf7\xf5\x4a\xf4\x1e\x8f\x66\xe2\x0a\xee\xb6\xbf\xbc\xbf\x4b\x34\x69\x7a\x63\x6b\x1f\x59\x05\x77\x4f\x6f\x7f\x3a\xd1\x1b\x35\x90\xf6\x43\xe4\x2a\xf8\x50\xce\x61\xb9\x5c\x85\x9f\x8f\x89\x3f\x10\xea\x0a\x3e\x14\xcb\x52\x6c\x5e\xad\xe7\x50\x14\x1b\xb1\x7c\x98\x43\xb1\x28\xc5\xba\x3c\xa1\x9c\xc4\x9e\x2a\xf8\xb0\x7e\x10\xe5\xeb\xf5\x1c\xd6\xaf\x44\xb1\x0c\x7f\xe5\xab\xf5\xc7\xcc\x4c\x3c\x4e\xec\x43\x8a\x61\xdc\xd6\x0a\x66\x21\x17\x9e\x75\xca\x4b\x14\xc8\xbe\x92\xd2\xc8\x81\x1e\x77\xd4\xc3\x0c\xf0\x6b\x59\x4d\x98\x73\x32\xb3\x9b\xc4\x7a\x73\xde\xd4\x85\x94\x7d\x3b\xd1\xa3\x35\x3b\xdc\xa9\x5e\xb1\x22\x57\xb3\x45\xed\xfc\x1a\xa9\xc0\x99\x96\x07\x7c\xf1\x0a\x03\xd1\x0f\xc3\xb5\xfd\x6b\xb9\xaf\x68\x4a\x85\xf3\x8b\x4e\xe9\x86\x5e\x4e\xee\xdf\xa0\x20\xa0\xfc\xd6\xbb\x68\x8e\xca\x5a\x42\x9e\x2c\xb9\x7a\xb2\x7d\x15\x46\xa4\xca\x73\x57\x0a\x1c\xf0\x8b\xd1\x78\x70\x42\x9a\x21\x77\x6c\x2c\x89\xb0\x38\x84\xb1\xfb\xdc\x1d\xb5\x23\x76\x79\x68\x4a\x4d\x9c\x08\x82\x5f\xf8\x56\xab\xec\x48\x7e\x76\xd3\x50\xc1\xaa\x59\x96\xab\xdd\xfa\xa1\x2c\x51\xe2\x6a\xf5\x7a\xf9\xb0\xd8\xac\xb1\x78\x58\x34\xbb\x72\x51\x6c\x30\x0b\xf3\xe2\xf3\xea\x46\x92\xaa\xf5\x5e\xc7\x11\xda\x5b\x1c\x3b\x40\xdd\xc0\x81\xd4\xbe\x63\x07\xce\x4c\x56\x86\x6c\xec\xd0\xd1\x7f\x73\x3d\xe8\x74\x79\x98\xfd\xb8\x0a\xe4\x73\x2e\x55\x8b\xb6\x3e\xa8\x86\x2c\x39\x9d\xf6\x52\x06\xd1\x74\x3d\x22\x77\x55\x74\xe6\xde\x1d\x87\x9d\xe9\xc5\x27\x17\x16\x7e\x72\xe8\x06\xb1\x58\x2c\x16\x22\xb4\x85\x77\x50\xb9\x1a\xad\xec\xd4\x73\x5a\xdc\x2d\xf6\xce\x8f\xb1\x6a\xc1\x11\xcf\x7d\x3d\x62\x51\x4e\x91\xf8\x6d\x8a\xe0\x0f\x6c\x00\x35\x24\xe9\x20\x1c\x5b\xfc\xe2\xd4\x75\x52\x22\x21\xa8\x6b\x48\x1b\x26\x7f\x4e\x52\xad\xea\x29\x3c\xb7\xee\xd4\x1d\xff\xcc\xe9\x41\x71\x97\xfa\xe3\x62\x32\x9a\x3a\x17\xf1\x2a\xe2\x0b\x0d\x99\xad\xda\x4d\x1c\xb7\x34\xbd\xb0\xc5\x54\xb8\x0b\x27\x03\xf8\xac\x74\x53\xc1\xf6\xf1\x31\x45\xe1\xef\xde\x1b\x4d\x93\xc5\x1e\x34\x71\x78\xcd\xff\xb7\x7d\x7c\x9c\xc3\x93\xff\x11\x42\xfc\xdf\x0f\xbb\x7f\x5a\x94\xde\xd7\xe9\x2d\x49\x1f\x1c\xe1\x13\x23\x91\xce\x6f\x73\xf8\x74\x48\xf8\x0c\x60\x40\xad\x5a\x72\x5c\xe3\xc4\x9d\xb1\x15\x6c\x3b\xd2\x7b\xf8\x55\x65\x00\xbf\x9b\xb1\xa8\xe0\xf5\x5a\x14\xd9\xdf\x01\x00\x00\xff\xff\x73\xb1\xf0\x79\xc7\x08\x00\x00"
func cifar_wideresnet16_10YmlBytes() ([]byte, error) {
return bindataRead(
_cifar_wideresnet16_10Yml,
"CIFAR_WideResNet16_10.yml",
)
}
func cifar_wideresnet16_10Yml() (*asset, error) {
bytes, err := cifar_wideresnet16_10YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "CIFAR_WideResNet16_10.yml", size: 2247, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _cifar_wideresnet28_10Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\xdb\x8e\xdb\x36\x13\xbe\xd7\x53\x0c\xe0\x8b\xfd\x7f\xc0\x4b\x59\x96\xed\x6c\x04\x34\x40\x6b\xa0\x69\x80\x76\x2f\x16\x6d\x53\x20\x08\x84\x31\x35\xb2\x98\x48\xa4\x40\x8e\xd6\xeb\x3c\x7d\xc1\x83\x4f\x68\x9a\xa0\x37\x36\x39\xf3\xcd\xf9\x40\x69\x1c\xa8\x82\xed\xbb\x9f\x7f\x7c\xaa\xdf\xab\x86\x9e\xc8\x3d\x12\x2f\x1f\xea\x62\x01\x33\xf0\x5c\x30\x2d\x1c\xcd\x64\x61\x30\x0d\xf5\x59\x6b\x71\xa0\x83\xb1\x9f\xab\x0c\x20\x4a\xff\xf6\xd7\x23\x31\xcc\xe0\xcc\x82\xd6\x58\xe0\x8e\x92\x08\xc0\x33\x59\xa7\x8c\xae\xe0\xee\xcd\x0f\x85\x28\xc4\xe2\xee\x06\x9e\xd8\x20\x8d\x66\x8b\x4a\x73\x76\x16\x28\x84\xf7\xe3\x04\x50\xba\x35\x76\x40\x8e\x67\x70\x34\xa0\x66\x25\xcf\xfc\xc8\xcd\xbc\x1e\x54\x9a\x6c\x05\x33\x38\x5f\x1c\x4c\x8e\x1a\x60\x03\x23\x59\x8f\x8c\xee\x01\x3d\x63\x3f\x05\x9d\x19\x00\x0e\xcd\x66\xe5\x43\x03\xd8\x8f\x53\x05\x16\xd5\x68\xcd\x27\x92\x9c\x4b\xb4\x43\x7f\x2f\xb1\x6d\xa9\x0a\xb0\x7b\x39\x4e\x01\x29\xbf\x8b\xdc\x07\xe4\x38\xca\xcd\xaa\xa7\xea\xbb\x42\x09\x98\xc4\xbe\xed\xca\x35\xb6\x21\x27\xad\x1a\x39\xa4\xee\x4d\x06\xa9\x34\xef\x06\xdc\x13\x6c\x7b\x74\x4e\xb5\x4a\xc6\xfc\x85\xe0\xe7\x70\xe8\x94\xec\x40\x39\x08\x99\xa7\x06\x8c\x0e\xa5\x0b\x32\x5e\xb8\x41\x46\x47\x2c\x32\x80\x3f\x1c\xfd\x4b\xab\xb4\xd6\x0c\xf0\xb6\x9f\x8c\xde\xfe\x99\xd2\xfa\xc5\x18\x91\x59\x6a\xc9\x92\x96\xe4\x7c\x29\x2e\xb7\x50\x05\x1c\x7d\x51\x72\x38\xd0\xce\x29\x26\x7f\x24\x96\x42\x40\x0c\x63\xa7\xf4\xfe\xa6\x8b\xee\xa1\x63\x1e\x5d\x95\xe7\x7b\x6f\xe9\x5e\x3e\x8b\xe1\x45\x13\x0b\x65\xf2\x80\xa9\xbf\x18\x93\xcb\x9b\x30\x45\xc7\x43\x9f\xf5\x4a\x92\x76\x54\xc1\xa4\x2d\x39\xb6\x4a\x32\x35\x30\x83\x44\xf7\x2d\x7e\x31\xa4\xf4\x38\x71\xf0\x37\x06\x12\xef\xc1\x3e\x1f\x47\xaa\x40\x85\x74\xce\xa0\x55\xd6\x71\x64\x7b\x28\xf6\x8a\x8f\xa1\x5c\x37\x65\xf0\x8a\x23\xe6\x24\x77\xc5\x3e\x59\xbe\x52\x15\x34\x8c\xe8\x87\x83\xc9\xba\xd8\x2c\x00\xd4\xd3\x40\x9a\xeb\xe8\x42\xdb\x1b\xe4\x72\x99\x78\x41\xae\xee\xf1\xe8\x3b\xde\xd7\x2b\xd1\x7b\x3c\x9a\x89\x2b\xb8\xdb\xfe\xf2\xfe\x2e\xd1\xa4\xe9\x8d\xad\x7d\x64\x15\xdc\x3d\xbd\xfd\xe9\x44\x6f\xd4\x40\xda\x0f\x91\xab\xe0\x43\x39\x87\xe5\x72\x15\x7e\x3e\x26\xfe\x40\xa8\x2b\xf8\x50\x2c\x4b\xb1\x79\xb5\x9e\x43\x51\x6c\xc4\xf2\x61\x0e\xc5\xa2\x14\xeb\xf2\x84\x72\x12\x7b\xaa\xe0\xc3\xfa\x41\x94\xaf\xd7\x73\x58\xbf\x12\xc5\x32\xfc\x95\xaf\xd6\x1f\x33\x33\xf1\x38\xb1\x0f\x29\x86\x71\x5b\x2b\x98\x85\x5c\x78\xd6\x29\x2f\x51\x20\xfb\x4a\x4a\x23\x07\x7a\xdc\x51\x0f\x33\xc0\xaf\x65\x35\x61\xce\xc9\xcc\x6e\x12\xeb\xcd\x79\x53\x17\x52\xf6\xed\x44\x8f\xd6\xec\x70\xa7\x7a\xc5\x8a\x5c\xcd\x16\xb5\xf3\x6b\xa4\x02\x67\x5a\x1e\xf0\xc5\x2b\x0c\x44\x3f\x0c\xd7\xf6\xaf\xe5\xbe\xa2\x29\x15\xce\x2f\x3a\xa5\x1b\x7a\x39\xb9\x7f\x83\x82\x80\xf2\x5b\xef\xa2\x39\x2a\x6b\x09\x79\xb2\xe4\xea\xc9\xf6\x55\x18\x91\x2a\xcf\x5d\x29\x70\xc0\x2f\x46\xe3\xc1\x09\x69\x86\xdc\xb1\xb1\x24\xc2\xe2\x10\xc6\xee\x73\x77\xd4\x8e\xd8\xe5\xa1\x29\x35\x71\x22\x08\x7e\xe1\x5b\xad\xb2\x23\xf9\xd9\x4d\x43\x05\xab\x66\x59\xae\x76\xeb\x87\xb2\x44\x89\xab\xd5\xeb\xe5\xc3\x62\xb3\xc6\xe2\x61\xd1\xec\xca\x45\xb1\xc1\x2c\xcc\x8b\xcf\xab\x1b\x49\xaa\xd6\x7b\x1d\x47\x68\x6f\x71\xec\x00\x75\x03\x07\x52\xfb\x8e\x1d\x38\x33\x59\x19\xb2\xb1\x43\x47\xff\xcd\xf5\xa0\xd3\xe5\x61\xf6\xe3\x2a\x90\xcf\xb9\x54\x2d\xda\xfa\xa0\x1a\xb2\xe4\x74\xda\x4b\x19\x44\xd3\xf5\x88\xdc\x55\xd1\x99\x7b\x77\x1c\x76\xa6\x17\x9f\x5c\x58\xf8\xc9\xa1\x1b\xc4\x62\xb1\x58\x88\xd0\x16\xde\x41\xe5\x6a\xb4\xb2\x53\xcf\x69\x71\xb7\xd8\x3b\x3f\xc6\xaa\x05\x47\x3c\xf7\xf5\x88\x45\x39\x45\xe2\xb7\x29\x82\x3f\xb0\x01\xd4\x90\xa4\x83\x70\x6c\xf1\x8b\x53\xd7\x49\x89\x84\xa0\xae\x21\x6d\x98\xfc\x39\x49\xb5\xaa\xa7\xf0\xdc\xba\x53\x77\xfc\x33\xa7\x07\xc5\x5d\xea\x8f\x8b\xc9\x68\xea\x5c\xc4\xab\x88\x2f\x34\x64\xb6\x6a\x37\x71\xdc\xd2\xf4\xc2\x16\x53\xe1\x2e\x9c\x0c\xe0\xb3\xd2\x4d\x05\xdb\xc7\xc7\x14\x85\xbf\x7b\x6f\x34\x4d\x16\x7b\xd0\xc4\xe1\x35\xff\xdf\xf6\xf1\x71\x0e\x4f\xfe\x47\x08\xf1\x7f\x3f\xec\xfe\x69\x51\x7a\x5f\xa7\xb7\x24\x7d\x70\x84\x4f\x8c\x44\x3a\xbf\xcd\xe1\xd3\x21\xe1\x33\x80\x01\xb5\x6a\xc9\x71\x8d\x13\x77\xc6\x56\xb0\xed\x48\xef\xe1\x57\x95\x01\xfc\x6e\xc6\xa2\x82\xd7\x6b\xb1\xc9\xfe\x0e\x00\x00\xff\xff\xa6\x95\x0e\x7c\xc7\x08\x00\x00"
func cifar_wideresnet28_10YmlBytes() ([]byte, error) {
return bindataRead(
_cifar_wideresnet28_10Yml,
"CIFAR_WideResNet28_10.yml",
)
}
func cifar_wideresnet28_10Yml() (*asset, error) {
bytes, err := cifar_wideresnet28_10YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "CIFAR_WideResNet28_10.yml", size: 2247, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _cifar_wideresnet40_8Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\xdd\x8b\xdb\x46\x10\x7f\xd7\x5f\x31\xe0\x87\x6b\xc1\xb7\xb2\x2c\xfb\x72\x27\x68\xa0\x35\x34\x0d\xb4\xf7\x70\xb4\x4d\x21\x04\x31\x5e\x8d\xac\x4d\xa4\x5d\xb1\x3b\x3a\x9f\xf3\xd7\x97\xfd\xf0\x17\x3d\x12\xfa\x62\xef\xce\xfc\xe6\xfb\x63\xa5\x71\xa0\x0a\x36\xef\x7f\xfd\xf9\xa9\xfe\xa0\x1a\x7a\x22\xf7\x48\xbc\x5a\xd4\xf7\x30\x03\xcf\x04\xd3\xc2\xc1\x4c\x16\x06\xd3\x50\x9f\xb5\x16\x07\xda\x1b\xfb\xa5\xca\x00\xa2\xf0\x1f\xff\x3c\x12\xc3\x0c\x4e\x2c\x68\x8d\x05\xee\x28\x89\x00\x3c\x93\x75\xca\xe8\x0a\x6e\xde\xfe\x54\x88\x42\x2c\x6e\xae\xe0\x89\x0d\xd2\x68\xb6\xa8\x34\x67\x27\x81\x42\x2c\x60\x76\x02\x28\xdd\x1a\x3b\x20\xc7\x33\x38\x1a\x50\xb3\x92\x27\x7e\xe4\x66\x5e\x0f\x2a\x4d\xb6\x82\x19\x9c\x2e\x0e\x26\x47\x0d\xb0\x81\x91\xac\x47\x46\xf7\x80\x9e\xb1\x9f\x82\xce\x0c\x00\x87\xe6\x6e\xe5\x43\x03\xd8\x8d\x53\x05\x16\xd5\x68\xcd\x67\x92\x9c\x4b\xb4\x43\x7f\x2b\xb1\x6d\xa9\x0a\xb0\x5b\x39\x4e\x01\x29\xbf\x8b\xdc\x05\xe4\x38\xca\xbb\x55\x4f\xd5\x77\x85\x12\x30\x89\x7d\xdb\x95\x4b\x6c\x43\x4e\x5a\x35\x72\x48\xdd\xdb\x0c\x52\x69\xde\x0f\xb8\x23\xd8\xf4\xe8\x9c\x6a\x95\x8c\xf9\x0b\xc1\xcf\x61\xdf\x29\xd9\x81\x72\x10\x32\x4f\x0d\x18\x1d\x4a\x17\x64\xbc\x70\x83\x8c\x8e\x58\x64\x00\x7f\x39\x7a\xbd\x53\x5a\x6b\x06\x78\xd7\x4f\x46\x6f\xfe\x4e\x59\xfd\x6a\x8c\xc8\x2c\xb5\x64\x49\x4b\x72\xbe\x12\xe7\x5b\x28\x02\x8e\xbe\x26\x39\xec\x69\xeb\x14\x93\x3f\x12\x4b\x21\x20\x46\xb1\x55\x7a\x77\xd5\x44\xb7\xd0\x31\x8f\xae\xca\xf3\x9d\xb7\x74\x2b\x9f\xc5\xf0\xa2\x89\x85\x32\x79\xc0\xd4\x5f\x8d\xc9\xe5\x55\x94\xa2\xe3\xa1\xcf\x7a\x25\x49\x3b\xaa\x60\xd2\x96\x1c\x5b\x25\x99\x1a\x98\x41\xa2\xfb\x0e\x3f\x1b\x52\x7a\x9c\x38\xf8\x1b\x03\x89\xf7\x60\x9f\x0f\x23\x55\xa0\x42\x36\x67\xd0\x2a\xeb\x38\xb2\x3d\x14\x7b\xc5\x87\x50\xad\xab\x2a\x78\xc5\x11\x73\x94\xbb\x60\x1f\x2d\x5f\xa8\x0a\x1a\x46\xf4\xb3\xc1\x64\x5d\xec\x15\x00\xea\x69\x20\xcd\x75\x74\xa1\xed\x0d\x72\xb9\x4c\xbc\x20\x57\xf7\x78\xf0\x0d\xef\xcb\x95\xe8\x3d\x1e\xcc\xc4\x15\xdc\x6c\x7e\xfb\x70\x93\x68\xd2\xf4\xc6\xd6\x3e\xb2\x0a\x6e\x9e\xde\xfd\x72\xa4\x37\x6a\x20\xed\x67\xc8\x55\xf0\xb1\x9c\xc3\x72\xb9\x0a\x3f\x9f\x12\x7f\x20\xd4\x15\x7c\x2c\x96\xa5\xb8\x7b\xb3\x9e\x43\x51\xdc\x89\xe5\xfd\x1c\x8a\x45\x29\xd6\xe5\x11\xe5\x24\xf6\x54\xc1\xc7\xf5\xbd\x28\x1f\xd6\x73\x58\xbf\x11\xc5\x32\xfc\x95\x6f\xd6\x9f\x32\x33\xf1\x38\xb1\x0f\x29\x86\x71\x5d\x2b\x98\x85\x5c\x78\xd6\x31\x2f\x51\x20\x7b\x25\xa5\x91\x03\x3d\x6e\xa9\x87\x19\xe0\x6b\x59\x4d\x98\x53\x32\xb3\xab\xc4\x7a\x73\xde\xd4\x99\x94\x7d\x3b\xd1\xa3\x35\x5b\xdc\xaa\x5e\xb1\x22\x57\xb3\x45\xed\xfc\x16\xa9\xc0\x99\x96\x07\x7c\xf1\x0a\x03\xd1\x0f\xc3\xa5\xfd\x4b\xb9\x57\x34\xa5\xc2\xf9\x3d\xa7\x74\x43\x2f\x47\xf7\xaf\x50\x10\x50\x7e\xe9\x9d\x35\x47\x65\x2d\x21\x4f\x96\x5c\x3d\xd9\xbe\x0a\x23\x52\xe5\xb9\x2b\x05\x0e\xf8\xd5\x68\xdc\x3b\x21\xcd\x90\x3b\x36\x96\x44\xd8\x1b\xc2\xd8\x5d\xee\x0e\xda\x11\xbb\x3c\x34\xa5\x26\x4e\x04\xc1\x2f\x7c\xad\x55\x76\x24\xbf\xb8\x69\xa8\x60\xd5\x2c\xcb\xd5\x76\x7d\x5f\x96\x28\x71\xb5\x7a\x58\xde\x2f\xee\xd6\x58\xdc\x2f\x9a\x6d\xb9\x28\xee\x30\x0b\xf3\xe2\xf3\xea\x46\x92\xaa\xf5\x5e\xc7\x11\xda\x59\x1c\x3b\x40\xdd\xc0\x9e\xd4\xae\x63\x07\xce\x4c\x56\x86\x6c\x6c\xd1\xd1\xff\x73\x3d\xe8\x74\x79\x98\xfd\xb8\x0a\xe4\x73\x2e\x55\x8b\xb6\xde\xab\x86\x2c\x39\x1d\xd7\x52\x06\xd1\x72\x3d\x22\x77\x55\xf4\xe5\xd6\x1d\x86\xad\xe9\xc5\x67\x17\xd6\x7d\xf2\xe7\x0a\xb1\x58\x2c\x16\x22\x74\x85\xf7\x4f\xb9\x1a\xad\xec\xd4\x73\x5a\xdb\x2d\xf6\xce\x4f\xb1\x6a\xc1\x11\xcf\x7d\x39\x62\x4d\x8e\x81\xf8\x5d\x8a\xe0\x0f\x6c\x00\x35\x24\xe9\x20\x1c\x3b\xfc\xec\xd4\x65\x4e\x22\x21\xa8\x6b\x48\x1b\x26\x7f\x4e\x52\xad\xea\x29\x3c\xb6\xee\xd8\x1c\xff\x4d\xe9\x5e\x71\x97\xda\xe3\x6c\x32\x9a\x3a\xd5\xf0\x22\xe2\x33\x0d\x99\xad\xda\x4e\x1c\x97\x34\xbd\xb0\xc5\x54\xb7\x33\x27\x03\xf8\xa2\x74\x53\xc1\xe6\xf1\x31\x45\xe1\xef\xde\x1b\x4d\x93\xc5\x1e\x34\x71\x78\xcb\x7f\xd8\x3c\x3e\xce\xe1\xc9\xff\x08\x21\x7e\xf4\xb3\xee\x1f\x16\xa5\x77\x75\x7a\x49\xd2\xd7\x46\xe1\x1b\x3e\x91\x4e\x2f\x73\xf8\x70\x48\xf8\x0c\x60\x40\xad\x5a\x72\x5c\xe3\xc4\x9d\xb1\x15\x6c\x3a\xd2\x3b\xf8\x5d\x65\x00\x7f\x9a\xb1\xa8\xe0\x61\x2d\x1e\xb2\x7f\x03\x00\x00\xff\xff\x3e\x2d\x89\xbe\xc4\x08\x00\x00"
func cifar_wideresnet40_8YmlBytes() ([]byte, error) {
return bindataRead(
_cifar_wideresnet40_8Yml,
"CIFAR_WideResNet40_8.yml",
)
}
func cifar_wideresnet40_8Yml() (*asset, error) {
bytes, err := cifar_wideresnet40_8YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "CIFAR_WideResNet40_8.yml", size: 2244, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _darknet53Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\xdb\x6e\xe3\x36\x13\xbe\xd7\x53\x0c\xe0\x8b\xfc\x3f\xe0\x50\xb6\x65\x3b\x59\x02\xdd\x8b\xba\xc0\xb6\x40\x9b\x8b\x45\x4f\xc0\x62\x61\x8c\xa9\x91\xc5\x8d\x44\x0a\xe4\x28\x8e\xf7\xe9\x0b\x1e\x7c\x42\x83\x5d\xf4\xc6\x11\x67\xbe\x39\xf0\x9b\x03\x63\xb0\x27\x09\x3f\xa1\x7b\x36\xc4\xab\x0a\x26\x10\x24\x60\x1b\x38\xda\xd1\x41\x6f\x6b\xea\x8a\xc6\x61\x4f\x07\xeb\x9e\x65\x01\x90\x2c\x7e\xfb\xfb\x89\x18\x26\x70\x56\x41\x63\x1d\x70\x4b\xd9\x04\xe0\x85\x9c\xd7\xd6\x48\xb8\x7b\xff\xc3\x5c\xcc\xc5\xec\xee\x06\x9e\xd5\xa0\xac\x61\x87\xda\x70\x71\x36\x98\x8b\x19\x4c\xce\x00\x6d\x1a\xeb\x7a\xe4\xf4\x0d\x9e\x7a\x34\xac\xd5\x59\x9f\xb4\x45\xf0\x83\xda\x90\x93\x30\x81\xf3\xc1\xc3\xe8\xa9\x06\xb6\x30\x90\x0b\xc8\x94\x1e\xd0\x0b\x76\x63\xf4\x59\x00\x60\x5f\xaf\x97\xe1\x6a\x00\xfb\x61\x94\xe0\x50\x0f\xce\x7e\x21\xc5\xa5\x42\xd7\x77\xf7\x0a\x9b\x86\x64\x84\xdd\xab\x61\x8c\x48\xf5\x5d\xe4\x3e\x22\x87\x41\xad\x97\x1d\xc9\xef\x1a\x65\x60\x36\xfb\x76\x2a\xd7\xd8\x9a\xbc\x72\x7a\xe0\x48\xdd\xfb\x02\x72\x69\x7e\xe9\x71\x4f\xb0\xe9\xd0\x7b\xdd\x68\x95\xf8\x8b\x97\x9f\xc2\xa1\xd5\xaa\x05\xed\x21\x32\x4f\x35\x58\x13\x4b\x17\x6d\x82\x71\x8d\x8c\x9e\x58\x14\x00\x7f\x78\xba\x6a\x8f\xc6\xd9\x1e\x3e\x74\xa3\x35\x9b\x3f\x33\x95\x5f\xad\x15\x85\xa3\x86\x1c\x19\x45\x3e\xd0\x7f\x39\x45\xe6\x71\x08\x85\x28\xe1\x40\x3b\xaf\x99\xc2\x27\xb1\x12\x02\x52\xea\x3b\x6d\xf6\x37\x9d\x73\x0f\x2d\xf3\xe0\x65\x59\xee\x43\xa4\x7b\xf5\x22\xfa\x57\x43\x2c\xb4\x2d\x23\x66\xfb\xd5\xda\x52\xdd\x5c\x4d\xb4\xdc\x77\x45\xa7\x15\x19\x4f\x12\x46\xe3\xc8\xb3\xd3\x8a\xa9\x86\x09\x64\x79\x68\xeb\x4b\x20\x6d\x86\x91\x63\xbe\xe9\x22\xe9\x1c\xe3\xf3\x71\x20\x09\x3a\x52\x38\x81\x46\x3b\xcf\x49\x1d\xa0\xd8\x69\x3e\xc6\x12\xdd\x50\x1f\x1c\x27\xcc\xc9\xee\x4a\x7d\x8a\x7c\xe5\x2a\x7a\x18\x30\x0c\x04\x93\xf3\xa9\x41\x00\xa8\xa3\x9e\x0c\x6f\x53\x0a\x4d\x67\x91\xab\x45\xd6\x45\xbb\x6d\x87\xc7\xd0\xe5\xa1\x46\x59\xde\xe1\xd1\x8e\x2c\xe1\x6e\xf3\xf3\x5f\x77\x59\xa6\x6c\x67\xdd\x36\xdc\x4c\xc2\xdd\xc7\x0f\x3f\x9e\xe4\xb5\xee\xc9\x84\xc1\xf1\x12\x3e\x55\x53\x58\x2c\x96\xf1\xe7\x73\xd6\xf7\x84\x46\xc2\xa7\xf9\xa2\x12\xeb\x87\xd5\x14\xe6\xf3\xb5\x58\x3c\x4e\x61\x3e\xab\xc4\xaa\x3a\xa1\xbc\xc2\x8e\x24\x7c\x5a\x3d\x8a\xea\xdd\x6a\x0a\xab\x07\x31\x5f\xc4\x3f\xd5\xc3\xea\x73\x61\x47\x1e\x46\x0e\x57\x4a\xd7\xb8\xad\x15\x4c\x22\x17\x41\x75\xe2\x25\x19\x14\x6f\x50\x9a\x34\xd0\xe1\x8e\x3a\x98\x00\xbe\xc5\x6a\xc6\x9c\xc9\x2c\x6e\x88\x0d\xe1\x42\xa8\x8b\xa8\xf8\x36\xd1\x83\xb3\x3b\xdc\xe9\x4e\xb3\x26\xbf\x65\x87\xc6\x87\xd5\x21\xc1\xdb\x86\x7b\x7c\x0d\x0e\xa3\x30\x0c\xc3\x75\xfc\x6b\xbb\x37\x3c\xe5\xc2\x85\xe5\xa6\x4d\x4d\xaf\xa7\xf4\x6f\x50\x10\x51\x61\xd3\x5d\x3c\x27\x67\x0d\x21\x8f\x8e\xfc\x76\x74\x9d\x8c\x23\x22\xcb\xd2\x57\x02\x7b\xfc\x6a\x0d\x1e\xbc\x50\xb6\x2f\x3d\x5b\x47\x22\x2e\x0b\x61\xdd\xbe\xf4\x47\xe3\x89\x7d\x19\x9b\xd2\x10\x67\x81\xe0\x57\xbe\xf5\xaa\x5a\x52\xcf\x7e\xec\x25\x2c\xeb\x45\xb5\xdc\xad\x1e\xab\x0a\x15\x2e\x97\xef\x16\x8f\xb3\xf5\x0a\xe7\x8f\xb3\x7a\x57\xcd\xe6\x6b\x2c\xe2\xbc\x04\x5e\xfd\x40\x4a\x37\x21\xeb\x34\x42\x7b\x87\x43\x0b\x68\x6a\x38\x90\xde\xb7\xec\xc1\xdb\xd1\xa9\xc8\xc6\x0e\x3d\xfd\xb7\xd4\xa3\x4f\x5f\xc6\xd9\x4f\xab\x40\xbd\x94\xf5\x69\x17\x15\x90\xc2\x6d\x07\xe4\x56\xa6\x04\xee\xfd\xb1\xdf\xd9\x4e\x7c\xf1\x71\xb1\xe7\x24\x6e\x10\xb3\xd9\x6c\x26\x62\x2b\x84\xa4\xb4\xdf\xa2\x53\xad\x7e\xc9\x0b\xba\xc1\xce\x87\xd1\xd5\x0d\x78\xe2\x69\xa8\x41\x2a\xc4\x29\xfb\xb0\x35\x11\xc2\x07\x5b\x40\x03\xd9\x3a\x1a\xa7\xb6\xbe\x24\x75\x4d\x44\x12\x44\x77\x35\x19\xcb\x14\xbe\xb3\x55\xa3\x3b\x8a\xcf\xaa\x3f\x75\xc4\xbf\x79\x3c\x68\x6e\x73\x4f\x5c\x42\xa6\x50\xe7\xc2\x5d\xdd\xf8\x22\x43\x66\xa7\x77\x23\xa7\xcd\x4c\xaf\xec\x30\x17\xeb\xa2\x29\x00\x9e\xb5\xa9\x25\x6c\x9e\x9e\xf2\x2d\xc2\x39\x64\x63\x68\x74\xd8\x81\x21\x8e\xaf\xf6\xff\x36\x4f\x4f\x53\xf8\x18\x7e\x84\x10\xff\x0f\x03\x1e\x9e\x10\x6d\xf6\xdb\xfc\x66\xc8\xcb\x2b\x32\x39\xbd\x23\xe7\x47\x38\xfe\x8f\x90\x0d\x0a\x80\x1e\x8d\x6e\xc8\xf3\x16\x47\x6e\xad\x93\xb0\x69\xc9\xec\xe1\x57\x5d\x00\xfc\x6e\x87\xb9\x84\x87\x47\xb1\x5a\xa7\xd3\x4a\xc2\xbb\xa5\x58\x56\xc5\x3f\x01\x00\x00\xff\xff\xb2\x8d\xb3\x9c\xb3\x08\x00\x00"
func darknet53YmlBytes() ([]byte, error) {
return bindataRead(
_darknet53Yml,
"DarkNet53.yml",
)
}
func darknet53Yml() (*asset, error) {
bytes, err := darknet53YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "DarkNet53.yml", size: 2227, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _densenet121Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\xdb\x6e\xe3\x36\x13\xbe\xd7\x53\x0c\xe0\x8b\xfc\x3f\xe0\x50\x96\x65\x3b\x09\x81\xee\x45\x5d\x60\x5b\xa0\xf5\xc5\xa2\x27\x60\xb1\x30\xc6\xd4\xc8\xe2\x46\x22\x05\x72\x14\xc7\x79\xfa\x82\xa4\x7c\x42\x83\x5d\xf4\xc6\x11\x67\xbe\x39\xf0\x9b\x03\x63\xb0\x23\x09\x3f\x91\xf1\xb4\x21\x2e\xe6\x05\x4c\x20\xc8\xc0\xd6\x70\xb4\x83\x83\xce\x56\xd4\x66\xb5\xc3\x8e\x0e\xd6\x3d\xcb\x0c\x20\xd9\xfc\xf6\xf7\x86\x18\x26\x70\x56\x41\x6d\x1d\x70\x43\xa3\x09\xc0\x0b\x39\xaf\xad\x91\x70\xf7\xe1\x87\x42\x14\x62\x76\x77\x03\x1f\xd5\xa0\xac\x61\x87\xda\x70\x76\x36\x28\xc4\x0c\x26\x67\x80\x36\xb5\x75\x1d\x72\xfa\x06\x4f\x1d\x1a\xd6\xea\xac\x4f\xda\x2c\xf8\x41\x6d\xc8\x49\x98\xc0\xf9\xe0\x61\xf0\x54\x01\x5b\xe8\xc9\x05\x64\x4a\x0f\xe8\x05\xdb\x21\xfa\xcc\x00\xb0\xab\x56\x8b\x70\x35\x80\x7d\x3f\x48\x70\xa8\x7b\x67\xbf\x92\xe2\x5c\xa1\xeb\xda\x7b\x85\x75\x4d\x32\xc2\xee\x55\x3f\x44\xa4\xfa\x2e\x72\x1f\x91\x7d\xaf\x56\x8b\x96\xe4\x77\x8d\x46\xe0\x68\xf6\xed\x54\xae\xb1\x15\x79\xe5\x74\xcf\x91\xba\x0f\x19\x8c\xa5\xf9\xa5\xc3\x3d\xc1\xba\x45\xef\x75\xad\x55\xe2\x2f\x5e\x7e\x0a\x87\x46\xab\x06\xb4\x87\xc8\x3c\x55\x60\x4d\x2c\x5d\xb4\x09\xc6\x15\x32\x7a\x62\x91\x01\xfc\xe1\xe9\xa6\x41\x6a\x67\x3b\xf8\xd8\x0e\xd6\xac\xff\x1c\xc9\x7c\xb3\x56\x64\x8e\x6a\x72\x64\x14\xf9\x50\x80\xcb\x29\x72\x8f\x7d\x28\x45\x0e\x07\xda\x79\xcd\x14\x3e\x89\x95\x10\x90\x92\xdf\x69\xb3\xbf\xe9\x9d\x7b\x68\x98\x7b\x2f\xf3\x7c\x1f\x22\xdd\xab\x17\xd1\xbd\x1a\x62\xa1\x6d\x1e\x31\xdb\x37\x6b\x73\x75\x73\x39\xd1\x70\xd7\x66\xad\x56\x21\x59\x09\x83\x71\xe4\xd9\x69\xc5\x54\xc1\x04\x46\x79\x68\xec\x4b\x20\x6d\xfa\x81\x63\xbe\xe9\x22\xe9\x1c\xe3\xf3\xb1\x27\x09\x3a\x92\x38\x81\x5a\x3b\xcf\x49\x1d\xa0\xd8\x6a\x3e\xc6\x22\xdd\x90\x1f\x1c\x27\xcc\xc9\xee\x4a\x7d\x8a\x7c\xe5\x2a\x7a\xe8\x31\x8c\x04\x93\xf3\xa9\x45\x00\xa8\xa5\x8e\x0c\x6f\x53\x0a\x75\x6b\x91\xcb\xf9\xa8\x8b\x76\xdb\x16\x8f\xa1\xcf\x43\x95\x46\x79\x8b\x47\x3b\xb0\x84\xbb\xf5\xcf\x7f\xdd\x8d\x32\x65\x5b\xeb\xb6\xe1\x66\x12\xee\x3e\x7d\xfc\xf1\x24\xaf\x74\x47\x26\x8c\x8e\x97\xf0\xb9\x9c\xc2\x7c\xbe\x88\x3f\x5f\x46\x7d\x47\x68\x24\x7c\x2e\xe6\xa5\x58\x3d\x2c\xa7\x50\x14\x2b\x31\x7f\x9c\x42\x31\x2b\xc5\xb2\x3c\xa1\xbc\xc2\x96\x24\x7c\x5e\x3e\x8a\xf2\x69\x39\x85\xe5\x83\x28\xe6\xf1\x4f\xf9\xb0\xfc\x92\xd9\x81\xfb\x81\xc3\x95\xd2\x35\x6e\x6b\x05\x93\xc8\x45\x50\x9d\x78\x49\x06\xd9\x3b\x94\x26\x0d\xb4\xb8\xa3\x16\x26\x80\xef\xb1\x3a\x62\xce\x64\x66\x37\xc4\x86\x70\x21\xd4\x45\x94\x7d\x9b\xe8\xde\xd9\x1d\xee\x74\xab\x59\x93\xdf\xb2\x43\xe3\xc3\xf2\x90\xe0\x6d\xcd\x1d\xbe\x06\x87\x51\x18\x86\xe1\x3a\xfe\xb5\xdd\x3b\x9e\xc6\xc2\x85\xf5\xa6\x4d\x45\xaf\xa7\xf4\x6f\x50\x10\x51\x61\xd7\x5d\x3c\x27\x67\x35\x21\x0f\x8e\xfc\x76\x70\xad\x8c\x23\x22\xf3\xdc\x97\x02\x3b\x7c\xb3\x06\x0f\x5e\x28\xdb\xe5\x9e\xad\x23\x11\xd7\x85\xb0\x6e\x9f\xfb\xa3\xf1\xc4\x3e\x8f\x4d\x69\x88\x47\x81\xe0\x57\xbe\xf5\xaa\x1a\x52\xcf\x7e\xe8\x24\x2c\xaa\x79\xb9\xd8\x2d\x1f\xcb\x12\x15\x2e\x16\x4f\xf3\xc7\xd9\x6a\x89\xc5\xe3\xac\xda\x95\xb3\x62\x85\x59\x9c\x97\xc0\xab\xef\x49\xe9\x3a\x64\x9d\x46\x68\xef\xb0\x6f\x00\x4d\x05\x07\xd2\xfb\x86\x3d\x78\x3b\x38\x15\xd9\xd8\xa1\xa7\xff\x96\x7a\xf4\xe9\xf3\x38\xfb\x69\x15\xa8\x97\xbc\x0a\x83\x6c\xe2\x36\xca\x20\x05\xdc\xf6\xc8\x8d\x4c\x29\xdc\xfb\x63\xb7\xb3\xad\xf8\xea\xe3\x72\x1f\xd3\xb8\x41\xcc\x66\xb3\x99\x88\xcd\x10\xd2\xd2\x7e\x8b\x4e\x35\xfa\x65\x5c\xd2\x35\xb6\x3e\x0c\xaf\xae\xc1\x13\x4f\x43\x15\x52\x29\x4e\xf9\x87\xcd\x89\x10\x3e\xd8\x02\x1a\x18\xad\xa3\x71\x6a\xec\x4b\x52\xd7\x54\x24\x41\x74\x57\x91\xb1\x4c\xe1\x7b\xb4\xaa\x75\x4b\xf1\x69\xf5\xa7\x9e\xf8\x37\x93\x07\xcd\xcd\xd8\x15\x97\x90\x29\xd4\xb9\x74\x57\x37\xbe\xc8\x90\xd9\xe9\xdd\xc0\x69\x37\xd3\x2b\x3b\x1c\xcb\x75\xd1\x64\x00\xcf\xda\x54\x12\xd6\x9b\xcd\x78\x8b\x70\x0e\xd9\x18\x1a\x1c\xb6\x60\x88\xe3\xcb\xfd\xbf\xf5\x66\x33\x85\x4f\xe1\x47\x08\xf1\xff\x30\xe2\xe1\x19\xd1\x66\xbf\x1d\xdf\x0d\x79\x79\x49\x26\xa7\xb7\xe4\xfc\x10\xc7\xff\x13\x46\x83\x0c\xa0\x43\xa3\x6b\xf2\xbc\xc5\x81\x1b\xeb\x24\xac\x1b\x32\x7b\xf8\x55\x67\x00\xbf\xdb\xbe\x90\xf0\xb0\x10\x4f\x0f\xe9\xb4\x94\xf0\x34\x17\xf3\x65\xf6\x4f\x00\x00\x00\xff\xff\x0d\x40\x09\x65\xb9\x08\x00\x00"
func densenet121YmlBytes() ([]byte, error) {
return bindataRead(
_densenet121Yml,
"DenseNet121 .yml",
)
}
func densenet121Yml() (*asset, error) {
bytes, err := densenet121YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "DenseNet121 .yml", size: 2233, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _densenet161Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\xdb\x8e\xdb\x36\x13\xbe\xd7\x53\x0c\xe0\x8b\xfd\x7f\xc0\x4b\x49\x96\xed\xdd\x10\x68\x2e\xea\x02\x69\x81\xd6\x17\x41\x4f\x40\x10\x18\x63\x6a\x64\x31\x91\x48\x81\x1c\xad\xd7\x79\xfa\x82\xa4\x7c\x42\x83\x04\xbd\xf1\x8a\x33\xdf\x1c\xf8\xcd\x81\x6b\xb0\x27\x09\x3f\x91\xf1\xb4\x25\x2e\xd7\x25\xcc\x20\xc8\xc0\x36\x70\xb2\xa3\x83\xde\xd6\xd4\x65\x8d\xc3\x9e\x8e\xd6\x7d\x96\x19\x40\xb2\xf9\xed\xef\x2d\x31\xcc\xe0\xa2\x82\xc6\x3a\xe0\x96\x26\x13\x80\x17\x72\x5e\x5b\x23\xe1\xe1\xed\x0f\xa5\x28\x45\xf1\x70\x07\x9f\xd4\xa0\xac\x61\x87\xda\x70\x76\x31\x28\x45\x01\xb3\x0b\x40\x9b\xc6\xba\x1e\x39\x7d\x83\xa7\x1e\x0d\x6b\x75\xd1\x27\x6d\x16\xfc\xa0\x36\xe4\x24\xcc\xe0\x72\xf0\x30\x7a\xaa\x81\x2d\x0c\xe4\x02\x32\xa5\x07\xf4\x82\xdd\x18\x7d\x66\x00\xd8\xd7\xeb\x65\xb8\x1a\xc0\x61\x18\x25\x38\xd4\x83\xb3\x9f\x48\x71\xae\xd0\xf5\xdd\xa3\xc2\xa6\x21\x19\x61\x8f\x6a\x18\x23\x52\x7d\x17\x79\x88\xc8\x61\x50\xeb\x65\x47\xf2\xbb\x46\x13\x70\x32\xfb\x76\x2a\xb7\xd8\x9a\xbc\x72\x7a\xe0\x48\xdd\xdb\x0c\xa6\xd2\xfc\xd2\xe3\x81\x60\xd3\xa1\xf7\xba\xd1\x2a\xf1\x17\x2f\x3f\x87\x63\xab\x55\x0b\xda\x43\x64\x9e\x6a\xb0\x26\x96\x2e\xda\x04\xe3\x1a\x19\x3d\xb1\xc8\x00\xfe\xf0\x74\xd7\x20\x8d\xb3\x3d\xbc\xeb\x46\x6b\x36\x7f\x4e\x64\x7e\xb1\x56\x64\x8e\x1a\x72\x64\x14\xf9\x50\x80\xeb\x29\x72\x8f\x43\x28\x45\x0e\x47\xda\x7b\xcd\x14\x3e\x89\x95\x10\x90\x92\xdf\x6b\x73\xb8\xeb\x9d\x47\x68\x99\x07\x2f\xf3\xfc\x10\x22\x3d\xaa\x17\xd1\xbf\x1a\x62\xa1\x6d\x1e\x31\xbb\x2f\xd6\xe6\xea\xee\x72\xa2\xe5\xbe\xcb\x3a\xad\x42\xb2\x12\x46\xe3\xc8\xb3\xd3\x8a\xa9\x86\x19\x4c\xf2\xd0\xd8\xd7\x40\xda\x0c\x23\xc7\x7c\xd3\x45\xd2\x39\xc6\xe7\xd3\x40\x12\x74\x24\x71\x06\x8d\x76\x9e\x93\x3a\x40\xb1\xd3\x7c\x8a\x45\xba\x23\x3f\x38\x4e\x98\xb3\xdd\x8d\xfa\x1c\xf9\xc6\x55\xf4\x30\x60\x18\x09\x26\xe7\x53\x8b\x00\x50\x47\x3d\x19\xde\xa5\x14\x9a\xce\x22\x57\x8b\x49\x17\xed\x76\x1d\x9e\x42\x9f\x87\x2a\x4d\xf2\x0e\x4f\x76\x64\x09\x0f\x9b\x9f\xff\x7a\x98\x64\xca\x76\xd6\xed\xc2\xcd\x24\x3c\xbc\x7f\xf7\xe3\x59\x5e\xeb\x9e\x4c\x18\x1d\x2f\xe1\x43\x35\x87\xc5\x62\x19\x7f\x3e\x4e\xfa\x9e\xd0\x48\xf8\x50\x2e\x2a\xb1\x7e\x5a\xcd\xa1\x2c\xd7\x62\xf1\x3c\x87\xb2\xa8\xc4\xaa\x3a\xa3\xbc\xc2\x8e\x24\x7c\x58\x3d\x8b\xea\xcd\x6a\x0e\xab\x27\x51\x2e\xe2\x9f\xea\x69\xf5\x31\xb3\x23\x0f\x23\x87\x2b\xa5\x6b\xdc\xd7\x0a\x66\x91\x8b\xa0\x3a\xf3\x92\x0c\xb2\xaf\x50\x9a\x34\xd0\xe1\x9e\x3a\x98\x01\x7e\x8d\xd5\x09\x73\x21\x33\xbb\x23\x36\x84\x0b\xa1\xae\xa2\xec\xdb\x44\x0f\xce\xee\x71\xaf\x3b\xcd\x9a\xfc\x8e\x1d\x1a\x1f\x96\x87\x04\x6f\x1b\xee\xf1\x35\x38\x8c\xc2\x30\x0c\xb7\xf1\x6f\xed\xbe\xe2\x69\x2a\x5c\x58\x6f\xda\xd4\xf4\x7a\x4e\xff\x0e\x05\x11\x15\x76\xdd\xd5\x73\x72\xd6\x10\xf2\xe8\xc8\xef\x46\xd7\xc9\x38\x22\x32\xcf\x7d\x25\xb0\xc7\x2f\xd6\xe0\xd1\x0b\x65\xfb\xdc\xb3\x75\x24\xe2\xba\x10\xd6\x1d\x72\x7f\x32\x9e\xd8\xe7\xb1\x29\x0d\xf1\x24\x10\xfc\xca\xf7\x5e\x55\x4b\xea\xb3\x1f\x7b\x09\xcb\x7a\x51\x2d\xf7\xab\xe7\xaa\x42\x85\xcb\xe5\x9b\xc5\x73\xb1\x5e\x61\xf9\x5c\xd4\xfb\xaa\x28\xd7\x98\xc5\x79\x09\xbc\xfa\x81\x94\x6e\x42\xd6\x69\x84\x0e\x0e\x87\x16\xd0\xd4\x70\x24\x7d\x68\xd9\x83\xb7\xa3\x53\x91\x8d\x3d\x7a\xfa\x6f\xa9\x47\x9f\x3e\x8f\xb3\x9f\x56\x81\x7a\xc9\xeb\x30\xc8\x26\x6e\xa3\x0c\x52\xc0\xdd\x80\xdc\xca\x94\xc2\xa3\x3f\xf5\x7b\xdb\x89\x4f\x3e\x2e\xf7\x29\x8d\x3b\x44\x51\x14\x85\x88\xcd\x10\xd2\xd2\x7e\x87\x4e\xb5\xfa\x65\x5a\xd2\x0d\x76\x3e\x0c\xaf\x6e\xc0\x13\xcf\x43\x15\x52\x29\xce\xf9\x87\xcd\x89\x10\x3e\xd8\x02\x1a\x98\xac\xa3\x71\x6a\xec\x6b\x52\xb7\x54\x24\x41\x74\x57\x93\xb1\x4c\xe1\x7b\xb2\x6a\x74\x47\xf1\x69\xf5\xe7\x9e\xf8\x37\x93\x47\xcd\xed\xd4\x15\xd7\x90\x29\xd4\xa5\x74\x37\x37\xbe\xca\x90\xd9\xe9\xfd\xc8\x69\x37\xd3\x2b\x3b\x9c\xca\x75\xd5\x64\x00\x9f\xb5\xa9\x25\x6c\xb6\xdb\xe9\x16\xe1\x1c\xb2\x31\x34\x3a\xec\xc0\x10\xc7\x97\xfb\x7f\x9b\xed\x76\x0e\xef\xc3\x8f\x10\xe2\xff\x61\xc4\xc3\x33\xa2\xcd\x61\x37\xbd\x1b\xf2\xfa\x92\xcc\xce\x6f\xc9\xe5\x21\x8e\xff\x27\x4c\x06\x19\x40\x8f\x46\x37\xe4\x79\x87\x23\xb7\xd6\x49\xd8\xb4\x64\x0e\xf0\xab\xce\x00\x7e\xb7\x43\x29\xe1\xe9\x49\x3c\x15\xe9\xb4\x92\xf0\xa6\x12\xcf\x45\xf6\x4f\x00\x00\x00\xff\xff\xf6\x1d\xda\x07\xb9\x08\x00\x00"
func densenet161YmlBytes() ([]byte, error) {
return bindataRead(
_densenet161Yml,
"DenseNet161.yml",
)
}
func densenet161Yml() (*asset, error) {
bytes, err := densenet161YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "DenseNet161.yml", size: 2233, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _densenet169Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\xdb\x6e\xe3\x36\x13\xbe\xd7\x53\x0c\xe0\x8b\xfc\x3f\xe0\x50\x96\x65\x3b\x09\x81\xee\x45\x5d\x60\x5b\xa0\xf5\xc5\xa2\x27\x60\xb1\x30\xc6\xd4\xc8\xe2\x46\x22\x05\x72\x14\xc7\x79\xfa\x82\xa4\x7c\x42\x83\x5d\xf4\xc6\x11\x67\xbe\x39\xf0\x9b\x03\x63\xb0\x23\x09\x3f\x91\xf1\xb4\x21\x2e\x56\x4f\x30\x81\x20\x03\x5b\xc3\xd1\x0e\x0e\x3a\x5b\x51\x9b\xd5\x0e\x3b\x3a\x58\xf7\x2c\x33\x80\x64\xf3\xdb\xdf\x1b\x62\x98\xc0\x59\x05\xb5\x75\xc0\x0d\x8d\x26\x00\x2f\xe4\xbc\xb6\x46\xc2\xdd\x87\x1f\x0a\x51\x88\xd9\xdd\x0d\x7c\x54\x83\xb2\x86\x1d\x6a\xc3\xd9\xd9\xa0\x10\x33\x98\x9c\x01\xda\xd4\xd6\x75\xc8\xe9\x1b\x3c\x75\x68\x58\xab\xb3\x3e\x69\xb3\xe0\x07\xb5\x21\x27\x61\x02\xe7\x83\x87\xc1\x53\x05\x6c\xa1\x27\x17\x90\x29\x3d\xa0\x17\x6c\x87\xe8\x33\x03\xc0\xae\x5a\x2d\xc2\xd5\x00\xf6\xfd\x20\xc1\xa1\xee\x9d\xfd\x4a\x8a\x73\x85\xae\x6b\xef\x15\xd6\x35\xc9\x08\xbb\x57\xfd\x10\x91\xea\xbb\xc8\x7d\x44\xf6\xbd\x5a\x2d\x5a\x92\xdf\x35\x1a\x81\xa3\xd9\xb7\x53\xb9\xc6\x56\xe4\x95\xd3\x3d\x47\xea\x3e\x64\x30\x96\xe6\x97\x0e\xf7\x04\xeb\x16\xbd\xd7\xb5\x56\x89\xbf\x78\xf9\x29\x1c\x1a\xad\x1a\xd0\x1e\x22\xf3\x54\x81\x35\xb1\x74\xd1\x26\x18\x57\xc8\xe8\x89\x45\x06\xf0\x87\xa7\x9b\x06\xa9\x9d\xed\xe0\x63\x3b\x58\xb3\xfe\x73\x24\xf3\xcd\x5a\x91\x39\xaa\xc9\x91\x51\xe4\x43\x01\x2e\xa7\xc8\x3d\xf6\xa1\x14\x39\x1c\x68\xe7\x35\x53\xf8\x24\x56\x42\x40\x4a\x7e\xa7\xcd\xfe\xa6\x77\xee\xa1\x61\xee\xbd\xcc\xf3\x7d\x88\x74\xaf\x5e\x44\xf7\x6a\x88\x85\xb6\x79\xc4\x6c\xdf\xac\xcd\xd5\xcd\xe5\x44\xc3\x5d\x9b\xb5\x5a\x85\x64\x25\x0c\xc6\x91\x67\xa7\x15\x53\x05\x13\x18\xe5\xa1\xb1\x2f\x81\xb4\xe9\x07\x8e\xf9\xa6\x8b\xa4\x73\x8c\xcf\xc7\x9e\x24\xe8\x48\xe2\x04\x6a\xed\x3c\x27\x75\x80\x62\xab\xf9\x18\x8b\x74\x43\x7e\x70\x9c\x30\x27\xbb\x2b\xf5\x29\xf2\x95\xab\xe8\xa1\xc7\x30\x12\x4c\xce\xa7\x16\x01\xa0\x96\x3a\x32\xbc\x4d\x29\xd4\xad\x45\x2e\xe7\xa3\x2e\xda\x6d\x5b\x3c\x86\x3e\x0f\x55\x1a\xe5\x2d\x1e\xed\xc0\x12\xee\xd6\x3f\xff\x75\x37\xca\x94\x6d\xad\xdb\x86\x9b\x49\xb8\xfb\xf4\xf1\xc7\x93\xbc\xd2\x1d\x99\x30\x3a\x5e\xc2\xe7\x72\x0a\xf3\xf9\x22\xfe\x7c\x19\xf5\x1d\xa1\x91\xf0\xb9\x98\x97\x62\xf5\xb0\x9c\x42\x51\xac\xc4\xfc\x71\x0a\xc5\xac\x14\xcb\xf2\x84\xf2\x0a\x5b\x92\xf0\x79\xf9\x28\xca\xa7\xe5\x14\x96\x0f\xa2\x98\xc7\x3f\xe5\xc3\xf2\x4b\x66\x07\xee\x07\x0e\x57\x4a\xd7\xb8\xad\x15\x4c\x22\x17\x41\x75\xe2\x25\x19\x64\xef\x50\x9a\x34\xd0\xe2\x8e\x5a\x98\x00\xbe\xc7\xea\x88\x39\x93\x99\xdd\x10\x1b\xc2\x85\x50\x17\x51\xf6\x6d\xa2\x7b\x67\x77\xb8\xd3\xad\x66\x4d\x7e\xcb\x0e\x8d\x0f\xcb\x43\x82\xb7\x35\x77\xf8\x1a\x1c\x46\x61\x18\x86\xeb\xf8\xd7\x76\xef\x78\x1a\x0b\x17\xd6\x9b\x36\x15\xbd\x9e\xd2\xbf\x41\x41\x44\x85\x5d\x77\xf1\x9c\x9c\xd5\x84\x3c\x38\xf2\xdb\xc1\xb5\x32\x8e\x88\xcc\x73\x5f\x0a\xec\xf0\xcd\x1a\x3c\x78\xa1\x6c\x97\x7b\xb6\x8e\x44\x5c\x17\xc2\xba\x7d\xee\x8f\xc6\x13\xfb\x3c\x36\xa5\x21\x1e\x05\x82\x5f\xf9\xd6\xab\x6a\x48\x3d\xfb\xa1\x93\xb0\xa8\xe6\xe5\x62\xb7\x7c\x2c\x4b\x54\xb8\x58\x3c\xcd\x1f\x67\xab\x25\x16\x8f\xb3\x6a\x57\xce\x8a\x15\x66\x71\x5e\x02\xaf\xbe\x27\xa5\xeb\x90\x75\x1a\xa1\xbd\xc3\xbe\x01\x34\x15\x1c\x48\xef\x1b\xf6\xe0\xed\xe0\x54\x64\x63\x87\x9e\xfe\x5b\xea\xd1\xa7\xcf\xe3\xec\xa7\x55\xa0\x5e\xf2\x2a\x0c\xb2\x89\xdb\x28\x83\x14\x70\xdb\x23\x37\x32\xa5\x70\xef\x8f\xdd\xce\xb6\xe2\xab\x8f\xcb\x7d\x4c\xe3\x06\x31\x9b\xcd\x66\x22\x36\x43\x48\x4b\xfb\x2d\x3a\xd5\xe8\x97\x71\x49\xd7\xd8\xfa\x30\xbc\xba\x06\x4f\x3c\x0d\x55\x48\xa5\x38\xe5\x1f\x36\x27\x42\xf8\x60\x0b\x68\x60\xb4\x8e\xc6\xa9\xb1\x2f\x49\x5d\x53\x91\x04\xd1\x5d\x45\xc6\x32\x85\xef\xd1\xaa\xd6\x2d\xc5\xa7\xd5\x9f\x7a\xe2\xdf\x4c\x1e\x34\x37\x63\x57\x5c\x42\xa6\x50\xe7\xd2\x5d\xdd\xf8\x22\x43\x66\xa7\x77\x03\xa7\xdd\x4c\xaf\xec\x70\x2c\xd7\x45\x93\x01\x3c\x6b\x53\x49\x58\x6f\x36\xe3\x2d\xc2\x39\x64\x63\x68\x70\xd8\x82\x21\x8e\x2f\xf7\xff\xd6\x9b\xcd\x14\x3e\x85\x1f\x21\xc4\xff\xc3\x88\x87\x67\x44\x9b\xfd\x76\x7c\x37\xe4\xe5\x25\x99\x9c\xde\x92\xf3\x43\x1c\xff\x4f\x18\x0d\x32\x80\x0e\x8d\xae\xc9\xf3\x16\x07\x6e\xac\x93\xb0\x6e\xc8\xec\xe1\x57\x9d\x01\xfc\x6e\xfb\x42\xc2\xc3\x4a\x14\x0f\xe9\xb4\x94\xf0\x54\x86\xd3\x3f\x01\x00\x00\xff\xff\x45\x88\x9d\x10\xb9\x08\x00\x00"
func densenet169YmlBytes() ([]byte, error) {
return bindataRead(
_densenet169Yml,
"DenseNet169.yml",
)
}
func densenet169Yml() (*asset, error) {
bytes, err := densenet169YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "DenseNet169.yml", size: 2233, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _densenet201Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x4b\x6f\xe3\x36\x10\xbe\xeb\x57\x0c\xe0\x43\x5a\xc0\xa1\x2c\xcb\x76\xb2\x04\xba\x87\xba\xc0\xb6\x40\xeb\xc3\x62\xfb\x00\x16\x0b\x63\x4c\x8d\x2c\x6e\x24\x52\x20\x47\x71\x9c\x5f\x5f\x90\x94\x5f\x68\xb0\x8b\x5e\x1c\x71\xe6\x9b\x07\xbf\x79\x30\x06\x3b\x92\xf0\x0b\x19\x4f\x1b\xe2\xf9\xac\x80\x09\x04\x19\xd8\x1a\x8e\x76\x70\xd0\xd9\x8a\xda\xac\x76\xd8\xd1\xc1\xba\x27\x99\x01\x24\x9b\x3f\xfe\xd9\x10\xc3\x04\xce\x2a\xa8\xad\x03\x6e\x68\x34\x01\x78\x26\xe7\xb5\x35\x12\xee\xde\xff\x54\x88\x42\xcc\xee\x6e\xe0\xa3\x1a\x94\x35\xec\x50\x1b\xce\xce\x06\x85\x98\xc1\xe4\x0c\xd0\xa6\xb6\xae\x43\x4e\xdf\xe0\xa9\x43\xc3\x5a\x9d\xf5\x49\x9b\x05\x3f\xa8\x0d\x39\x09\x13\x38\x1f\x3c\x0c\x9e\x2a\x60\x0b\x3d\xb9\x80\x4c\xe9\x01\x3d\x63\x3b\x44\x9f\x19\x00\x76\xd5\x6a\x11\xae\x06\xb0\xef\x07\x09\x0e\x75\xef\xec\x57\x52\x9c\x2b\x74\x5d\x7b\xaf\xb0\xae\x49\x46\xd8\xbd\xea\x87\x88\x54\xdf\x45\xee\x23\xb2\xef\xd5\x6a\xd1\x92\xfc\xae\xd1\x08\x1c\xcd\xbe\x9d\xca\x35\xb6\x22\xaf\x9c\xee\x39\x52\xf7\x3e\x83\xb1\x34\xbf\x75\xb8\x27\x58\xb7\xe8\xbd\xae\xb5\x4a\xfc\xc5\xcb\x4f\xe1\xd0\x68\xd5\x80\xf6\x10\x99\xa7\x0a\xac\x89\xa5\x8b\x36\xc1\xb8\x42\x46\x4f\x2c\x32\x80\x3f\x3d\xdd\x34\x48\xed\x6c\x07\x1f\xda\xc1\x9a\xf5\x5f\x23\x99\xaf\xd6\x8a\xcc\x51\x4d\x8e\x8c\x22\x1f\x0a\x70\x39\x45\xee\xb1\x0f\xa5\xc8\xe1\x40\x3b\xaf\x99\xc2\x27\xb1\x12\x02\x52\xf2\x3b\x6d\xf6\x37\xbd\x73\x0f\x0d\x73\xef\x65\x9e\xef\x43\xa4\x7b\xf5\x2c\xba\x17\x43\x2c\xb4\xcd\x23\x66\xfb\x6a\x6d\xae\x6e\x2e\x27\x1a\xee\xda\xac\xd5\x2a\x24\x2b\x61\x30\x8e\x3c\x3b\xad\x98\x2a\x98\xc0\x28\x0f\x8d\x7d\x09\xa4\x4d\x3f\x70\xcc\x37\x5d\x24\x9d\x63\x7c\x3e\xf6\x24\x41\x47\x12\x27\x50\x6b\xe7\x39\xa9\x03\x14\x5b\xcd\xc7\x58\xa4\x1b\xf2\x83\xe3\x84\x39\xd9\x5d\xa9\x4f\x91\xaf\x5c\x45\x0f\x3d\x86\x91\x60\x72\x3e\xb5\x08\x00\xb5\xd4\x91\xe1\x6d\x4a\xa1\x6e\x2d\x72\x39\x1f\x75\xd1\x6e\xdb\xe2\x31\xf4\x79\xa8\xd2\x28\x6f\xf1\x68\x07\x96\x70\xb7\xfe\xf5\xef\xbb\x51\xa6\x6c\x6b\xdd\x36\xdc\x4c\xc2\xdd\xc7\x0f\x3f\x9f\xe4\x95\xee\xc8\x84\xd1\xf1\x12\x3e\x97\x53\x98\xcf\x17\xf1\xe7\xcb\xa8\xef\x08\x8d\x84\xcf\xc5\xbc\x14\xab\x87\xe5\x14\x8a\x62\x25\xe6\x8f\x53\x28\x66\xa5\x58\x96\x27\x94\x57\xd8\x92\x84\xcf\xcb\x47\x51\xbe\x5b\x4e\x61\xf9\x20\x8a\x79\xfc\x53\x3e\x2c\xbf\x64\x76\xe0\x7e\xe0\x70\xa5\x74\x8d\xdb\x5a\xc1\x24\x72\x11\x54\x27\x5e\x92\x41\xf6\x06\xa5\x49\x03\x2d\xee\xa8\x85\x09\xe0\x5b\xac\x8e\x98\x33\x99\xd9\x0d\xb1\x21\x5c\x08\x75\x11\x65\xdf\x26\xba\x77\x76\x87\x3b\xdd\x6a\xd6\xe4\xb7\xec\xd0\xf8\xb0\x3c\x24\x78\x5b\x73\x87\x2f\xc1\x61\x14\x86\x61\xb8\x8e\x7f\x6d\xf7\x86\xa7\xb1\x70\x61\xbd\x69\x53\xd1\xcb\x29\xfd\x1b\x14\x44\x54\xd8\x75\x17\xcf\xc9\x59\x4d\xc8\x83\x23\xbf\x1d\x5c\x2b\xe3\x88\xc8\x3c\xf7\xa5\xc0\x0e\x5f\xad\xc1\x83\x17\xca\x76\xb9\x67\xeb\x48\xc4\x75\x21\xac\xdb\xe7\xfe\x68\x3c\xb1\xcf\x63\x53\x1a\xe2\x51\x20\xf8\x85\x6f\xbd\xaa\x86\xd4\x93\x1f\x3a\x09\x8b\x6a\x5e\x2e\x76\xcb\xc7\xb2\x44\x85\x8b\xc5\xbb\xf9\xe3\x6c\xb5\xc4\xe2\x71\x56\xed\xca\x59\xb1\xc2\x2c\xce\x4b\xe0\xd5\xf7\xa4\x74\x1d\xb2\x4e\x23\xb4\x77\xd8\x37\x80\xa6\x82\x03\xe9\x7d\xc3\x1e\xbc\x1d\x9c\x8a\x6c\xec\xd0\xd3\xff\x4b\x3d\xfa\xf4\x79\x9c\xfd\xb4\x0a\xd4\x73\x5e\x85\x41\x36\x71\x1b\x65\x90\x02\x6e\x7b\xe4\x46\xa6\x14\xee\xfd\xb1\xdb\xd9\x56\x7c\xf5\x71\xb9\x8f\x69\xdc\x20\x66\xb3\xd9\x4c\xc4\x66\x08\x69\x69\xbf\x45\xa7\x1a\xfd\x3c\x2e\xe9\x1a\x5b\x1f\x86\x57\xd7\xe0\x89\xa7\xa1\x0a\xa9\x14\xa7\xfc\xc3\xe6\x44\x08\x1f\x6c\x01\x0d\x8c\xd6\xd1\x38\x35\xf6\x25\xa9\x6b\x2a\x92\x20\xba\xab\xc8\x58\xa6\xf0\x3d\x5a\xd5\xba\xa5\xf8\xb4\xfa\x53\x4f\xfc\x97\xc9\x83\xe6\x66\xec\x8a\x4b\xc8\x14\xea\x5c\xba\xab\x1b\x5f\x64\xc8\xec\xf4\x6e\xe0\xb4\x9b\xe9\x85\x1d\x8e\xe5\xba\x68\x32\x80\x27\x6d\x2a\x09\xeb\xcd\x66\xbc\x45\x38\x87\x6c\x0c\x0d\x0e\x5b\x30\xc4\xf1\xe5\xfe\x61\xbd\xd9\x4c\xe1\x63\xf8\x11\x42\xfc\x18\x46\x3c\x3c\x23\xda\xec\xb7\xe3\xbb\x21\x2f\x2f\xc9\xe4\xf4\x96\x9c\x1f\xe2\xf8\x7f\xc2\x68\x90\x01\x74\x68\x74\x4d\x9e\xb7\x38\x70\x63\x9d\x84\x75\x43\x66\x0f\xbf\xeb\x0c\xe0\x93\xed\x0b\x09\x0f\x0f\x22\x8e\xe5\x27\xdb\x2f\x25\xbc\x2b\xc5\x6a\x9e\xfd\x1b\x00\x00\xff\xff\xd6\x0c\x26\x9d\xb9\x08\x00\x00"
func densenet201YmlBytes() ([]byte, error) {
return bindataRead(
_densenet201Yml,
"DenseNet201.yml",
)
}
func densenet201Yml() (*asset, error) {
bytes, err := densenet201YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "DenseNet201.yml", size: 2233, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _faster_rcnn_resnet50_v1b_vocYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\x6d\x8f\xdb\x36\x0c\xfe\xee\x5f\x41\x20\x1f\x6e\x03\x72\x8a\x7d\x6e\x72\x57\x03\x2b\xb0\x65\x58\x37\x60\x4b\x8b\x03\xda\x0d\x28\x0a\x83\x96\x69\x5b\x3d\x5b\x32\x24\x3a\x77\xe9\xaf\x1f\x24\x39\x2f\x87\x76\xed\xbe\x24\xb2\xf8\x90\xe2\xcb\x43\x52\xe3\x40\x05\xfc\x86\x8e\xc9\x96\xf7\xdb\xdd\xae\xbc\x27\xb7\x23\x5e\xa7\xe5\x3e\xab\xca\xf7\x6f\xb6\xb0\x00\x0f\x02\xd3\xc0\xc1\x4c\x16\x06\x53\x53\x9f\x34\x16\x07\x7a\x34\xf6\xa1\x48\x00\xa2\x91\xbf\xfe\xd9\x11\xc3\x02\x4e\x22\x68\x8c\x05\xee\x68\x56\x01\xd8\x93\x75\xca\xe8\x02\xae\x5e\xfd\x94\x89\x4c\xa4\x57\xcf\xe0\xb3\x18\xa4\xd1\x6c\x51\x69\x4e\x4e\x0a\x99\x48\x61\x71\x02\x28\xdd\x18\x3b\x20\xc7\x33\x38\x1a\x50\xb3\x92\x27\x79\x94\x26\xde\x0e\x2a\x4d\xb6\x80\x05\x9c\x3e\x1c\x4c\x8e\x6a\x60\x03\x23\x59\x8f\x8c\xee\x01\xed\xb1\x9f\x82\xcd\x04\x00\x87\x7a\xf3\xc2\x87\x06\xd0\x8e\x53\x01\x16\xd5\x68\xcd\x27\x92\xbc\x92\x68\x87\xfe\x5a\x62\xd3\x50\x11\x60\xd7\x72\x9c\x02\x52\x7e\x17\xd9\x06\xe4\x38\xca\xcd\x8b\x9e\x8a\xef\x2a\xcd\xc0\x59\xed\xdb\xae\x5c\x62\x6b\x72\xd2\xaa\x91\x43\xea\x5e\x25\x30\x97\xe6\x4d\xe5\xb5\xe0\x57\x62\x92\x21\x77\x21\xf0\x25\x3c\x76\x4a\x76\xa0\x1c\x84\xac\x53\x0d\x46\x87\xb2\xbd\x45\x27\xb1\x07\xcf\x81\x1a\x19\x1d\xb1\x48\x00\xde\x39\x82\x26\xf2\xc5\x4a\xad\x4b\x4b\x4e\x9f\xf8\xb2\x37\x12\x1a\x6b\x06\x78\xdd\x4f\x46\x6f\xdf\xcf\xb9\xfd\x6c\x8c\x48\x2c\x35\x64\x49\x4b\x72\xbe\x1e\xe7\xaf\x50\x0a\x1c\x7d\x65\x56\xf0\x48\x95\x53\x4c\xfe\x48\x2c\x85\x80\x18\x4b\xa5\x74\xfb\x8c\x4a\xd7\xd0\x31\x8f\xae\x58\xad\x5a\xff\xd2\xb5\xdc\x8b\xe1\x49\x13\x0b\x65\x56\x01\x53\x7e\x36\x66\x55\x1f\x43\x15\x1d\x0f\x7d\xd2\x2b\x49\xda\x51\x01\x93\xb6\xe4\xd8\x2a\xc9\x54\xc3\x02\xe6\x7b\x4f\xf1\xf3\x1b\x4a\x8f\x13\x07\x57\x63\x0c\xf1\x3b\x3c\xcd\x87\x91\x0a\x50\x03\xb6\xe4\x09\xac\xac\xe3\x28\xf6\x50\xec\x15\x1f\x42\xb9\x9e\x95\xc1\x1b\x8e\x98\xa3\xde\x85\xf8\xf8\xf2\x85\xa9\x60\x61\x44\xdf\x1c\x4c\xd6\x45\xb2\x00\x50\x4f\x03\x69\x2e\xa3\x0b\x4d\x6f\x90\xf3\x9b\x59\x16\xf4\xca\x1e\x0f\x9e\xf1\x57\xbe\x64\x57\xb3\xa4\xc7\x83\x99\xb8\x80\xab\xed\xef\x7f\x1f\xef\xa4\xe9\x8d\x2d\x7d\x6c\x05\x5c\xdd\xbf\xfe\xe5\x78\x5f\xab\x81\xb4\x6f\x23\x57\xc0\x87\x7c\x09\x79\x9a\x2e\xe1\x45\x9a\x7e\x9c\xe5\x03\xa1\x2e\xe0\x43\x76\x93\x8b\xcd\xed\x7a\x09\x59\xb6\x11\x37\x77\x4b\xc8\xd2\x5c\xac\xf3\x23\xca\x33\x87\x0a\xf8\xb0\xbe\x13\xf9\xcb\xf5\x12\xd6\xb7\x22\xbb\x09\x7f\xf9\xed\xfa\x63\x62\x26\x1e\x27\xf6\x41\xc5\x40\x2a\x33\xe9\x5a\xe9\xb6\x32\x4f\xc9\x57\x12\x17\xe1\x27\x14\x54\xe6\x09\x16\x80\x5f\x4b\xe1\x0c\x3d\x65\x2e\xf9\x32\x8b\xff\x9d\x43\xd9\xa3\x73\xe4\x8e\x39\x4c\x63\x11\xac\xa9\xb0\x52\xbd\x62\x75\x16\x65\x41\x54\x99\xa7\xf3\x55\x34\xd1\x10\xf2\x64\xc9\x95\x93\xed\x8b\x13\x49\x5d\x2e\x70\xc0\xcf\x46\xe3\xa3\x13\xd2\x0c\x2b\xc7\xc6\x92\x08\x0d\x2c\x8c\x6d\x57\xee\xa0\x1d\xb1\x5b\x8d\xa1\xe7\x7c\x1f\x5d\x1c\xcb\x1e\xab\x9e\x5c\xa9\x4d\x59\xa1\x7c\x68\xad\xcf\x83\xe0\x27\x7e\xfe\xa2\xec\x48\x3e\xb8\x69\x28\x60\x8d\xb4\xae\x37\x37\xd9\x5d\x2e\x9b\x6a\xd3\x6c\xea\x1c\x65\x96\xbe\xcc\xd7\x2f\xeb\x74\x83\x59\x95\x04\x4a\x7b\x6e\xbb\x91\xa4\x6a\x14\xb9\x99\xe5\xad\xc5\xb1\x03\xd4\x35\x3c\x92\x6a\x3b\x76\xe0\xcc\x64\x25\x79\xe2\x57\xe8\xe8\x1c\xd6\xff\x89\x2a\xd8\x74\xab\xd0\x99\xb1\x51\xe5\x7e\xf5\xad\xe1\x91\x40\xf4\xa0\x1c\x91\xbb\x22\xfa\x74\xed\x0e\x43\x65\x7a\xf1\xc9\x85\xd1\x3c\xfb\xf5\x0c\x91\xa6\x69\x2a\x42\x99\xbd\x9f\xca\x95\x68\x65\xa7\xf6\xf3\x88\x6d\xb0\x77\xbe\xe1\x54\x03\x8e\x78\xe9\x69\x12\x07\xdc\x31\x20\x3f\xfb\x10\xfc\x81\x0d\xa0\x86\x59\x3b\x28\x2f\x02\xf2\xec\xd4\x65\x6e\xe2\x45\x30\x57\x93\x36\x4c\xfe\x3c\x6b\x35\xaa\xa7\xb0\x18\xdd\x91\x99\x5f\xa6\xf6\x51\x71\xa7\xa2\x2b\xe7\x27\xe3\x53\xa7\x5a\x5e\x44\x7c\xbe\x43\x66\xab\xaa\x89\xe3\x28\xa5\x27\xb6\x38\xd7\xef\x2c\x49\x00\x1e\x94\xae\x0b\xd8\xee\x76\x73\x14\xfe\xdb\x7b\xa3\x69\xb2\xd8\x83\x26\x0e\x7b\xf7\x87\xed\x6e\xb7\x84\x7b\xff\x23\x84\xf8\xd1\x37\xa5\x5f\x04\x4a\xb7\xe5\x3c\xf7\x8b\xcb\x5d\xb0\x38\x6e\x83\xd3\x22\x0d\x7b\x7e\x56\x49\x00\x06\xd4\xaa\x21\xc7\x25\x4e\xdc\x19\x5b\xc0\xb6\x23\xdd\xc2\x9f\x2a\x01\xf8\xc3\xbc\x03\xee\x2c\xb9\xce\xf4\x75\x01\xa9\x58\x7b\x85\x9f\xdf\x16\x70\x7b\x27\xf2\xe4\xdf\x00\x00\x00\xff\xff\xf2\xb9\xdf\xd0\x8f\x08\x00\x00"
func faster_rcnn_resnet50_v1b_vocYmlBytes() ([]byte, error) {
return bindataRead(
_faster_rcnn_resnet50_v1b_vocYml,
"Faster_RCNN_ResNet50_v1b_VOC.yml",
)
}
func faster_rcnn_resnet50_v1b_vocYml() (*asset, error) {
bytes, err := faster_rcnn_resnet50_v1b_vocYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "Faster_RCNN_ResNet50_v1b_VOC.yml", size: 2191, mode: os.FileMode(436), modTime: time.Unix(1561079831, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _inception_v3Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\xc9\x8e\xdb\x38\x13\xbe\xeb\x29\x0a\xf0\xa1\xff\x1f\x70\x53\xb6\x65\xf7\x42\x60\x72\x98\x3e\x64\x02\xcc\xf4\x21\x98\x0d\x08\x02\xa3\x44\x95\x2c\x26\x14\x29\x90\x25\x77\x3b\x4f\x3f\x20\x29\x6f\x99\x20\xc1\x5c\x6c\xb2\xf6\xfa\x6a\xa1\x2c\xf6\x24\xe1\x9d\x55\x34\xb0\x76\x76\xbb\xaf\x60\x06\x91\x08\xae\x85\x83\x1b\x3d\xf4\xae\x21\x53\xb4\x1e\x7b\x7a\x71\xfe\xb3\x2c\x00\xb2\xd2\x6f\x7f\x3f\x13\xc3\x0c\x4e\x2c\x68\x9d\x07\xee\x68\x52\x01\xd8\x93\x0f\xda\x59\x09\x37\x6f\x7e\x5a\x8a\xa5\x58\xdc\x5c\x89\x4f\x6c\x50\xce\xb2\x47\x6d\xb9\x38\x29\x2c\xc5\x02\x66\x27\x01\x6d\x5b\xe7\x7b\xe4\x7c\x86\x40\x3d\x5a\xd6\xea\xc4\xcf\xdc\x22\xda\x41\x6d\xc9\x4b\x98\xc1\xe9\x12\x60\x0c\xd4\x00\x3b\x18\xc8\x47\xc9\x1c\x1e\xd0\x1e\xcd\x98\x6c\x16\x00\xd8\x37\x77\xeb\x98\x1a\xc0\x6e\x18\x25\x78\xd4\x83\x77\x9f\x48\x71\xa9\xd0\xf7\xe6\x56\x61\xdb\x92\x4c\x62\xb7\x6a\x18\x93\xa4\xfa\xa1\xe4\x2e\x49\x0e\x83\xba\x5b\x1b\x92\x3f\x54\x9a\x04\x27\xb5\xef\x87\x72\x29\xdb\x50\x50\x5e\xa7\x02\x4a\x78\x53\xc0\x54\x9a\x77\x3d\xee\x08\x9e\x0c\x86\xa0\x5b\xad\x32\x7e\x29\xf9\x39\xbc\x74\x5a\x75\xa0\x03\x24\xe4\xa9\x01\x67\x53\xe9\x92\x4e\x54\x6e\x90\x31\x10\x8b\x02\xe0\x8f\x40\xd7\x1d\xd2\x7a\xd7\xc3\x5b\x33\x3a\xfb\xf4\xe7\x84\xe6\x17\xe7\x44\xe1\xa9\x25\x4f\x56\x51\x88\x15\x38\xdf\x12\xf8\x38\xc4\x5a\x94\xf0\x42\x75\xd0\x4c\xf1\x48\xac\x84\x80\x1c\x7d\xad\xed\xee\xaa\x79\x6e\xa1\x63\x1e\x82\x2c\xcb\x5d\xf4\x74\xab\xf6\xa2\x7f\xb5\xc4\x42\xbb\x32\xc9\x6c\xbf\x38\x57\xaa\xab\xec\x44\xc7\xfd\x57\xba\x9a\xbb\xb1\x16\xca\xf5\x65\xd3\x1b\x75\xb2\x55\xd6\xc6\xd5\x65\x8f\x81\xc9\x97\x19\xbd\xf0\x95\xb1\x52\x47\x2c\x2c\x71\xb9\x27\xaf\xdb\xc3\x76\xf0\x34\xa1\x25\x86\x43\x61\xb4\x22\x1b\x48\xc2\x68\x3d\x05\xf6\x5a\x31\x35\x30\x83\x89\x1e\xe7\xe7\x9c\x8e\xb6\xc3\xc8\x09\x95\x0c\x57\xbe\xa7\x48\xf9\x30\x90\x84\xe4\x2b\x4e\x87\xf6\x81\x33\x3b\x8a\xa2\xd1\x7c\x48\xbd\x70\x55\xe3\x68\x38\xcb\x1c\xf5\x2e\xd8\x47\xcf\x17\xa6\x92\x85\x01\xe3\xe4\x31\xf9\x90\x3b\x11\x80\x0c\xf5\x64\x79\x9b\x43\x68\x8d\x43\xae\x56\x13\x2f\xe9\x6d\x0d\x1e\xe2\x38\xc5\x66\x98\xe8\x06\x0f\x6e\x64\x09\x37\x4f\xbf\xfc\x75\x33\xd1\x94\x33\xce\x6f\x63\x66\x12\x6e\xde\xbf\xfd\xf9\x48\x6f\x74\x4f\x36\x4e\x68\x90\xf0\xa1\x9a\xc3\x6a\xb5\x4e\x3f\x1f\x27\x7e\x4f\x68\x25\x7c\x58\xae\x2a\x71\x77\xbf\x99\xc3\x72\x79\x27\x56\x0f\x73\x58\x2e\x2a\xb1\xa9\x8e\x52\x41\xa1\x21\x09\x1f\x36\x0f\xa2\x7a\xdc\xcc\x61\x73\x2f\x96\xab\xf4\x57\xdd\x6f\x3e\x16\x6e\xe4\x61\xe4\x98\x52\x4e\xe3\xba\x88\x30\x4b\x58\x44\xd6\x11\x97\xac\x50\x7c\x03\xd2\xcc\x01\x83\x35\x19\x98\x01\x7e\x0b\xd5\x49\xe6\x04\x66\x71\x05\x6c\x74\x17\x5d\x9d\x49\xc5\xf7\x81\x1e\xbc\xab\xb1\xd6\x46\xb3\xa6\xb0\x65\x8f\x36\xc4\x1d\x25\x21\xb8\x96\x7b\x7c\x8d\x06\x13\x31\x8e\xdc\xa5\xff\x4b\xbd\x6f\x58\x9a\x0a\x17\xb7\xa8\xb6\x0d\xbd\x1e\xc3\xbf\x92\x82\x24\x15\x57\xea\xd9\x72\x36\xd6\x12\xf2\xe8\x29\x6c\x47\x6f\x64\x1a\x26\x59\x96\xa1\x12\xd8\xe3\x17\x67\xf1\x25\xa4\x89\x0a\xec\x3c\x89\xb4\x95\x84\xf3\xbb\x32\x1c\x6c\x20\x0e\xe7\xc1\xc9\x04\xc1\xaf\x7c\x6d\x55\x75\xa4\x3e\x87\xb1\x97\xb0\x6e\x56\xd5\xba\xde\x3c\x54\x15\x2a\x5c\xaf\x1f\x57\x0f\x8b\xbb\x0d\x2e\x1f\x16\x4d\x5d\x2d\x96\x77\x58\xa4\x79\x89\xb8\x86\x81\x94\x6e\x63\xd4\x79\x84\x76\x1e\x87\x0e\xd0\x36\xf0\x42\x7a\xd7\x71\x80\xe0\x46\xaf\x12\x1a\x35\x06\xfa\x6f\xa1\x27\x9b\xa1\x4c\x1b\x26\x2f\x09\xb5\x2f\xf5\x71\xe9\xed\xab\x02\xb2\xc3\xed\x80\xdc\xc9\x1c\xc2\x6d\x38\xf4\xb5\x33\xe2\x53\x48\x6f\xc8\x14\xc6\x95\xc4\x62\xb1\x58\x88\xd4\x0c\x31\x2c\x1d\xb6\xe8\x55\xa7\xf7\xd3\x5b\xd0\xa2\x09\x71\x78\x75\x0b\x81\x78\x1e\xab\x90\x4b\x71\x8c\x3f\x2e\x68\x84\x78\x60\x07\x68\x61\xd2\x4e\xca\xb9\xb1\xcf\x41\x5d\x42\x91\x09\xc9\x5c\x43\xd6\x31\xc5\xf3\xa4\xd5\x6a\x43\xe9\x05\x0f\xc7\x9e\xf8\x37\x92\x2f\x9a\xbb\xa9\x2b\xce\x2e\xb3\xab\x53\xe9\x2e\x32\x3e\xd3\x90\xd9\xeb\x7a\xe4\xfc\x02\xd0\x2b\x7b\x9c\xca\x75\xe6\x14\x00\x9f\xb5\x6d\x24\x3c\x3d\x3f\x4f\x59\xc4\x7b\x8c\xc6\xd2\xe8\xd1\x80\x25\x4e\x1f\x08\xff\x7b\x7a\x7e\x9e\xc3\xfb\xf8\x23\x84\xf8\x7f\x1c\xf1\xb8\x7f\xb5\xdd\x6d\xa7\xe7\x49\x9e\x1f\xac\xd9\xf1\xc9\x3a\xbd\xf7\xe9\x73\x64\x52\x28\x00\x7a\xb4\xba\xa5\xc0\x5b\x1c\xb9\x73\x5e\xc2\x53\x47\x76\x07\xbf\xea\x02\xe0\x77\x37\x2c\x25\xdc\x3f\x88\xfb\xfb\x7c\xdb\x48\x78\x5c\x8b\xea\xb1\xf8\x27\x00\x00\xff\xff\xa5\x3c\xe1\xdf\x21\x09\x00\x00"
func inception_v3YmlBytes() ([]byte, error) {
return bindataRead(
_inception_v3Yml,
"Inception_v3.yml",
)
}
func inception_v3Yml() (*asset, error) {
bytes, err := inception_v3YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "Inception_v3.yml", size: 2337, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _mobilenet_025Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x4b\x6f\xdc\x36\x10\xbe\xeb\x57\x0c\xb0\x07\xb7\xc0\x9a\xda\xb7\x6d\x02\xcd\xa1\x3e\xa4\x05\x5a\x1f\x82\xbe\x80\x20\x10\x46\xd4\x68\xc5\x84\x22\x05\x72\x64\x7b\xf3\xeb\x0b\x92\xda\x57\x1a\x24\xe8\x65\x97\x9c\xf7\x7c\xf3\xa0\x2c\xf6\x24\xe1\x77\x57\x6b\x43\x4f\xc4\xd5\x42\xac\xb6\x30\x83\x48\x06\xd7\xc2\xc1\x8d\x1e\x7a\xd7\x90\x29\x5a\x8f\x3d\xbd\x38\xff\x49\x16\x00\x93\xda\x3f\x4f\xc4\x30\x83\x13\x0b\x5a\xe7\x81\x3b\x9a\x54\x00\x9e\xc9\x07\xed\xac\x84\x9b\x37\x3f\x2d\xc5\x52\x2c\x6e\xae\xc4\x27\x36\x28\x67\xd9\xa3\xb6\x5c\x9c\x14\x96\x62\x01\xb3\x93\x80\xb6\xad\xf3\x3d\x72\x3e\x43\xa0\x1e\x2d\x6b\x75\xe2\x67\x6e\x11\xed\xa0\xb6\xe4\x25\xcc\xe0\x74\x09\x30\x06\x6a\x80\x1d\x0c\xe4\xa3\x64\x0e\x0f\xe8\x19\xcd\x98\x6c\x16\x00\xd8\x37\xbb\x4d\x4c\x0d\x60\x3f\x8c\x12\x3c\xea\xc1\xbb\x8f\xa4\xb8\x54\xe8\x7b\x73\xab\xb0\x6d\x49\x26\xb1\x5b\x35\x8c\x49\x52\x7d\x57\x72\x9f\x24\x87\x41\xed\x36\x86\xe4\x77\x95\x26\xc1\x49\xed\xdb\xa1\x5c\xca\x36\x14\x94\xd7\x03\x27\xe8\xde\x14\x30\x95\xe6\xd7\x1e\xf7\x04\x8f\x06\x43\xd0\xad\x56\x19\xbf\x94\xfc\x1c\x5e\x3a\xad\x3a\xd0\x01\x12\xf2\xd4\x80\xb3\xa9\x74\x49\x27\x2a\x37\xc8\x18\x88\x45\x01\xf0\x67\xa0\x73\x8f\xa4\x16\x69\xbd\xeb\xe1\xad\x19\x9d\x7d\xfc\x6b\x82\xf3\xb3\x73\xa2\xf0\xd4\x92\x27\xab\x28\xc4\x12\x9c\x6f\x09\x7d\x1c\x62\x31\x4a\x78\xa1\x3a\x68\xa6\x78\x24\x56\x42\x40\x0e\xbf\xd6\x76\x7f\xd5\x3d\xb7\xd0\x31\x0f\x41\x96\xe5\x3e\x7a\xba\x55\xcf\xa2\x7f\xb5\xc4\x42\xbb\x32\xc9\x54\x9f\x9d\x2b\xd5\x55\x7a\xa2\xe3\xfe\x0b\x5d\xcd\xdd\x58\x0b\xe5\xfa\xb2\xe9\x8d\x3a\xd9\x2a\x6b\xe3\xea\xb2\xc7\xc0\xe4\xcb\x0c\x5f\xf8\xc2\x58\xa9\x23\x18\x96\xb8\x7c\x26\xaf\xdb\x43\x35\x78\x9a\xe0\x12\xc3\xa1\x30\x5a\x91\x0d\x24\x61\xb4\x9e\x02\x7b\xad\x98\x1a\x98\xc1\x44\x8f\x03\x74\x4e\x47\xdb\x61\xe4\x84\x4a\x86\x2b\xdf\x53\xa4\x7c\x18\x48\x42\xf2\x15\xc7\x43\xfb\xc0\x99\x1d\x45\xd1\x68\x3e\xa4\x66\xb8\x2a\x72\x34\x9c\x65\x8e\x7a\x17\xec\xa3\xe7\x0b\x53\xc9\xc2\x80\x71\xf4\x98\x7c\xc8\xad\x08\x40\x86\x7a\xb2\x5c\xe5\x10\x5a\xe3\x90\xd7\xab\x89\x97\xf4\x2a\x83\x87\x38\x4f\xb1\x1b\x26\xba\xc1\x83\x1b\x59\xc2\xcd\xe3\x2f\x7f\xdf\x4c\x34\xe5\x8c\xf3\x55\xcc\x4c\xc2\xcd\xbb\xb7\x3f\x1f\xe9\x8d\xee\xc9\xc6\x11\x0d\x12\xde\xaf\xe7\xb0\x5a\x6d\xd2\xcf\x87\x89\xdf\x13\x5a\x09\xef\x97\xab\xb5\xd8\xdd\x6d\xe7\xb0\x5c\xee\xc4\xea\x7e\x0e\xcb\xc5\x5a\x6c\xd7\x47\xa9\xa0\xd0\x90\x84\xf7\xdb\x7b\xb1\x7e\xd8\xce\x61\x7b\x27\x96\xab\xf4\xb7\xbe\xdb\x7e\x28\xdc\xc8\xc3\xc8\x31\xa5\x9c\xc6\x75\x11\x61\x96\xb0\x88\xac\x23\x2e\x59\xa1\xf8\x0a\xa4\x99\x03\x06\x6b\x32\x30\x03\xfc\x1a\xaa\x93\xcc\x09\xcc\xe2\x0a\xd8\xe8\x2e\xba\x3a\x93\x8a\x6f\x03\x3d\x78\x57\x63\xad\x8d\x66\x4d\xa1\x62\x8f\x36\xc4\x25\x25\x21\xb8\x96\x7b\x7c\x8d\x06\x13\x31\x8e\xdc\xa5\xff\x4b\xbd\xaf\x58\x9a\x0a\x17\xd7\xa8\xb6\x0d\xbd\x1e\xc3\xbf\x92\x82\x24\x15\x77\xea\xd9\x72\x36\xd6\x12\xf2\xe8\x29\x54\xa3\x37\x32\x0d\x93\x2c\xcb\xb0\x16\xd8\xe3\x67\x67\xf1\x25\xa4\x89\x0a\xec\x3c\x89\xb4\x96\x84\xf3\xfb\x32\x1c\x6c\x20\x0e\xe7\xc1\xc9\x04\xc1\xaf\x7c\x6d\x55\x75\xa4\x3e\x85\xb1\x97\xb0\x69\x56\xeb\x4d\xbd\xbd\x5f\xaf\x51\xe1\x66\xf3\xb0\xba\x5f\xec\xb6\xb8\xbc\x5f\x34\xf5\x7a\xb1\xdc\x61\x91\xe6\x25\xe2\x1a\x06\x52\xba\x8d\x51\xe7\x11\xda\x7b\x1c\x3a\x40\xdb\xc0\x0b\xe9\x7d\xc7\x01\x82\x1b\xbd\x4a\x68\xd4\x18\xe8\xff\x85\x9e\x6c\x86\x32\x6d\x98\xbc\x24\xd4\x73\xd9\xa7\xad\x67\xf3\xd6\x2b\x20\xbb\xac\x06\xe4\x4e\xe6\x20\x6e\xc3\xa1\xaf\x9d\x11\x1f\x43\x7a\x46\xa6\x40\xae\x24\x16\x8b\xc5\x42\xa4\x76\x88\x81\xe9\x50\xa1\x57\x9d\x7e\x9e\x9e\x83\x16\x4d\x88\xe3\xab\x5b\x08\xc4\xf3\x58\x87\x5c\x8c\x63\x06\x71\x47\x23\xc4\x03\x3b\x40\x0b\x93\x76\x52\xce\xad\x7d\x0e\xea\x12\x8c\x4c\x48\xe6\x1a\xb2\x8e\x29\x9e\x27\xad\x56\x1b\x4a\x8f\x78\x38\x76\xc5\x7f\xb1\x7c\xd1\xdc\x4d\x7d\x71\x76\x99\x5d\x9d\x8a\x77\x91\xf1\x99\x86\xcc\x5e\xd7\x23\xe7\x37\x80\x5e\xd9\xe3\x54\xb0\x33\xa7\x00\xf8\xa4\x6d\x23\xe1\xf1\xe9\x69\xca\x22\xde\x63\x34\x96\x46\x8f\x06\x2c\x71\xfa\x46\xf8\xe1\xf1\xe9\x69\x0e\xef\xe2\x8f\x10\xe2\xc7\x38\xe4\x71\x03\x6b\xbb\xaf\xa6\x17\x4a\x9e\xdf\xac\xd9\xf1\xd5\x3a\x3d\xf9\xe9\x8b\x64\x52\x28\x00\x7a\xb4\xba\xa5\xc0\x15\x8e\xdc\x39\x2f\xe1\xb1\x23\xbb\x87\xdf\x74\x01\xf0\x87\x1b\x96\x12\xb6\x2b\xf1\xb0\xcc\xb7\xad\x84\xbb\x9d\x78\xd8\x14\xff\x06\x00\x00\xff\xff\xab\x2a\xf2\x99\x26\x09\x00\x00"
func mobilenet_025YmlBytes() ([]byte, error) {
return bindataRead(
_mobilenet_025Yml,
"MobileNet_0.25.yml",
)
}
func mobilenet_025Yml() (*asset, error) {
bytes, err := mobilenet_025YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "MobileNet_0.25.yml", size: 2342, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _mobilenet_05Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x4b\x8f\xdb\x36\x10\xbe\xeb\x57\x0c\xe0\xc3\xb6\x80\x97\xb2\x2d\xdb\xd9\x10\x68\x0e\xdd\x43\x5a\xa0\xdd\x43\xd0\x17\x10\x04\xc6\x88\x1a\x59\x4c\x28\x52\x20\x47\xeb\x75\x7e\x7d\x41\x52\x7e\xa5\x41\x82\x5e\x6c\x72\xde\xf3\xcd\x83\xb2\xd8\x93\x84\xdf\x5d\xad\x0d\x3d\x11\xef\x16\x62\x03\x33\x88\x54\x70\x2d\x1c\xdd\xe8\xa1\x77\x0d\x99\xa2\xf5\xd8\xd3\xc1\xf9\x4f\xb2\x00\x98\xb4\xfe\x79\x22\x86\x19\x9c\x59\xd0\x3a\x0f\xdc\xd1\xa4\x02\xf0\x4c\x3e\x68\x67\x25\xdc\xbd\xf9\x69\x29\x96\x62\x71\x77\x23\x3e\xb1\x41\x39\xcb\x1e\xb5\xe5\xe2\xac\xb0\x14\x0b\x98\x9d\x05\xb4\x6d\x9d\xef\x91\xf3\x19\x02\xf5\x68\x59\xab\x33\x3f\x73\x8b\x68\x07\xb5\x25\x2f\x61\x06\xe7\x4b\x80\x31\x50\x03\xec\x60\x20\x1f\x25\x73\x78\x40\xcf\x68\xc6\x64\xb3\x00\xc0\xbe\xd9\xae\x63\x6a\x00\xfb\x61\x94\xe0\x51\x0f\xde\x7d\x24\xc5\xa5\x42\xdf\x9b\x7b\x85\x6d\x4b\x32\x89\xdd\xab\x61\x4c\x92\xea\xbb\x92\xfb\x24\x39\x0c\x6a\xbb\x36\x24\xbf\xab\x34\x09\x4e\x6a\xdf\x0e\xe5\x5a\xb6\xa1\xa0\xbc\x1e\x38\x41\xf7\xa6\x80\xa9\x34\xbf\xf6\xb8\x27\x78\x34\x18\x82\x6e\xb5\xca\xf8\xa5\xe4\xe7\x70\xe8\xb4\xea\x40\x07\x48\xc8\x53\x03\xce\xa6\xd2\x25\x9d\xa8\xdc\x20\x63\x20\x16\x05\xc0\x9f\x81\x2e\x2d\x12\x3b\xa4\xf5\xae\x87\xb7\x66\x74\xf6\xf1\xaf\x09\xcd\xcf\xce\x89\xc2\x53\x4b\x9e\xac\xa2\x10\x2b\x70\xb9\x25\xf0\x71\x88\xb5\x28\xe1\x40\x75\xd0\x4c\xf1\x48\xac\x84\x80\x1c\x7d\xad\xed\xfe\xa6\x79\xee\xa1\x63\x1e\x82\x2c\xcb\x7d\xf4\x74\xaf\x9e\x45\xff\x62\x89\x85\x76\x65\x92\xd9\x7d\x76\xae\x54\x37\xd9\x89\x8e\xfb\x2f\x74\x35\x77\x63\x2d\x94\xeb\xcb\xa6\x37\xea\x6c\xab\xac\x8d\xab\xcb\x1e\x03\x93\x2f\x33\x7a\xe1\x0b\x63\xa5\x8e\x58\x58\xe2\xf2\x99\xbc\x6e\x8f\xbb\xc1\xd3\x84\x96\x18\x8e\x85\xd1\x8a\x6c\x20\x09\xa3\xf5\x14\xd8\x6b\xc5\xd4\xc0\x0c\x26\x7a\x9c\x9f\x4b\x3a\xda\x0e\x23\x27\x54\x32\x5c\xf9\x9e\x22\xe5\xe3\x40\x12\x92\xaf\x38\x1d\xda\x07\xce\xec\x28\x8a\x46\xf3\x31\xf5\xc2\x4d\x8d\xa3\xe1\x2c\x73\xd2\xbb\x62\x9f\x3c\x5f\x99\x4a\x16\x06\x8c\x93\xc7\xe4\x43\xee\x44\x00\x32\xd4\x93\xe5\x5d\x0e\xa1\x35\x0e\xb9\x5a\x4d\xbc\xa4\xb7\x33\x78\x8c\xe3\x14\x9b\x61\xa2\x1b\x3c\xba\x91\x25\xdc\x3d\xfe\xf2\xf7\xdd\x44\x53\xce\x38\xbf\x8b\x99\x49\xb8\x7b\xf7\xf6\xe7\x13\xbd\xd1\x3d\xd9\x38\xa1\x41\xc2\xfb\x6a\x0e\xab\xd5\x3a\xfd\x7c\x98\xf8\x3d\xa1\x95\xf0\x7e\xb9\xaa\xc4\xf6\xd5\x66\x0e\xcb\xe5\x56\xac\x1e\xe6\xb0\x5c\x54\x62\x53\x9d\xa4\x82\x42\x43\x12\xde\x6f\x1e\x44\xf5\x7a\x33\x87\xcd\x2b\xb1\x5c\xa5\xbf\xea\xd5\xe6\x43\xe1\x46\x1e\x46\x8e\x29\xe5\x34\x6e\x8b\x08\xb3\x84\x45\x64\x9d\x70\xc9\x0a\xc5\x57\x20\xcd\x1c\x30\x58\x93\x81\x19\xe0\xd7\x50\x9d\x64\xce\x60\x16\x37\xc0\x46\x77\xd1\xd5\x85\x54\x7c\x1b\xe8\xc1\xbb\x1a\x6b\x6d\x34\x6b\x0a\x3b\xf6\x68\x43\xdc\x51\x12\x82\x6b\xb9\xc7\x97\x68\x30\x11\xe3\xc8\x5d\xfb\xbf\xd6\xfb\x8a\xa5\xa9\x70\x71\x8b\x6a\xdb\xd0\xcb\x29\xfc\x1b\x29\x48\x52\x71\xa5\x5e\x2c\x67\x63\x2d\x21\x8f\x9e\xc2\x6e\xf4\x46\xa6\x61\x92\x65\x19\x2a\x81\x3d\x7e\x76\x16\x0f\x21\x4d\x54\x60\xe7\x49\xa4\xad\x24\x9c\xdf\x97\xe1\x68\x03\x71\xb8\x0c\x4e\x26\x08\x7e\xe1\x5b\xab\xaa\x23\xf5\x29\x8c\xbd\x84\x75\xb3\xaa\xd6\xf5\xe6\xa1\xaa\x50\xe1\x7a\xfd\x7a\xf5\xb0\xd8\x6e\x70\xf9\xb0\x68\xea\x6a\xb1\xdc\x62\x91\xe6\x25\xe2\x1a\x06\x52\xba\x8d\x51\xe7\x11\xda\x7b\x1c\x3a\x40\xdb\xc0\x81\xf4\xbe\xe3\x00\xc1\x8d\x5e\x25\x34\x6a\x0c\xf4\xff\x42\x4f\x36\x43\x99\x36\x4c\x5e\x12\xea\xb9\xec\xd3\xd2\xb3\x69\xe9\x15\x90\x3d\xee\x06\xe4\x4e\xe6\x18\xee\xc3\xb1\xaf\x9d\x11\x1f\x43\x7a\x44\xa6\x38\x6e\x24\x16\x8b\xc5\x42\xa4\x6e\x88\x71\xe9\xb0\x43\xaf\x3a\xfd\x3c\x3d\x06\x2d\x9a\x10\xa7\x57\xb7\x10\x88\xe7\xb1\x0c\xb9\x16\xa7\x04\xe2\x86\x46\x88\x07\x76\x80\x16\x26\xed\xa4\x9c\x3b\xfb\x12\xd4\x35\x16\x99\x90\xcc\x35\x64\x1d\x53\x3c\x4f\x5a\xad\x36\x94\x9e\xf0\x70\x6a\x8a\xff\x42\x79\xd0\xdc\x4d\x6d\x71\x71\x99\x5d\x9d\x6b\x77\x95\xf1\x85\x86\xcc\x5e\xd7\x23\xe7\x27\x80\x5e\xd8\xe3\x54\xaf\x0b\xa7\x00\xf8\xa4\x6d\x23\xe1\xf1\xe9\x69\xca\x22\xde\x63\x34\x96\x46\x8f\x06\x2c\x71\xfa\x42\xf8\xe1\xf1\xe9\x69\x0e\xef\xe2\x8f\x10\xe2\xc7\x38\xe3\x71\x01\x6b\xbb\xdf\x4d\xef\x93\xbc\xbc\x58\xb3\xd3\x9b\x75\x7e\xf0\xd3\xf7\xc8\xa4\x50\x00\xf4\x68\x75\x4b\x81\x77\x38\x72\xe7\xbc\x84\xc7\x8e\xec\x1e\x7e\xd3\x05\xc0\x1f\x6e\x58\x4a\xd8\x6e\xc4\x6a\x91\x6f\x1b\x09\x0f\x5b\x51\xad\x8b\x7f\x03\x00\x00\xff\xff\xe9\xcc\x9d\x69\x23\x09\x00\x00"
func mobilenet_05YmlBytes() ([]byte, error) {
return bindataRead(
_mobilenet_05Yml,
"MobileNet_0.5.yml",
)
}
func mobilenet_05Yml() (*asset, error) {
bytes, err := mobilenet_05YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "MobileNet_0.5.yml", size: 2339, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _mobilenet_075Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x4b\x8f\xdb\x36\x10\xbe\xeb\x57\x0c\xe0\xc3\xb6\x80\x97\xf2\x73\x1f\x04\x9a\x43\xf7\x90\x16\x68\xf7\x10\xf4\x05\x04\x81\x30\xa2\x46\x16\x13\x8a\x14\xc8\xd1\x7a\x9d\x5f\x5f\x90\x94\x5f\x69\x90\xa0\x17\x9b\x9c\xf7\x7c\xf3\xa0\x2c\xf6\x24\xe1\x77\x57\x6b\x43\xcf\xc4\xd5\x42\xdc\x6f\x61\x06\x91\x0c\xae\x85\x83\x1b\x3d\xf4\xae\x21\x53\xb4\x1e\x7b\xda\x3b\xff\x49\x16\x00\x93\xda\x3f\xcf\xc4\x30\x83\x13\x0b\x5a\xe7\x81\x3b\x9a\x54\x00\x5e\xc8\x07\xed\xac\x84\x9b\x37\x3f\x2d\xc5\x52\x2c\x6e\xae\xc4\x27\x36\x28\x67\xd9\xa3\xb6\x5c\x9c\x14\x96\x62\x01\xb3\x93\x80\xb6\xad\xf3\x3d\x72\x3e\x43\xa0\x1e\x2d\x6b\x75\xe2\x67\x6e\x11\xed\xa0\xb6\xe4\x25\xcc\xe0\x74\x09\x30\x06\x6a\x80\x1d\x0c\xe4\xa3\x64\x0e\x0f\xe8\x05\xcd\x98\x6c\x16\x00\xd8\x37\x77\x9b\x98\x1a\xc0\x6e\x18\x25\x78\xd4\x83\x77\x1f\x49\x71\xa9\xd0\xf7\xe6\x56\x61\xdb\x92\x4c\x62\xb7\x6a\x18\x93\xa4\xfa\xae\xe4\x2e\x49\x0e\x83\xba\xdb\x18\x92\xdf\x55\x9a\x04\x27\xb5\x6f\x87\x72\x29\xdb\x50\x50\x5e\x0f\x9c\xa0\x7b\x53\xc0\x54\x9a\x5f\x7b\xdc\x11\x3c\x19\x0c\x41\xb7\x5a\x65\xfc\x52\xf2\x73\xd8\x77\x5a\x75\xa0\x03\x24\xe4\xa9\x01\x67\x53\xe9\x92\x4e\x54\x6e\x90\x31\x10\x8b\x02\xe0\xcf\x40\xe7\x1e\x49\x2d\xd2\x7a\xd7\xc3\x5b\x33\x3a\xfb\xf4\xd7\x04\xe7\x67\xe7\x44\xe1\xa9\x25\x4f\x56\x51\x88\x25\x38\xdf\x12\xfa\x38\xc4\x62\x94\xb0\xa7\x3a\x68\xa6\x78\x24\x56\x42\x40\x0e\xbf\xd6\x76\x77\xd5\x3d\xb7\xd0\x31\x0f\x41\x96\xe5\x2e\x7a\xba\x55\x2f\xa2\x7f\xb5\xc4\x42\xbb\x32\xc9\x54\x9f\x9d\x2b\xd5\x55\x7a\xa2\xe3\xfe\x0b\x5d\xcd\xdd\x58\x0b\xe5\xfa\xb2\xe9\x8d\x3a\xd9\x2a\x6b\xe3\xea\xb2\xc7\xc0\xe4\xcb\x0c\x5f\xf8\xc2\x58\xa9\x23\x18\x96\xb8\x7c\x21\xaf\xdb\x43\x35\x78\x9a\xe0\x12\xc3\xa1\x30\x5a\x91\x0d\x24\x61\xb4\x9e\x02\x7b\xad\x98\x1a\x98\xc1\x44\x8f\x03\x74\x4e\x47\xdb\x61\xe4\x84\x4a\x86\x2b\xdf\x53\xa4\x7c\x18\x48\x42\xf2\x15\xc7\x43\xfb\xc0\x99\x1d\x45\xd1\x68\x3e\xa4\x66\xb8\x2a\x72\x34\x9c\x65\x8e\x7a\x17\xec\xa3\xe7\x0b\x53\xc9\xc2\x80\x71\xf4\x98\x7c\xc8\xad\x08\x40\x86\x7a\xb2\x5c\xe5\x10\x5a\xe3\x90\xd7\xab\x89\x97\xf4\x2a\x83\x87\x38\x4f\xb1\x1b\x26\xba\xc1\x83\x1b\x59\xc2\xcd\xd3\x2f\x7f\xdf\x4c\x34\xe5\x8c\xf3\x55\xcc\x4c\xc2\xcd\xbb\xb7\x3f\x1f\xe9\x8d\xee\xc9\xc6\x11\x0d\x12\xde\xaf\xe7\xb0\x5a\x6d\xd2\xcf\x87\x89\xdf\x13\x5a\x09\xef\x97\xab\xb5\xb8\xbb\xdf\xce\x61\xb9\xbc\x13\xab\x87\x39\x2c\x17\x6b\xb1\x5d\x1f\xa5\x82\x42\x43\x12\xde\x6f\x1f\xc4\xfa\x71\x3b\x87\xed\xbd\x58\xae\xd2\xdf\xfa\x7e\xfb\xa1\x70\x23\x0f\x23\xc7\x94\x72\x1a\xd7\x45\x84\x59\xc2\x22\xb2\x8e\xb8\x64\x85\xe2\x2b\x90\x66\x0e\x18\xac\xc9\xc0\x0c\xf0\x6b\xa8\x4e\x32\x27\x30\x8b\x2b\x60\xa3\xbb\xe8\xea\x4c\x2a\xbe\x0d\xf4\xe0\x5d\x8d\xb5\x36\x9a\x35\x85\x8a\x3d\xda\x10\x97\x94\x84\xe0\x5a\xee\xf1\x35\x1a\x4c\xc4\x38\x72\x97\xfe\x2f\xf5\xbe\x62\x69\x2a\x5c\x5c\xa3\xda\x36\xf4\x7a\x0c\xff\x4a\x0a\x92\x54\xdc\xa9\x67\xcb\xd9\x58\x4b\xc8\xa3\xa7\x50\x8d\xde\xc8\x34\x4c\xb2\x2c\xc3\x5a\x60\x8f\x9f\x9d\xc5\x7d\x48\x13\x15\xd8\x79\x12\x69\x2d\x09\xe7\x77\x65\x38\xd8\x40\x1c\xce\x83\x93\x09\x82\x5f\xf9\xda\xaa\xea\x48\x7d\x0a\x63\x2f\x61\xd3\xac\xd6\x9b\x7a\xfb\xb0\x5e\xa3\xc2\xcd\xe6\x71\xf5\xb0\xb8\xdb\xe2\xf2\x61\xd1\xd4\xeb\xc5\xf2\x0e\x8b\x34\x2f\x11\xd7\x30\x90\xd2\x6d\x8c\x3a\x8f\xd0\xce\xe3\xd0\x01\xda\x06\xf6\xa4\x77\x1d\x07\x08\x6e\xf4\x2a\xa1\x51\x63\xa0\xff\x17\x7a\xb2\x19\xca\xb4\x61\xf2\x92\x50\x2f\x65\x9f\xb6\x9e\xcd\x5b\xaf\x80\xec\xb2\x1a\x90\x3b\x99\x83\xb8\x0d\x87\xbe\x76\x46\x7c\x0c\xe9\x19\x99\x02\xb9\x92\x58\x2c\x16\x0b\x91\xda\x21\x06\xa6\x43\x85\x5e\x75\xfa\x65\x7a\x0e\x5a\x34\x21\x8e\xaf\x6e\x21\x10\xcf\x63\x1d\x72\x31\x8e\x19\xc4\x1d\x8d\x10\x0f\xec\x00\x2d\x4c\xda\x49\x39\xb7\xf6\x39\xa8\x4b\x30\x32\x21\x99\x6b\xc8\x3a\xa6\x78\x9e\xb4\x5a\x6d\x28\x3d\xe2\xe1\xd8\x15\xff\xc5\x72\xaf\xb9\x9b\xfa\xe2\xec\x32\xbb\x3a\x15\xef\x22\xe3\x33\x0d\x99\xbd\xae\x47\xce\x6f\x00\xbd\xb2\xc7\xa9\x60\x67\x4e\x01\xf0\x49\xdb\x46\xc2\xd3\xf3\xf3\x94\x45\xbc\xc7\x68\x2c\x8d\x1e\x0d\x58\xe2\xf4\x8d\xf0\xc3\xd3\xf3\xf3\x1c\xde\xc5\x1f\x21\xc4\x8f\x71\xc8\xe3\x06\xd6\x76\x57\x4d\x2f\x94\x3c\xbf\x59\xb3\xe3\xab\x75\x7a\xf2\xd3\x17\xc9\xa4\x50\x00\xf4\x68\x75\x4b\x81\x2b\x1c\xb9\x73\x5e\xc2\x53\x47\x76\x07\xbf\xe9\x02\xe0\x0f\x37\x2c\x25\xdc\x2f\xc4\x6a\x9b\x6f\x5b\x09\x0f\x8f\x62\xf3\x58\xfc\x1b\x00\x00\xff\xff\xa3\xc6\xda\xdd\x26\x09\x00\x00"
func mobilenet_075YmlBytes() ([]byte, error) {
return bindataRead(
_mobilenet_075Yml,
"MobileNet_0.75 .yml",
)
}
func mobilenet_075Yml() (*asset, error) {
bytes, err := mobilenet_075YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "MobileNet_0.75 .yml", size: 2342, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _mobilenet_10Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x4b\x8f\xdb\x36\x10\xbe\xeb\x57\x0c\xe0\xc3\xb6\x80\x97\xb2\x2d\x7b\x77\x43\xa0\x39\x74\x0f\x69\x81\x76\x0f\x41\x5f\x40\x10\x18\x23\x6a\x64\x31\xa1\x48\x81\x1c\xad\xd7\xf9\xf5\x05\x49\xf9\x95\x2e\x12\xf4\x62\x93\xf3\x9e\x6f\x1e\x94\xc5\x9e\x24\xfc\xee\x6a\x6d\xe8\x89\x78\xbb\x14\x0b\x98\x41\xa4\x82\x6b\xe1\xe0\x46\x0f\xbd\x6b\xc8\x14\xad\xc7\x9e\xf6\xce\x7f\x96\x05\xc0\xa4\xf5\xcf\x13\x31\xcc\xe0\xc4\x82\xd6\x79\xe0\x8e\x26\x15\x80\x67\xf2\x41\x3b\x2b\xe1\xe6\xed\x4f\x4b\xb1\x14\x8b\x9b\x2b\xf1\x89\x0d\xca\x59\xf6\xa8\x2d\x17\x27\x85\x1c\xc7\x51\x40\xdb\xd6\xf9\x1e\x39\x9f\x21\x50\x8f\x96\xb5\x3a\xf1\x33\xb7\x88\x76\x50\x5b\xf2\x12\x66\x70\xba\x04\x18\x03\x35\xc0\x0e\x06\xf2\x51\x32\x87\x07\xf4\x8c\x66\x4c\x36\x0b\x00\xec\x9b\xbb\x75\x4c\x0d\x60\x37\x8c\x12\x3c\xea\xc1\xbb\x4f\xa4\xb8\x54\xe8\x7b\x73\xab\xb0\x6d\x49\x26\xb1\x5b\x35\x8c\x49\x52\x7d\x57\x72\x97\x24\x87\x41\xdd\xad\x0d\xc9\xef\x2a\x4d\x82\x93\xda\xb7\x43\xb9\x94\x6d\x28\x28\xaf\x07\x4e\xd0\xbd\x2d\x60\x2a\xcd\xaf\x3d\xee\x08\x1e\x0d\x86\xa0\x5b\xad\x32\x7e\x29\xf9\x39\xec\x3b\xad\x3a\xd0\x01\x12\xf2\xd4\x80\xb3\xa9\x74\x49\x27\x2a\x37\xc8\x18\x88\x45\x01\xf0\x67\xa0\x73\x8b\xc4\xca\xb4\xde\xf5\xf0\xce\x8c\xce\x3e\xfe\x35\xa1\xf9\xc5\x39\x51\x78\x6a\xc9\x93\x55\x14\x62\x05\xce\xb7\x04\x3e\x0e\xb1\x16\x25\xec\xa9\x0e\x9a\x29\x1e\x89\x95\x10\x90\xa3\xaf\xb5\xdd\x5d\x35\xcf\x2d\x74\xcc\x43\x90\x65\xb9\x8b\x9e\x6e\xd5\xb3\xe8\x5f\x2c\xb1\xd0\xae\x4c\x32\xdb\x2f\xce\x95\xea\x2a\x3b\xd1\x71\xff\x95\xae\xe6\x6e\xac\x85\x72\x7d\xd9\xf4\x46\x9d\x6c\x95\xb5\x71\x75\xd9\x63\x60\xf2\x65\x46\x2f\x7c\x65\xac\xd4\x11\x0b\x4b\x5c\x3e\x93\xd7\xed\x61\x3b\x78\x9a\xd0\x12\xc3\xa1\x30\x5a\x91\x0d\x24\x61\xb4\x9e\x02\x7b\xad\x98\x1a\x98\xc1\x44\x8f\xf3\x73\x4e\x47\xdb\x61\xe4\x84\x4a\x86\x2b\xdf\x53\xa4\x7c\x18\x48\x42\xf2\x15\xa7\x43\xfb\xc0\x99\x1d\x45\xd1\x68\x3e\xa4\x5e\xb8\xaa\x71\x34\x9c\x65\x8e\x7a\x17\xec\xa3\xe7\x0b\x53\xc9\xc2\x80\x71\xf2\x98\x7c\xc8\x9d\x08\x40\x86\x7a\xb2\xbc\xcd\x21\xb4\xc6\x21\x57\xab\x89\x97\xf4\xb6\x06\x0f\x71\x9c\x62\x33\x4c\x74\x83\x07\x37\xb2\x84\x9b\xc7\x5f\xfe\xbe\x99\x68\xca\x19\xe7\xb7\x31\x33\x09\x37\xef\xdf\xfd\x7c\xa4\x37\xba\x27\x1b\x27\x34\x48\xf8\x50\xcd\x61\xb5\x5a\xa7\x9f\x8f\x13\xbf\x27\xb4\x12\x3e\x2c\x57\x95\xb8\xbb\xdf\xcc\x61\xb9\xbc\x13\xab\x87\x39\x2c\x17\x95\xd8\x54\x47\xa9\xa0\xd0\x90\x84\x0f\x9b\x07\x51\xbd\xd9\xcc\x61\x73\x2f\x96\xab\xf4\x57\xdd\x6f\x3e\x16\x6e\xe4\x61\xe4\x98\x52\x4e\xe3\xba\x88\x30\x4b\x58\x44\xd6\x11\x97\xac\x50\xbc\x02\x69\xe6\x80\xc1\x9a\x0c\xcc\x00\x5f\x43\x75\x92\x39\x81\x59\x5c\x01\x1b\xdd\x45\x57\x67\x52\xf1\x6d\xa0\x07\xef\x6a\xac\xb5\xd1\xac\x29\x6c\xd9\xa3\x0d\x71\x47\x49\x08\xae\xe5\x1e\x5f\xa2\xc1\x44\x8c\x23\x77\xe9\xff\x52\xef\x15\x4b\x53\xe1\xe2\x16\xd5\xb6\xa1\x97\x63\xf8\x57\x52\x90\xa4\xe2\x4a\x3d\x5b\xce\xc6\x5a\x42\x1e\x3d\x85\xed\xe8\x8d\x4c\xc3\x24\xcb\x32\x54\x02\x7b\xfc\xe2\x2c\xee\x43\x9a\xa8\xc0\xce\x93\x48\x5b\x49\x38\xbf\x2b\xc3\xc1\x06\xe2\x70\x1e\x9c\x4c\x10\xfc\xc2\xd7\x56\x55\x47\xea\x73\x18\x7b\x09\xeb\x66\x55\xad\xeb\xcd\x43\x55\xa1\xc2\xf5\xfa\xcd\xea\x61\x71\xb7\xc1\xe5\xc3\xa2\xa9\xab\xc5\xf2\x0e\x8b\x34\x2f\x11\xd7\x30\x90\xd2\x6d\x8c\x3a\x8f\xd0\xce\xe3\xd0\x01\xda\x06\xf6\xa4\x77\x1d\x07\x08\x6e\xf4\x2a\xa1\x51\x63\xa0\xff\x17\x7a\xb2\x19\xca\xb4\x61\xf2\x92\x50\xcf\x65\x9f\x96\x9e\x4d\x4b\xaf\x80\xec\x71\x3b\x20\x77\x32\xc7\x70\x1b\x0e\x7d\xed\x8c\xf8\x14\xd2\x23\x32\xc5\x71\x25\xb1\x58\x2c\x16\x22\x75\x43\x8c\x4b\x87\x2d\x7a\xd5\xe9\xe7\xe9\x31\x68\xd1\x84\x38\xbd\xba\x85\x40\x3c\x8f\x65\xc8\xb5\x38\x26\x10\x37\x34\x42\x3c\xb0\x03\xb4\x30\x69\x27\xe5\xdc\xd9\xe7\xa0\x2e\xb1\xc8\x84\x64\xae\x21\xeb\x98\xe2\x79\xd2\x6a\xb5\xa1\xf4\x84\x87\x63\x53\xfc\x17\xca\xbd\xe6\x6e\x6a\x8b\xb3\xcb\xec\xea\x54\xbb\x8b\x8c\xcf\x34\x64\xf6\xba\x1e\x39\x3f\x01\xf4\xc2\x1e\xa7\x7a\x9d\x39\x05\xc0\x67\x6d\x1b\x09\x8f\x4f\x4f\x53\x16\xf1\x1e\xa3\xb1\x34\x7a\x34\x60\x89\xd3\x17\xc2\x0f\x8f\x4f\x4f\x73\x78\x1f\x7f\x84\x10\x3f\xc6\x19\x8f\x0b\x58\xdb\xdd\x76\x7a\x9f\xe4\xf9\xc5\x9a\x1d\xdf\xac\xd3\x83\x9f\xbe\x47\x26\x85\x02\xa0\x47\xab\x5b\x0a\xbc\xc5\x91\x3b\xe7\x25\x3c\x76\x64\x77\xf0\x9b\x2e\x00\xfe\x70\xc3\x52\xc2\x7d\x25\x56\x0f\xf9\xb6\x91\xf0\x66\x29\xaa\x45\xf1\x6f\x00\x00\x00\xff\xff\xb7\xe6\x1a\xe0\x23\x09\x00\x00"
func mobilenet_10YmlBytes() ([]byte, error) {
return bindataRead(
_mobilenet_10Yml,
"MobileNet_1.0 .yml",
)
}
func mobilenet_10Yml() (*asset, error) {
bytes, err := mobilenet_10YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "MobileNet_1.0 .yml", size: 2339, mode: os.FileMode(436), modTime: time.Unix(1561413724, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _mobilenet_10_int8Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x4b\x6f\xdc\x36\x10\xbe\xeb\x57\x0c\xb0\x07\xb7\xc0\x9a\xda\xa7\xbd\x26\xd0\x1c\xea\x43\x5a\xa0\xf5\x21\xe8\x0b\x08\x02\x61\x44\x8d\x56\x4c\x28\x52\x20\x47\xb6\x37\xbf\xbe\x20\xa9\x7d\xa5\x41\x82\x5e\x76\xc9\x79\xcf\x37\x0f\xca\x62\x4f\x12\x7e\x77\xb5\x36\xf4\x44\x5c\x2d\xc5\xa2\xd2\x96\x77\x30\x83\xc8\x02\xd7\xc2\xc1\x8d\x1e\x7a\xd7\x90\x29\x5a\x8f\x3d\xbd\x38\xff\x49\x16\x00\x93\xea\x3f\x4f\xc4\x30\x83\x13\x0b\x5a\xe7\x81\x3b\x9a\x54\x00\x9e\xc9\x07\xed\xac\x84\x9b\x37\x3f\x2d\xc5\x52\x2c\x6e\xae\xc4\x27\x36\x28\x67\xd9\xa3\xb6\x5c\x9c\x14\x96\x62\x01\xb3\x93\x80\xb6\xad\xf3\x3d\x72\x3e\x43\xa0\x1e\x2d\x6b\x75\xe2\x67\x6e\x11\xed\xa0\xb6\xe4\x25\xcc\xe0\x74\x09\x30\x06\x6a\x80\x1d\x0c\xe4\xa3\x64\x0e\x0f\xe8\x19\xcd\x98\x6c\x16\x00\xd8\x37\x77\x9b\x98\x1a\xc0\x7e\x18\x25\x78\xd4\x83\x77\x1f\x49\x71\xa9\xd0\xf7\xe6\x56\x61\xdb\x92\x4c\x62\xb7\x6a\x18\x93\xa4\xfa\xae\xe4\x3e\x49\x0e\x83\xba\xdb\x18\x92\xdf\x55\x9a\x04\x27\xb5\x6f\x87\x72\x29\xdb\x50\x50\x5e\x0f\x9c\xa0\x7b\x53\xc0\x54\x9a\x5f\x7b\xdc\x13\x3c\x1a\x0c\x41\xb7\x5a\x65\xfc\x52\xf2\x73\x78\xe9\xb4\xea\x40\x07\x48\xc8\x53\x03\xce\xa6\xd2\x25\x9d\xa8\xdc\x20\x63\x20\x16\x05\xc0\x9f\x81\xce\x7d\x72\x6a\x93\xd6\xbb\x1e\xde\x9a\xd1\xd9\xc7\xbf\x26\x48\x3f\x3b\x27\x0a\x4f\x2d\x79\xb2\x8a\x42\x2c\xc3\xf9\x96\x2a\x80\x43\x2c\x48\x09\x2f\x54\x07\xcd\x14\x8f\xc4\x4a\x08\xc8\x29\xd4\xda\xee\xaf\x3a\xe8\x16\x3a\xe6\x21\xc8\xb2\xdc\x47\x4f\xb7\xea\x59\xf4\xaf\x96\x58\x68\x57\x26\x99\xea\xb3\x73\xa5\xba\x4a\x51\x74\xdc\x7f\xa1\xab\xb9\x1b\x6b\xa1\x5c\x5f\x36\xbd\x51\x27\x5b\x65\x6d\x5c\x5d\xf6\x18\x98\x7c\x99\x21\x0c\x5f\x18\x2b\x75\x04\xc4\x12\x97\xcf\xe4\x75\x7b\xa8\x06\x4f\x13\x64\x62\x38\x14\x46\x2b\xb2\x81\x24\x8c\xd6\x53\x60\xaf\x15\x53\x03\x33\x98\xe8\x71\x88\xce\xe9\x68\x3b\x8c\x9c\x50\xc9\x70\xe5\x7b\x8a\x94\x0f\x03\x49\x48\xbe\xe2\x88\x68\x1f\x38\xb3\xa3\x28\x1a\xcd\x87\xd4\x10\x57\x85\x8e\x86\xb3\xcc\x51\xef\x82\x7d\xf4\x7c\x61\x2a\x59\x18\x30\x8e\x1f\x93\x0f\xb9\x1d\x01\xc8\x50\x4f\x96\xab\x1c\x42\x6b\x1c\xf2\x7a\x35\xf1\x92\x5e\x65\xf0\x10\x67\x2a\x76\xc4\x44\x37\x78\x70\x23\x4b\xb8\x79\xfc\xe5\xef\x9b\x89\xa6\x9c\x71\xbe\x8a\x99\x49\xb8\x79\xf7\xf6\xe7\x23\xbd\xd1\x3d\xd9\x38\xa6\x41\xc2\xfb\xf5\x1c\x56\xab\x4d\xfa\xf9\x30\xf1\x7b\x42\x2b\xe1\xfd\x72\xb5\x16\x77\xf7\xdb\x39\x2c\x97\x77\x62\xb5\x9b\xc3\x72\xb1\x16\xdb\xf5\x51\x2a\x28\x34\x24\xe1\xfd\x76\x27\xd6\x0f\xdb\x39\x6c\xef\xc5\x72\x95\xfe\xd6\xf7\xdb\x0f\x85\x1b\x79\x18\x39\xa6\x94\xd3\xb8\x2e\x22\xcc\x12\x16\x91\x75\xc4\x25\x2b\x14\x5f\x81\x34\x73\xc0\x60\x4d\x06\x66\x80\x5f\x43\x75\x92\x39\x81\x59\x5c\x01\x1b\xdd\x45\x57\x67\x52\xf1\x6d\xa0\x07\xef\x6a\xac\xb5\xd1\xac\x29\x54\xec\xd1\x86\xb8\xa8\x24\x04\xd7\x72\x8f\xaf\xd1\x60\x22\xc6\x91\xbb\xf4\x7f\xa9\xf7\x15\x4b\x53\xe1\xe2\x2a\xd5\xb6\xa1\xd7\x63\xf8\x57\x52\x90\xa4\xe2\x5e\x3d\x5b\xce\xc6\x5a\x42\x1e\x3d\x85\x6a\xf4\x46\xa6\x61\x92\x65\x19\xd6\x02\x7b\xfc\xec\x2c\xbe\x84\x34\x51\x81\x9d\x27\x91\x56\x93\x70\x7e\x5f\x86\x83\x0d\xc4\xe1\x3c\x38\x99\x20\xf8\x95\xaf\xad\xaa\x8e\xd4\xa7\x30\xf6\x12\x36\xcd\x6a\xbd\xa9\xb7\xbb\xf5\x1a\x15\x6e\x36\x0f\xab\xdd\xe2\x6e\x8b\xcb\xdd\xa2\xa9\xd7\x8b\xe5\x1d\x16\x69\x5e\x22\xae\x61\x20\xa5\xdb\x18\x75\x1e\xa1\xbd\xc7\xa1\x03\xb4\x0d\xbc\x90\xde\x77\x1c\x20\xb8\xd1\xab\x84\x46\x8d\x81\xfe\x5f\xe8\xc9\x66\x28\xd3\x86\xc9\x4b\x42\x3d\x97\x7d\xda\x7c\xf6\xbc\xf9\x0a\xc8\x6e\xab\x01\xb9\x93\x39\x90\xdb\x70\xe8\x6b\x67\xc4\xc7\x90\x9e\x93\x29\x98\x2b\x89\xc5\x62\xb1\x10\xa9\x25\x62\x70\x3a\x54\xe8\x55\xa7\x9f\xa7\x67\xa1\x45\x13\xe2\x08\xeb\x16\x02\xf1\x3c\xd6\x22\x17\xe4\x98\x45\xdc\xd5\x08\xf1\xc0\x0e\xd0\xc2\xa4\x9d\x94\x73\x7b\x9f\x83\xba\x04\x24\x13\x92\xb9\x86\xac\x63\x8a\xe7\x49\xab\xd5\x86\xd2\x63\x1e\x8e\x9d\xf1\x5f\x3c\x5f\x34\x77\x53\x6f\x9c\x5d\x66\x57\xa7\x02\x5e\x64\x7c\xa6\x21\xb3\xd7\xf5\xc8\xf9\x1d\xa0\x57\xf6\x38\x15\xed\xcc\x29\x00\x3e\x69\xdb\x48\x78\x7c\x7a\x9a\xb2\x88\xf7\x18\x8d\xa5\xd1\xa3\x01\x4b\x9c\xbe\x15\x7e\x78\x7c\x7a\x9a\xc3\xbb\xf8\x23\x84\xf8\x31\x0e\x7a\xdc\xc2\xda\xee\xab\xe9\xa5\x92\xe7\xb7\x6b\x76\x7c\xbd\x4e\x4f\x7f\xfa\x32\x99\x14\x0a\x80\x1e\xad\x6e\x29\x70\x85\x23\x77\xce\x4b\x78\xec\xc8\xee\xe1\x37\x5d\x00\xfc\xe1\x86\xa5\x84\xfb\x95\xd8\x6d\xf3\x6d\x2b\xe1\x61\x21\x1e\x1e\x8a\x7f\x03\x00\x00\xff\xff\x83\x4d\xed\xe9\x32\x09\x00\x00"
func mobilenet_10_int8YmlBytes() ([]byte, error) {
return bindataRead(
_mobilenet_10_int8Yml,
"MobileNet_1.0_int8 .yml",
)
}
func mobilenet_10_int8Yml() (*asset, error) {
bytes, err := mobilenet_10_int8YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "MobileNet_1.0_int8 .yml", size: 2354, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _mobilenet_v2_025Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x49\x8f\xdb\xb8\x12\xbe\xeb\x57\x14\xe0\x43\xbf\x07\xb8\x29\xef\xdd\x21\xf0\x72\x78\x7d\xc8\x0c\x30\xd3\x87\x60\x36\x20\x08\x84\x12\x55\xb2\x98\x50\xa4\x40\x96\xdc\xed\xfc\xfa\x01\x49\x79\xcb\x04\x09\xe6\x62\x93\xb5\xd7\x57\x0b\x65\xb1\x27\x09\xbf\xba\x5a\x1b\x7a\x26\xae\x0e\xab\x6a\x21\x56\x5b\x98\x41\xe4\x80\x6b\xe1\xe8\x46\x0f\xbd\x6b\xc8\x14\xad\xc7\x9e\x5e\x9c\xff\x2c\x0b\x80\x49\xf3\xaf\x67\x62\x98\xc1\x99\x05\xad\xf3\xc0\x1d\x4d\x2a\x00\x07\xf2\x41\x3b\x2b\xe1\xee\xed\xff\x96\x62\x29\x16\x77\x37\xe2\x13\x1b\x94\xb3\xec\x51\x5b\x2e\xce\x0a\x4b\xb1\x80\xd9\x59\x40\xdb\xd6\xf9\x1e\x39\x9f\x21\x50\x8f\x96\xb5\x3a\xf3\x33\xb7\x88\x76\x50\x5b\xf2\x12\x66\x70\xbe\x04\x18\x03\x35\xc0\x0e\x06\xf2\x51\x32\x87\x07\x74\x40\x33\x26\x9b\x05\x00\xf6\xcd\x6e\x13\x53\x03\xd8\x0f\xa3\x04\x8f\x7a\xf0\xee\x13\x29\x2e\x15\xfa\xde\xdc\x2b\x6c\x5b\x92\x49\xec\x5e\x0d\x63\x92\x54\x3f\x94\xdc\x27\xc9\x61\x50\xbb\x8d\x21\xf9\x43\xa5\x49\x70\x52\xfb\x7e\x28\xd7\xb2\x0d\x05\xe5\xf5\xc0\x09\xba\xb7\x05\x4c\xa5\xf9\xb9\xc7\x3d\xc1\x93\xc1\x10\x74\xab\x55\xc6\x2f\x25\x3f\x87\x97\x4e\xab\x0e\x74\x80\x84\x3c\x35\xe0\x6c\x2a\x5d\xd2\x89\xca\x0d\x32\x06\x62\x51\x00\xfc\x1e\xe8\xd2\x26\xa7\x2e\x69\xbd\xeb\xe1\x9d\x19\x9d\x7d\xfa\x63\x42\xf4\x8b\x73\xa2\xf0\xd4\x92\x27\xab\x28\xc4\x2a\x5c\x6e\xa9\x00\x38\xc4\x7a\x94\xf0\x42\x75\xd0\x4c\xf1\x48\xac\x84\x80\x9c\x41\xad\xed\xfe\xa6\x81\xee\xa1\x63\x1e\x82\x2c\xcb\x7d\xf4\x74\xaf\x0e\xa2\x7f\xb5\xc4\x42\xbb\x32\xc9\x54\x5f\x9c\x2b\xd5\x4d\x86\xa2\xe3\xfe\x2b\x5d\xcd\xdd\x58\x0b\xe5\xfa\xb2\xe9\x8d\x3a\xdb\x2a\x6b\xe3\xea\xb2\xc7\xc0\xe4\xcb\x8c\x60\xf8\xca\x58\xa9\x23\x1e\x96\xb8\x3c\x90\xd7\xed\xb1\x1a\x3c\x4d\x88\x89\xe1\x58\x18\xad\xc8\x06\x92\x30\x5a\x4f\x81\xbd\x56\x4c\x0d\xcc\x60\xa2\xc7\x19\xba\xa4\xa3\xed\x30\x72\x42\x25\xc3\x95\xef\x29\x52\x3e\x0e\x24\x21\xf9\x8a\x13\xa2\x7d\xe0\xcc\x8e\xa2\x68\x34\x1f\x53\x3f\xdc\xd4\x39\x1a\xce\x32\x27\xbd\x2b\xf6\xc9\xf3\x95\xa9\x64\x61\xc0\x38\x7d\x4c\x3e\xe4\x6e\x04\x20\x43\x3d\x59\xae\x72\x08\xad\x71\xc8\xeb\xd5\xc4\x4b\x7a\x95\xc1\x63\x1c\xa9\xd8\x10\x13\xdd\xe0\xd1\x8d\x2c\xe1\xee\xe9\xa7\x3f\xef\x26\x9a\x72\xc6\xf9\x2a\x66\x26\xe1\xee\xfd\xbb\xff\x9f\xe8\x8d\xee\xc9\xc6\x29\x0d\x12\x3e\xac\xe7\xb0\x5a\x6d\xd2\xcf\xc7\x89\xdf\x13\x5a\x09\x1f\x96\xab\xb5\xd8\x3d\x6c\xe7\xb0\x5c\xee\xc4\xea\x71\x0e\xcb\xc5\x5a\x6c\xd7\x27\xa9\xa0\xd0\x90\x84\x0f\xdb\x47\xb1\x7e\xb3\x9d\xc3\xf6\x41\x2c\x57\xe9\x6f\xfd\xb0\xfd\x58\xb8\x91\x87\x91\x63\x4a\x39\x8d\xdb\x22\xc2\x2c\x61\x11\x59\x27\x5c\xb2\x42\xf1\x0d\x48\x33\x07\x0c\xd6\x64\x60\x06\xf8\x2d\x54\x27\x99\x33\x98\xc5\x0d\xb0\xd1\x5d\x74\x75\x21\x15\xdf\x07\x7a\xf0\xae\xc6\x5a\x1b\xcd\x9a\x42\xc5\x1e\x6d\x88\x7b\x4a\x42\x70\x2d\xf7\xf8\x1a\x0d\x26\x62\x1c\xb9\x6b\xff\xd7\x7a\xdf\xb0\x34\x15\x2e\x6e\x52\x6d\x1b\x7a\x3d\x85\x7f\x23\x05\x49\x2a\xae\xd5\x8b\xe5\x6c\xac\x25\xe4\xd1\x53\xa8\x46\x6f\x64\x1a\x26\x59\x96\x61\x2d\xb0\xc7\x2f\xce\xe2\x4b\x48\x13\x15\xd8\x79\x12\x69\x33\x09\xe7\xf7\x65\x38\xda\x40\x1c\x2e\x83\x93\x09\x82\x5f\xf9\xd6\xaa\xea\x48\x7d\x0e\x63\x2f\x61\xd3\xac\xd6\x9b\x7a\xfb\xb8\x5e\xa3\xc2\xcd\xe6\xcd\xea\x71\xb1\xdb\xe2\xf2\x71\xd1\xd4\xeb\xc5\x72\x87\x45\x9a\x97\x88\x6b\x18\x48\xe9\x36\x46\x9d\x47\x68\xef\x71\xe8\x00\x6d\x03\x2f\xa4\xf7\x1d\x07\x08\x6e\xf4\x2a\xa1\x51\x63\xa0\x7f\x17\x7a\xb2\x19\xca\xb4\x61\xf2\x92\x50\x87\xb2\x4f\x8b\xcf\x9e\x17\x5f\x01\xd9\x6b\x35\x20\x77\x32\xc7\x71\x1f\x8e\x7d\xed\x8c\xf8\x14\xd2\x63\x32\xc5\x72\x23\xb1\x58\x2c\x16\x22\x75\x44\x8c\x4d\x87\x0a\xbd\xea\xf4\x61\x7a\x14\x5a\x34\x21\x4e\xb0\x6e\x21\x10\xcf\x63\x29\x72\x3d\x4e\x49\xc4\x4d\x8d\x10\x0f\xec\x00\x2d\x4c\xda\x49\x39\x77\xf7\x25\xa8\x6b\x3c\x32\x21\x99\x6b\xc8\x3a\xa6\x78\x9e\xb4\x5a\x6d\x28\x3d\xe5\xe1\xd4\x18\xff\x84\xf3\x45\x73\x37\xb5\xc6\xc5\x65\x76\x75\xae\xdf\x55\xc6\x17\x1a\x32\x7b\x5d\x8f\x9c\x9f\x01\x7a\x65\x8f\x53\xcd\x2e\x9c\x02\xe0\xb3\xb6\x8d\x84\xa7\xe7\xe7\x29\x8b\x78\x8f\xd1\x58\x1a\x3d\x1a\xb0\xc4\xe9\x4b\xe1\x3f\x4f\xcf\xcf\x73\x78\x1f\x7f\x84\x10\xff\x8d\x73\x1e\x97\xb0\xb6\xfb\x6a\x7a\xa7\xe4\xe5\xe5\x9a\x9d\xde\xae\xf3\xc3\x9f\xbe\x4b\x26\x85\x02\xa0\x47\xab\x5b\x0a\x5c\xe1\xc8\x9d\xf3\x12\x9e\x3a\xb2\x7b\xf8\x45\x17\x00\xbf\xb9\x61\x29\x61\xbb\x14\x0f\xbb\x7c\xdb\x4a\x78\xd8\x88\xc7\x37\xc5\xdf\x01\x00\x00\xff\xff\x8f\x4b\x43\xd0\x2f\x09\x00\x00"
func mobilenet_v2_025YmlBytes() ([]byte, error) {
return bindataRead(
_mobilenet_v2_025Yml,
"MobileNet_v2_0.25.yml",
)
}
func mobilenet_v2_025Yml() (*asset, error) {
bytes, err := mobilenet_v2_025YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "MobileNet_v2_0.25.yml", size: 2351, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _mobilenet_v2_05Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x4b\x8f\xdb\x36\x10\xbe\xeb\x57\x0c\xe0\xc3\xb6\x80\x97\xb2\x2d\xdb\xd9\x08\x68\x0e\xdd\x43\x5a\xa0\xdd\x43\xd0\x17\x10\x04\xc6\x88\x1a\x59\x4c\x28\x52\x20\x47\xde\x75\x7e\x7d\xc1\x87\x5f\x69\x90\xa0\x17\x9b\x9c\xf7\x7c\xf3\xa0\x0c\x0e\x54\xc3\xef\xb6\x51\x9a\x9e\x88\x77\x87\xd5\x6e\x21\x36\x30\x83\xc0\x00\xdb\xc1\xd1\x4e\x0e\x06\xdb\x92\x2e\x3a\x87\x03\x3d\x5b\xf7\xa9\x2e\x00\xb2\xe2\x3f\x4f\xc4\x30\x83\x33\x0b\x3a\xeb\x80\x7b\xca\x2a\x00\x07\x72\x5e\x59\x53\xc3\xdd\x9b\x9f\x96\x62\x29\x16\x77\x37\xe2\x99\x0d\xd2\x1a\x76\xa8\x0c\x17\x67\x85\xa5\x58\xc0\xec\x2c\xa0\x4c\x67\xdd\x80\x9c\xce\xe0\x69\x40\xc3\x4a\x9e\xf9\x89\x5b\x04\x3b\xa8\x0c\xb9\x1a\x66\x70\xbe\x78\x98\x3c\xb5\xc0\x16\x46\x72\x41\x32\x85\x07\x74\x40\x3d\x45\x9b\x05\x00\x0e\xed\x76\x1d\x52\x03\xd8\x8f\x53\x0d\x0e\xd5\xe8\xec\x47\x92\x5c\x4a\x74\x83\xbe\x97\xd8\x75\x54\x47\xb1\x7b\x39\x4e\x51\x52\x7e\x57\x72\x1f\x25\xc7\x51\x6e\xd7\x9a\xea\xef\x2a\x65\xc1\xac\xf6\xed\x50\xae\x65\x5b\xf2\xd2\xa9\x91\x23\x74\x6f\x0a\xc8\xa5\xf9\x75\xc0\x3d\xc1\xa3\x46\xef\x55\xa7\x64\xc2\x2f\x26\x3f\x87\xe7\x5e\xc9\x1e\x94\x87\x88\x3c\xb5\x60\x4d\x2c\x5d\xd4\x09\xca\x2d\x32\x7a\x62\x51\x00\xfc\xe9\xe9\xd2\x25\xb9\x49\x3a\x67\x07\x78\xab\x27\x6b\x1e\xff\xca\x80\x7e\xb6\x56\x14\x8e\x3a\x72\x64\x24\xf9\x50\x84\xcb\x2d\xe2\x8f\x63\x28\x47\x09\xcf\xd4\x78\xc5\x14\x8e\xc4\x52\x08\x48\x09\x34\xca\xec\x6f\xfa\xe7\x1e\x7a\xe6\xd1\xd7\x65\xb9\x0f\x9e\xee\xe5\x41\x0c\x2f\x86\x58\x28\x5b\x46\x99\xdd\x67\x6b\x4b\x79\x93\xa0\xe8\x79\xf8\x42\x57\x71\x3f\x35\x42\xda\xa1\x6c\x07\x2d\xcf\xb6\xca\x46\xdb\xa6\x1c\xd0\x33\xb9\x32\x01\xe8\xbf\x30\x56\xaa\x00\x87\x21\x2e\x0f\xe4\x54\x77\xdc\x8d\x8e\x32\x60\x62\x3c\x16\x5a\x49\x32\x9e\x6a\x98\x8c\x23\xcf\x4e\x49\xa6\x16\x66\x90\xe9\x61\x84\x2e\xe9\x28\x33\x4e\x1c\x51\x49\x70\xa5\x7b\x8c\x94\x8f\x23\xd5\x10\x7d\x85\x01\x51\xce\x73\x62\x07\x51\xd4\x8a\x8f\xb1\x1d\x6e\xca\x1c\x0c\x27\x99\x93\xde\x15\xfb\xe4\xf9\xca\x54\xb4\x30\x62\x18\x3e\x26\xe7\x53\x33\x02\x90\xa6\x81\x0c\xef\x52\x08\x9d\xb6\xc8\xd5\x2a\xf3\xa2\xde\x4e\xe3\x31\x4c\x54\xe8\x87\x4c\xd7\x78\xb4\x13\xd7\x70\xf7\xf8\xcb\xdf\x77\x99\x26\xad\xb6\x6e\x17\x32\xab\xe1\xee\xdd\xdb\x9f\x4f\xf4\x56\x0d\x64\xc2\x90\xfa\x1a\xde\x57\x73\x58\xad\xd6\xf1\xe7\x43\xe6\x0f\x84\xa6\x86\xf7\xcb\x55\x25\xb6\xaf\x36\x73\x58\x2e\xb7\x62\xf5\x30\x87\xe5\xa2\x12\x9b\xea\x24\xe5\x25\x6a\xaa\xe1\xfd\xe6\x41\x54\xaf\x37\x73\xd8\xbc\x12\xcb\x55\xfc\xab\x5e\x6d\x3e\x14\x76\xe2\x71\xe2\x90\x52\x4a\xe3\xb6\x88\x30\x8b\x58\x04\xd6\x09\x97\xa4\x50\x7c\x05\xd2\xc4\x01\x8d\x0d\x69\x98\x01\x7e\x0d\xd5\x2c\x73\x06\xb3\xb8\x01\x36\xb8\x0b\xae\x2e\xa4\xe2\xdb\x40\x8f\xce\x36\xd8\x28\xad\x58\x91\xdf\xb1\x43\xe3\xc3\x9a\xaa\xc1\xdb\x8e\x07\x7c\x09\x06\x23\x31\x8c\xdc\xb5\xff\x6b\xbd\xaf\x58\xca\x85\x0b\x8b\x54\x99\x96\x5e\x4e\xe1\xdf\x48\x41\x94\x0a\x5b\xf5\x62\x39\x19\xeb\x08\x79\x72\xe4\x77\x93\xd3\x75\x1c\xa6\xba\x2c\x7d\x25\x70\xc0\xcf\xd6\xe0\xb3\x8f\x13\xe5\xd9\x3a\x12\x71\x31\x09\xeb\xf6\xa5\x3f\x1a\x4f\xec\x2f\x83\x93\x08\x82\x5f\xf8\xd6\xaa\xec\x49\x7e\xf2\xd3\x50\xc3\xba\x5d\x55\xeb\x66\xf3\x50\x55\x28\x71\xbd\x7e\xbd\x7a\x58\x6c\x37\xb8\x7c\x58\xb4\x4d\xb5\x58\x6e\xb1\x88\xf3\x12\x70\xf5\x23\x49\xd5\x85\xa8\xd3\x08\xed\x1d\x8e\x3d\xa0\x69\xe1\x99\xd4\xbe\x67\x0f\xde\x4e\x4e\x46\x34\x1a\xf4\xf4\xff\x42\x8f\x36\x7d\x19\x37\x4c\x5a\x12\xf2\x50\x0e\x71\xef\x99\xd3\xde\x2b\x20\x39\xdd\x8d\xc8\x7d\x9d\xc2\xb8\xf7\xc7\xa1\xb1\x5a\x7c\xf4\xf1\x29\xc9\xa1\xdc\x48\x2c\x16\x8b\x85\x88\x0d\x11\x42\x53\x7e\x87\x4e\xf6\xea\x90\x9f\x84\x0e\xb5\x0f\x03\xac\x3a\xf0\xc4\xf3\x50\x89\x54\x8e\x53\x0e\x61\x4f\x23\x84\x03\x5b\x40\x03\x59\x3b\x2a\xa7\xe6\xbe\x04\x75\x0d\x47\x22\x44\x73\x2d\x19\xcb\x14\xce\x59\xab\x53\x9a\xe2\x43\xee\x4f\x7d\xf1\x5f\x34\x9f\x15\xf7\xb9\x33\x2e\x2e\x93\xab\x73\xf9\xae\x32\xbe\xd0\x90\xd9\xa9\x66\xe2\xf4\x0a\xd0\x0b\x3b\xcc\x25\xbb\x70\x0a\x80\x4f\xca\xb4\x35\x3c\x3e\x3d\xe5\x2c\xc2\x3d\x44\x63\x68\x72\xa8\xc1\x10\xc7\xef\x84\x1f\x1e\x9f\x9e\xe6\xf0\x2e\xfc\x08\x21\x7e\x0c\x63\x1e\x76\xb0\x32\xfb\x5d\x7e\xa5\xea\xcb\xbb\x35\x3b\xbd\x5c\xe7\x67\x3f\x7e\x95\x64\x85\x02\x60\x40\xa3\x3a\xf2\xbc\xc3\x89\x7b\xeb\x6a\x78\xec\xc9\xec\xe1\x37\x55\x00\xfc\x61\xc7\x65\x0d\xdb\xb5\x58\x57\xe9\xb6\xa9\xe1\x61\x23\xaa\x65\xf1\x6f\x00\x00\x00\xff\xff\x46\xe7\x0c\x9e\x2c\x09\x00\x00"
func mobilenet_v2_05YmlBytes() ([]byte, error) {
return bindataRead(
_mobilenet_v2_05Yml,
"MobileNet_v2_0.5.yml",
)
}
func mobilenet_v2_05Yml() (*asset, error) {
bytes, err := mobilenet_v2_05YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "MobileNet_v2_0.5.yml", size: 2348, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _mobilenet_v2_075Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x4b\x8f\xdb\x36\x10\xbe\xeb\x57\x0c\xe0\xc3\xb6\x80\x97\xb2\x2d\xdb\xeb\x08\x68\x0e\xdd\x43\x5a\xa0\xdd\x43\xd0\x17\x10\x04\xc2\x88\x1a\x59\x4c\x28\x52\x20\x47\xde\x75\x7e\x7d\x41\x52\x7e\xa5\x8b\x04\xbd\xd8\xe4\xbc\xe7\x9b\x07\x65\xb0\xa7\x12\x7e\xb7\xb5\xd2\xf4\x44\x5c\x1d\x56\xd5\x42\x3c\x6c\x60\x06\x81\x03\xb6\x85\xa3\x1d\x1d\xf4\xb6\x21\x9d\xb5\x0e\x7b\x7a\xb6\xee\x73\x99\x01\x4c\x9a\xff\x3c\x11\xc3\x0c\xce\x2c\x68\xad\x03\xee\x68\x52\x01\x38\x90\xf3\xca\x9a\x12\xee\xde\xfe\xb4\x14\x4b\xb1\xb8\xbb\x11\x9f\xd8\x20\xad\x61\x87\xca\x70\x76\x56\x58\x8a\x05\xcc\xce\x02\xca\xb4\xd6\xf5\xc8\xe9\x0c\x9e\x7a\x34\xac\xe4\x99\x9f\xb8\x59\xb0\x83\xca\x90\x2b\x61\x06\xe7\x8b\x87\xd1\x53\x03\x6c\x61\x20\x17\x24\x53\x78\x40\x07\xd4\x63\xb4\x99\x01\x60\xdf\x6c\xd7\x21\x35\x80\xfd\x30\x96\xe0\x50\x0d\xce\x7e\x22\xc9\xb9\x44\xd7\xeb\x7b\x89\x6d\x4b\x65\x14\xbb\x97\xc3\x18\x25\xe5\x77\x25\xf7\x51\x72\x18\xe4\x76\xad\xa9\xfc\xae\xd2\x24\x38\xa9\x7d\x3b\x94\x6b\xd9\x86\xbc\x74\x6a\xe0\x08\xdd\xdb\x0c\xa6\xd2\xfc\xda\xe3\x9e\xe0\x51\xa3\xf7\xaa\x55\x32\xe1\x17\x93\x9f\xc3\x73\xa7\x64\x07\xca\x43\x44\x9e\x1a\xb0\x26\x96\x2e\xea\x04\xe5\x06\x19\x3d\xb1\xc8\x00\xfe\xf4\x74\x69\x93\x53\x97\xb4\xce\xf6\xf0\x4e\x8f\xd6\x3c\xfe\x35\x21\xfa\xc5\x5a\x91\x39\x6a\xc9\x91\x91\xe4\x43\x15\x2e\xb7\x58\x00\x1c\x42\x3d\x72\x78\xa6\xda\x2b\xa6\x70\x24\x96\x42\x40\xca\xa0\x56\x66\x7f\xd3\x40\xf7\xd0\x31\x0f\xbe\xcc\xf3\x7d\xf0\x74\x2f\x0f\xa2\x7f\x31\xc4\x42\xd9\x3c\xca\x54\x5f\xac\xcd\xe5\x4d\x86\xa2\xe3\xfe\x2b\x5d\xc5\xdd\x58\x0b\x69\xfb\xbc\xe9\xb5\x3c\xdb\xca\x6b\x6d\xeb\xbc\x47\xcf\xe4\xf2\x84\xa0\xff\xca\x58\xae\x02\x1e\x86\x38\x3f\x90\x53\xed\xb1\x1a\x1c\x4d\x88\x89\xe1\x98\x69\x25\xc9\x78\x2a\x61\x34\x8e\x3c\x3b\x25\x99\x1a\x98\xc1\x44\x0f\x33\x74\x49\x47\x99\x61\xe4\x88\x4a\x82\x2b\xdd\x63\xa4\x7c\x1c\xa8\x84\xe8\x2b\x4c\x88\x72\x9e\x13\x3b\x88\xa2\x56\x7c\x8c\xfd\x70\x53\xe7\x60\x38\xc9\x9c\xf4\xae\xd8\x27\xcf\x57\xa6\xa2\x85\x01\xc3\xf4\x31\x39\x9f\xba\x11\x80\x34\xf5\x64\xb8\x4a\x21\xb4\xda\x22\x17\xab\x89\x17\xf5\x2a\x8d\xc7\x30\x52\xa1\x21\x26\xba\xc6\xa3\x1d\xb9\x84\xbb\xc7\x5f\xfe\xbe\x9b\x68\xd2\x6a\xeb\xaa\x90\x59\x09\x77\xef\xdf\xfd\x7c\xa2\x37\xaa\x27\x13\xa6\xd4\x97\xf0\xa1\x98\xc3\x6a\xb5\x8e\x3f\x1f\x27\x7e\x4f\x68\x4a\xf8\xb0\x5c\x15\x62\xfb\xb0\x99\xc3\x72\xb9\x15\xab\xdd\x1c\x96\x8b\x42\x6c\x8a\x93\x94\x97\xa8\xa9\x84\x0f\x9b\x9d\x28\xde\x6c\xe6\xb0\x79\x10\xcb\x55\xfc\x2b\x1e\x36\x1f\x33\x3b\xf2\x30\x72\x48\x29\xa5\x71\x5b\x44\x98\x45\x2c\x02\xeb\x84\x4b\x52\xc8\x5e\x81\x34\x71\x40\x63\x4d\x1a\x66\x80\xaf\xa1\x3a\xc9\x9c\xc1\xcc\x6e\x80\x0d\xee\x82\xab\x0b\x29\xfb\x36\xd0\x83\xb3\x35\xd6\x4a\x2b\x56\xe4\x2b\x76\x68\x7c\xd8\x53\x25\x78\xdb\x72\x8f\x2f\xc1\x60\x24\x86\x91\xbb\xf6\x7f\xad\xf7\x8a\xa5\xa9\x70\x61\x93\x2a\xd3\xd0\xcb\x29\xfc\x1b\x29\x88\x52\x61\xad\x5e\x2c\x27\x63\x2d\x21\x8f\x8e\x7c\x35\x3a\x5d\xc6\x61\x2a\xf3\xdc\x17\x02\x7b\xfc\x62\x0d\x3e\xfb\x38\x51\x9e\xad\x23\x11\x37\x93\xb0\x6e\x9f\xfb\xa3\xf1\xc4\xfe\x32\x38\x89\x20\xf8\x85\x6f\xad\xca\x8e\xe4\x67\x3f\xf6\x25\xac\x9b\x55\xb1\xae\x37\xbb\xa2\x40\x89\xeb\xf5\x9b\xd5\x6e\xb1\xdd\xe0\x72\xb7\x68\xea\x62\xb1\xdc\x62\x16\xe7\x25\xe0\xea\x07\x92\xaa\x0d\x51\xa7\x11\xda\x3b\x1c\x3a\x40\xd3\xc0\x33\xa9\x7d\xc7\x1e\xbc\x1d\x9d\x8c\x68\xd4\xe8\xe9\xff\x85\x1e\x6d\xfa\x3c\x6e\x98\xb4\x24\xe4\x21\xef\xe3\xe2\x33\xe7\xc5\x97\x41\xf2\x5a\x0d\xc8\x5d\x99\xe2\xb8\xf7\xc7\xbe\xb6\x5a\x7c\xf2\xf1\x31\x99\x62\xb9\x91\x58\x2c\x16\x0b\x11\x3b\x22\xc4\xa6\x7c\x85\x4e\x76\xea\x30\x3d\x0a\x2d\x6a\x1f\x26\x58\xb5\xe0\x89\xe7\xa1\x14\xa9\x1e\xa7\x24\xc2\xa6\x46\x08\x07\xb6\x80\x06\x26\xed\xa8\x9c\xba\xfb\x12\xd4\x35\x1e\x89\x10\xcd\x35\x64\x2c\x53\x38\x4f\x5a\xad\xd2\x14\x9f\x72\x7f\x6a\x8c\xff\xc2\xf9\xac\xb8\x9b\x5a\xe3\xe2\x32\xb9\x3a\xd7\xef\x2a\xe3\x0b\x0d\x99\x9d\xaa\x47\x4e\xcf\x00\xbd\xb0\xc3\xa9\x66\x17\x4e\x06\xf0\x59\x99\xa6\x84\xc7\xa7\xa7\x29\x8b\x70\x0f\xd1\x18\x1a\x1d\x6a\x30\xc4\xf1\x4b\xe1\x87\xc7\xa7\xa7\x39\xbc\x0f\x3f\x42\x88\x1f\xc3\x9c\x87\x25\xac\xcc\xbe\x9a\xde\xa9\xf2\xf2\x72\xcd\x4e\x6f\xd7\xf9\xe1\x8f\xdf\x25\x93\x42\x06\xd0\xa3\x51\x2d\x79\xae\x70\xe4\xce\xba\x12\x1e\x3b\x32\x7b\xf8\x4d\x65\x00\x7f\xd8\x61\x59\xc2\xf6\x8d\x28\xb6\xe9\xb6\x29\x61\xb7\x13\x9b\x45\xf6\x6f\x00\x00\x00\xff\xff\xeb\x55\xc5\xee\x2f\x09\x00\x00"
func mobilenet_v2_075YmlBytes() ([]byte, error) {
return bindataRead(
_mobilenet_v2_075Yml,
"MobileNet_v2_0.75 .yml",
)
}
func mobilenet_v2_075Yml() (*asset, error) {
bytes, err := mobilenet_v2_075YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "MobileNet_v2_0.75 .yml", size: 2351, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _mobilenet_v2_10Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x4b\x6f\xdc\x36\x10\xbe\xeb\x57\x0c\xb0\x07\xb7\xc0\x9a\xda\xa7\xed\x08\x68\x0e\xf5\x21\x2d\xd0\xfa\x10\xf4\x05\x04\x81\x30\xa2\x46\x2b\x26\x14\x29\x90\xa3\xb5\x37\xbf\xbe\xe0\x63\x5f\xa9\x91\xa0\x97\x5d\x72\xde\xf3\xcd\x83\x32\x38\x50\x05\xbf\xdb\x46\x69\x7a\x22\xae\xf7\xab\x7a\x29\x16\x30\x83\xc0\x00\xdb\xc1\xc1\x4e\x0e\x06\xdb\x92\x2e\x3a\x87\x03\x3d\x5b\xf7\xb9\x2a\x00\xb2\xe2\x3f\x4f\xc4\x30\x83\x13\x0b\x3a\xeb\x80\x7b\xca\x2a\x00\x7b\x72\x5e\x59\x53\xc1\xcd\xdb\x9f\x96\x62\x29\x16\x37\x57\xe2\x99\x0d\xd2\x1a\x76\xa8\x0c\x17\x27\x85\x14\xc7\x51\x40\x99\xce\xba\x01\x39\x9d\xc1\xd3\x80\x86\x95\x3c\xf1\x13\xb7\x08\x76\x50\x19\x72\x15\xcc\xe0\x74\xf1\x30\x79\x6a\x81\x2d\x8c\xe4\x82\x64\x0a\x0f\x68\x8f\x7a\x8a\x36\x0b\x00\x1c\xda\xbb\x4d\x48\x0d\x60\x37\x4e\x15\x38\x54\xa3\xb3\x9f\x48\x72\x29\xd1\x0d\xfa\x56\x62\xd7\x51\x15\xc5\x6e\xe5\x38\x45\x49\xf9\x5d\xc9\x5d\x94\x1c\x47\x79\xb7\xd1\x54\x7d\x57\x29\x0b\x66\xb5\x6f\x87\x72\x29\xdb\x92\x97\x4e\x8d\x1c\xa1\x7b\x5b\x40\x2e\xcd\xaf\x03\xee\x08\x1e\x35\x7a\xaf\x3a\x25\x13\x7e\x31\xf9\x39\x3c\xf7\x4a\xf6\xa0\x3c\x44\xe4\xa9\x05\x6b\x62\xe9\xa2\x4e\x50\x6e\x91\xd1\x13\x8b\x02\xe0\x4f\x4f\xe7\x2e\xc9\x4d\xd2\x39\x3b\xc0\x3b\x3d\x59\xf3\xf8\x57\x06\xf4\x8b\xb5\xa2\x70\xd4\x91\x23\x23\xc9\x87\x22\x9c\x6f\x11\x7f\x1c\x43\x39\x4a\x78\xa6\xc6\x2b\xa6\x70\x24\x96\x42\x40\x4a\xa0\x51\x66\x77\xd5\x3f\xb7\xd0\x33\x8f\xbe\x2a\xcb\x5d\xf0\x74\x2b\xf7\x62\x78\x31\xc4\x42\xd9\x32\xca\xd4\x5f\xac\x2d\xe5\x55\x82\xa2\xe7\xe1\x2b\x5d\xc5\xfd\xd4\x08\x69\x87\xb2\x1d\xb4\x3c\xd9\x2a\x1b\x6d\x9b\x72\x40\xcf\xe4\xca\x04\xa0\xff\xca\x58\xa9\x02\x1c\x86\xb8\xdc\x93\x53\xdd\xa1\x1e\x1d\x65\xc0\xc4\x78\x28\xb4\x92\x64\x3c\x55\x30\x19\x47\x9e\x9d\x92\x4c\x2d\xcc\x20\xd3\xc3\x08\x9d\xd3\x51\x66\x9c\x38\xa2\x92\xe0\x4a\xf7\x18\x29\x1f\x46\xaa\x20\xfa\x0a\x03\xa2\x9c\xe7\xc4\x0e\xa2\xa8\x15\x1f\x62\x3b\x5c\x95\x39\x18\x4e\x32\x47\xbd\x0b\xf6\xd1\xf3\x85\xa9\x68\x61\xc4\x30\x7c\x4c\xce\xa7\x66\x04\x20\x4d\x03\x19\xae\x53\x08\x9d\xb6\xc8\xeb\x55\xe6\x45\xbd\x5a\xe3\x21\x4c\x54\xe8\x87\x4c\xd7\x78\xb0\x13\x57\x70\xf3\xf8\xcb\xdf\x37\x99\x26\xad\xb6\xae\x0e\x99\x55\x70\xf3\xfe\xdd\xcf\x47\x7a\xab\x06\x32\x61\x48\x7d\x05\x1f\xd6\x73\x58\xad\x36\xf1\xe7\x63\xe6\x0f\x84\xa6\x82\x0f\xcb\xd5\x5a\xdc\xdd\x6f\xe7\xb0\x5c\xde\x89\xd5\xc3\x1c\x96\x8b\xb5\xd8\xae\x8f\x52\x5e\xa2\xa6\x0a\x3e\x6c\x1f\xc4\xfa\xcd\x76\x0e\xdb\x7b\xb1\x5c\xc5\xbf\xf5\xfd\xf6\x63\x61\x27\x1e\x27\x0e\x29\xa5\x34\xae\x8b\x08\xb3\x88\x45\x60\x1d\x71\x49\x0a\xc5\x2b\x90\x26\x0e\x68\x6c\x48\xc3\x0c\xf0\x35\x54\xb3\xcc\x09\xcc\xe2\x0a\xd8\xe0\x2e\xb8\x3a\x93\x8a\x6f\x03\x3d\x3a\xdb\x60\xa3\xb4\x62\x45\xbe\x66\x87\xc6\x87\x35\x55\x81\xb7\x1d\x0f\xf8\x12\x0c\x46\x62\x18\xb9\x4b\xff\x97\x7a\xaf\x58\xca\x85\x0b\x8b\x54\x99\x96\x5e\x8e\xe1\x5f\x49\x41\x94\x0a\x5b\xf5\x6c\x39\x19\xeb\x08\x79\x72\xe4\xeb\xc9\xe9\x2a\x0e\x53\x55\x96\x7e\x2d\x70\xc0\x2f\xd6\xe0\xb3\x8f\x13\xe5\xd9\x3a\x12\x71\x31\x09\xeb\x76\xa5\x3f\x18\x4f\xec\xcf\x83\x93\x08\x82\x5f\xf8\xda\xaa\xec\x49\x7e\xf6\xd3\x50\xc1\xa6\x5d\xad\x37\xcd\xf6\x61\xbd\x46\x89\x9b\xcd\x9b\xd5\xc3\xe2\x6e\x8b\xcb\x87\x45\xdb\xac\x17\xcb\x3b\x2c\xe2\xbc\x04\x5c\xfd\x48\x52\x75\x21\xea\x34\x42\x3b\x87\x63\x0f\x68\x5a\x78\x26\xb5\xeb\xd9\x83\xb7\x93\x93\x11\x8d\x06\x3d\xfd\xbf\xd0\xa3\x4d\x5f\xc6\x0d\x93\x96\x84\xdc\x97\x43\xdc\x7b\xe6\xb8\xf7\x0a\x48\x4e\xeb\x11\xb9\xaf\x52\x18\xb7\xfe\x30\x34\x56\x8b\x4f\x3e\x3e\x25\x39\x94\x2b\x89\xc5\x62\xb1\x10\xb1\x21\x42\x68\xca\xd7\xe8\x64\xaf\xf6\xf9\x49\xe8\x50\xfb\x30\xc0\xaa\x03\x4f\x3c\x0f\x95\x48\xe5\x38\xe6\x10\xf6\x34\x42\x38\xb0\x05\x34\x90\xb5\xa3\x72\x6a\xee\x73\x50\x97\x70\x24\x42\x34\xd7\x92\xb1\x4c\xe1\x9c\xb5\x3a\xa5\x29\x3e\xe4\xfe\xd8\x17\xff\x45\xf3\x59\x71\x9f\x3b\xe3\xec\x32\xb9\x3a\x95\xef\x22\xe3\x33\x0d\x99\x9d\x6a\x26\x4e\xaf\x00\xbd\xb0\xc3\x5c\xb2\x33\xa7\x00\xf8\xac\x4c\x5b\xc1\xe3\xd3\x53\xce\x22\xdc\x43\x34\x86\x26\x87\x1a\x0c\x71\xfc\x4e\xf8\xe1\xf1\xe9\x69\x0e\xef\xc3\x8f\x10\xe2\xc7\x30\xe6\x61\x07\x2b\xb3\xab\xf3\x2b\x55\x9d\xdf\xad\xd9\xf1\xe5\x3a\x3d\xfb\xf1\xab\x24\x2b\x14\x00\x03\x1a\xd5\x91\xe7\x1a\x27\xee\xad\xab\xe0\xb1\x27\xb3\x83\xdf\x54\x01\xf0\x87\x1d\x97\x15\xdc\xaf\xc4\x62\x93\x6e\xdb\x0a\xde\x2c\xc4\xf6\xbe\xf8\x37\x00\x00\xff\xff\x25\x79\x97\xd9\x2c\x09\x00\x00"
func mobilenet_v2_10YmlBytes() ([]byte, error) {
return bindataRead(
_mobilenet_v2_10Yml,
"MobileNet_v2_1.0 .yml",
)
}
func mobilenet_v2_10Yml() (*asset, error) {
bytes, err := mobilenet_v2_10YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "MobileNet_v2_1.0 .yml", size: 2348, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _resnet101_v1Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x4b\x8f\xdb\x36\x10\xbe\xeb\x57\x0c\xe0\xc3\xb6\x80\x97\x92\x2c\x7b\x77\x43\xa0\x39\xd4\x87\xb4\x40\xeb\x43\xd0\x17\x10\x04\xc6\x98\x1a\x59\x4c\x24\x52\x20\x47\xf6\x3a\xbf\xbe\x20\x29\xbf\xd0\x20\x41\x2f\x5e\x71\xe6\x9b\xd7\x37\xc3\xe1\x1a\xec\x49\xc2\x7b\xf2\x1b\xe2\xb2\x28\xb7\x87\x12\x66\x10\x84\x60\x1b\x38\xd9\xd1\x41\x6f\x6b\xea\xb2\xc6\x61\x4f\x47\xeb\x3e\xcb\x0c\x20\x19\xfd\xfe\xcf\x86\x18\x66\x70\x51\x41\x63\x1d\x70\x4b\x93\x09\xc0\x81\x9c\xd7\xd6\x48\x78\x78\xfb\x53\x29\x4a\x51\x3c\xdc\xc1\x27\x35\x28\x6b\xd8\xa1\x36\x9c\x5d\x0c\x4a\x51\xc0\xec\x02\xd0\xa6\xb1\xae\x47\x4e\xdf\xe0\xa9\x47\xc3\x5a\x5d\xf4\x49\x9b\x05\x3f\xa8\x0d\x39\x09\x33\xb8\x1c\x3c\x8c\x9e\x6a\x60\x0b\x03\xb9\x80\x4c\xe9\x01\x1d\xb0\x1b\xa3\xcf\x0c\x00\xfb\xfa\x69\x19\x4a\x03\xd8\x0f\xa3\x04\x87\x7a\x70\xf6\x13\x29\xce\x15\xba\xbe\x7b\x54\xd8\x34\x24\x23\xec\x51\x0d\x63\x44\xaa\xef\x22\xf7\x11\x39\x0c\xea\x69\xd9\x91\xfc\xae\xd1\x04\x9c\xcc\xbe\x9d\xca\x2d\xb6\x26\xaf\x9c\x1e\x38\x52\xf7\x36\x83\xa9\x35\xbf\xf6\xb8\x27\x58\x77\xe8\xbd\x6e\xb4\x4a\xfc\xc5\xe2\xe7\x70\x6c\xb5\x6a\x41\x7b\x88\xcc\x53\x0d\xd6\xc4\xd6\x45\x9b\x60\x5c\x23\xa3\x27\x16\x19\xc0\x9f\x9e\xee\x27\xa4\x71\xb6\x87\x77\xdd\x68\xcd\xfa\xaf\x89\xcd\x2f\xd6\x8a\xcc\x51\x43\x8e\x8c\x22\x1f\x3a\x70\x3d\x45\xf2\x71\x08\xbd\xc8\xe1\x48\x3b\xaf\x99\xc2\x27\xb1\x12\x02\x52\xf6\x3b\x6d\xf6\x77\xc3\xf3\x08\x2d\xf3\xe0\x65\x9e\xef\x43\xa4\x47\x75\x10\xfd\xab\x21\x16\xda\xe6\x11\xb3\xfd\x62\x6d\xae\xee\xaa\x13\x2d\xf7\x5d\xd6\x69\x45\xc6\x93\x84\xd1\x38\xf2\xec\xb4\x62\xaa\x61\x06\x93\x3c\x4c\xf6\x35\x90\x36\xc3\xc8\x31\xdf\x54\x48\x3a\xc7\xf8\x7c\x1a\x48\x82\x8e\x2c\xce\xa0\xd1\xce\x73\x52\x07\x28\x76\x9a\x4f\xb1\x4b\x77\xec\x07\xc7\x09\x73\xb6\xbb\x51\x9f\x23\xdf\xb8\x8a\x1e\x06\x0c\x77\x82\xc9\xf9\x34\x23\x00\xd4\x51\x4f\x86\xb7\x29\x85\xa6\xb3\xc8\xd5\x62\xd2\x45\xbb\x6d\x87\xa7\x30\xe8\xa1\x4d\x93\xbc\xc3\x93\x1d\x59\xc2\xc3\xfa\x97\xbf\x1f\x26\x99\xb2\x9d\x75\xdb\x50\x99\x84\x87\xf7\xef\x7e\x3e\xcb\x6b\xdd\x93\x09\x77\xc7\x4b\xf8\x50\xcd\x61\xb1\x58\xc6\x9f\x8f\x93\xbe\x27\x34\x12\x3e\x94\x8b\x4a\x3c\x3d\xaf\xe6\x50\x96\x4f\x62\xf1\x32\x87\xb2\xa8\xc4\xaa\x3a\xa3\xbc\xc2\x8e\x24\x7c\x58\xbd\x88\xea\xcd\x6a\x0e\xab\x67\x51\x2e\xe2\x9f\xea\x79\xf5\x31\xb3\x23\x0f\x23\x87\x92\x52\x19\xf7\xbd\x82\x59\xe4\x22\xa8\xce\xbc\x24\x83\xec\x2b\x94\x26\x0d\x74\xb8\xa3\x0e\x66\x80\x5f\x63\x75\xc2\x5c\xc8\xcc\xee\x88\x0d\xe1\x42\xa8\xab\x28\xfb\x36\xd1\x83\xb3\x3b\xdc\xe9\x4e\xb3\x26\xbf\x65\x87\xc6\x87\xed\x21\xc1\xdb\x86\x7b\x7c\x0d\x0e\xa3\x30\x5c\x86\xdb\xf8\xb7\x76\x5f\xf1\x34\x35\x2e\xec\x37\x6d\x6a\x7a\x3d\xa7\x7f\x87\x82\x88\x0a\xcb\xee\xea\x39\x39\x6b\x08\x79\x74\xe4\xb7\xa3\xeb\x64\xbc\x22\x32\xcf\x7d\x25\xb0\xc7\x2f\xd6\xe0\xd1\x0b\x65\xfb\xdc\xb3\x75\x24\xe2\xbe\x10\xd6\xed\x73\x7f\x32\x9e\xd8\xe7\x71\x28\x0d\xf1\x24\x10\xfc\xca\xf7\x5e\x55\x4b\xea\xb3\x1f\x7b\x09\xcb\x7a\x51\x2d\x77\xab\x97\xaa\x42\x85\xcb\xe5\x9b\xc5\x4b\xf1\xb4\xc2\xf2\xa5\xa8\x77\x55\x51\x3e\x61\x16\xef\x4b\xe0\xd5\x0f\xa4\x74\x13\xb2\x4e\x57\x68\xef\x70\x68\x01\x4d\x0d\x47\xd2\xfb\x96\x3d\x78\x3b\x3a\x15\xd9\xd8\xa1\xa7\xff\x97\x7a\xf4\xe9\xf3\x78\xf7\xd3\x2a\x50\x87\xdc\x91\x37\xe7\x75\x94\x41\x8a\xb8\x1d\x90\x5b\x99\x72\x78\xf4\xa7\x7e\x67\x3b\xf1\xc9\xc7\xf5\x3e\xe5\x71\x87\x28\x8a\xa2\x10\x71\x1a\x42\x5e\xda\x6f\xd1\xa9\x56\x1f\xa6\x35\xdd\x60\xe7\xc3\xed\xd5\x0d\x78\xe2\x79\x68\x43\xea\xc5\xb9\x80\xb0\x3b\x11\xc2\x07\x5b\x40\x03\x93\x75\x34\x4e\x93\x7d\x4d\xea\x96\x8b\x24\x88\xee\x6a\x32\x96\x29\x7c\x4f\x56\x8d\xee\x28\x3e\xae\xfe\x3c\x14\xff\xa5\xf2\xa8\xb9\x9d\xc6\xe2\x1a\x32\x85\xba\xf4\xee\xa6\xe2\xab\x0c\x99\x9d\xde\x8d\x9c\x96\x33\xbd\xb2\xc3\xa9\x5f\x57\x4d\x06\xf0\x59\x9b\x5a\xc2\x7a\xb3\x99\xaa\x08\xe7\x90\x8d\xa1\xd1\x61\x07\x86\x38\xbe\xdd\x3f\xac\x37\x9b\x39\xbc\x0f\x3f\x42\x88\x1f\xc3\x1d\x0f\x0f\x89\x36\xfb\xed\xf4\x72\xc8\xeb\x5b\x32\x3b\xbf\x26\x97\xa7\x38\xfe\xa7\x30\x19\x64\x00\x3d\x1a\xdd\x90\xe7\x2d\x8e\xdc\x5a\x27\x61\xdd\x92\xd9\xc3\x6f\x3a\x03\xf8\xc3\x0e\xa5\x84\xe7\x17\x51\x2d\xd3\x69\x25\xe1\xcd\x52\x14\x65\xf6\x6f\x00\x00\x00\xff\xff\x2b\x1e\x9f\x5e\xbc\x08\x00\x00"
func resnet101_v1YmlBytes() ([]byte, error) {
return bindataRead(
_resnet101_v1Yml,
"ResNet101_v1.yml",
)
}
func resnet101_v1Yml() (*asset, error) {
bytes, err := resnet101_v1YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "ResNet101_v1.yml", size: 2236, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _resnet101_v1bYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x4d\x6f\xe3\x36\x13\xbe\xeb\x57\x0c\xe0\x43\xde\x17\x70\x28\xc9\xb2\x9d\x84\x40\xf7\xd0\x1c\xb6\x05\xda\x1c\x16\xfd\x02\x16\x0b\x63\x4c\x8d\x2c\xee\x4a\xa4\x40\x8e\xec\x78\x7f\x7d\x41\x52\xfe\x6a\x83\x5d\xf4\xe2\x88\x33\xcf\x7c\x3d\x33\x1c\xc6\x60\x4f\x12\x3e\x90\x7f\x21\x2e\x8b\x72\xb3\x2f\xb7\x30\x83\x20\x05\xdb\xc0\xd1\x8e\x0e\x7a\x5b\x53\x97\x35\x0e\x7b\x3a\x58\xf7\x45\x66\x00\xc9\xea\xd7\xbf\x5e\x88\x61\x06\x67\x15\x34\xd6\x01\xb7\x34\x99\x00\xec\xc9\x79\x6d\x8d\x84\xbb\x77\x3f\x94\xa2\x14\xc5\xdd\x0d\x7c\x52\x83\xb2\x86\x1d\x6a\xc3\xd9\xd9\xa0\x14\x05\xcc\xce\x00\x6d\x1a\xeb\x7a\xe4\xf4\x0d\x9e\x7a\x34\xac\xd5\x59\x9f\xb4\x59\xf0\x83\xda\x90\x93\x30\x83\xf3\xc1\xc3\xe8\xa9\x06\xb6\x30\x90\x0b\xc8\x94\x1e\xd0\x1e\xbb\x31\xfa\xcc\x00\xb0\xaf\xd7\xcb\x50\x1a\xc0\x6e\x18\x25\x38\xd4\x83\xb3\x9f\x49\x71\xae\xd0\xf5\xdd\xbd\xc2\xa6\x21\x19\x61\xf7\x6a\x18\x23\x52\x7d\x17\xb9\x8b\xc8\x61\x50\xeb\x65\x47\xf2\xbb\x46\x13\x70\x32\xfb\x76\x2a\xd7\xd8\x9a\xbc\x72\x7a\xe0\x48\xdd\xbb\x0c\xa6\xd6\xfc\xdc\xe3\x8e\xe0\xb9\x43\xef\x75\xa3\x55\xe2\x2f\x16\x3f\x87\x43\xab\x55\x0b\xda\x43\x64\x9e\x6a\xb0\x26\xb6\x2e\xda\x04\xe3\x1a\x19\x3d\xb1\xc8\x00\x7e\xf7\xf4\x8f\x11\x69\x9c\xed\xe1\x7d\x37\x5a\xf3\xfc\xc7\x44\xe7\x57\x6b\x45\xe6\xa8\x21\x47\x46\x91\x0f\x2d\xb8\x9c\x22\xfb\x38\x84\x66\xe4\x70\xa0\xad\xd7\x4c\xe1\x93\x58\x09\x01\x29\xfd\xad\x36\xbb\x9b\xe9\xb9\x87\x96\x79\xf0\x32\xcf\x77\x21\xd2\xbd\xda\x8b\xfe\xd5\x10\x0b\x6d\xf3\x88\xd9\x7c\xb5\x36\x57\x37\xe5\x89\x96\xfb\x2e\xeb\xb4\x22\xe3\x49\xc2\x68\x1c\x79\x76\x5a\x31\xd5\x30\x83\x49\x1e\x46\xfb\x12\x48\x9b\x61\xe4\x98\x6f\x2a\x24\x9d\x63\x7c\x3e\x0e\x24\x41\x47\x1a\x67\xd0\x68\xe7\x39\xa9\x03\x14\x3b\xcd\xc7\xd8\xa6\x1b\xfa\x83\xe3\x84\x39\xd9\x5d\xa9\x4f\x91\xaf\x5c\x45\x0f\x03\x86\x4b\xc1\xe4\x7c\x1a\x12\x00\xea\xa8\x27\xc3\x9b\x94\x42\xd3\x59\xe4\x6a\x31\xe9\xa2\xdd\xa6\xc3\x63\x98\xf4\xd0\xa7\x49\xde\xe1\xd1\x8e\x2c\xe1\xee\xf9\xa7\x3f\xef\x26\x99\xb2\x9d\x75\x9b\x50\x99\x84\xbb\x0f\xef\x7f\x3c\xc9\x6b\xdd\x93\x09\x97\xc7\x4b\xf8\x58\xcd\x61\xb1\x58\xc6\x9f\x4f\x93\xbe\x27\x34\x12\x3e\x96\x8b\x4a\xac\x1f\x56\x73\x28\xcb\xb5\x58\x3c\xce\xa1\x2c\x2a\xb1\xaa\x4e\x28\xaf\xb0\x23\x09\x1f\x57\x8f\xa2\x7a\x5a\xcd\x61\xf5\x20\xca\x45\xfc\x53\x3d\xac\x3e\x65\x76\xe4\x61\xe4\x50\x52\x2a\xe3\xb6\x57\x30\x8b\x5c\x04\xd5\x89\x97\x64\x90\xbd\x41\x69\xd2\x40\x87\x5b\xea\x60\x06\xf8\x16\xab\x13\xe6\x4c\x66\x76\x43\x6c\x08\x17\x42\x5d\x44\xd9\xb7\x89\x1e\x9c\xdd\xe2\x56\x77\x9a\x35\xf9\x0d\x3b\x34\x3e\xac\x0f\x09\xde\x36\xdc\xe3\x6b\x70\x18\x85\xe1\x32\x5c\xc7\xbf\xb6\x7b\xc3\xd3\xd4\xb8\xb0\xe0\xb4\xa9\xe9\xf5\x94\xfe\x0d\x0a\x22\x2a\x6c\xbb\x8b\xe7\xe4\xac\x21\xe4\xd1\x91\xdf\x8c\xae\x93\xf1\x8a\xc8\x3c\xf7\x95\xc0\x1e\xbf\x5a\x83\x07\x2f\x94\xed\x73\xcf\xd6\x91\x88\x0b\x43\x58\xb7\xcb\xfd\xd1\x78\x62\x9f\xc7\xa1\x34\xc4\x93\x40\xf0\x2b\xdf\x7a\x55\x2d\xa9\x2f\x7e\xec\x25\x2c\xeb\x45\xb5\xdc\xae\x1e\xab\x0a\x15\x2e\x97\x4f\x8b\xc7\x62\xbd\xc2\xf2\xb1\xa8\xb7\x55\x51\xae\x31\x8b\xf7\x25\xf0\xea\x07\x52\xba\x09\x59\xa7\x2b\xb4\x73\x38\xb4\x80\xa6\x86\x03\xe9\x5d\xcb\x1e\xbc\x1d\x9d\x8a\x6c\x6c\xd1\xd3\x7f\x4b\x3d\xfa\xf4\x79\xbc\xfb\x69\x15\xa8\x7d\xee\xc8\x9b\xf3\x3e\xca\x20\x85\xdc\x0c\xc8\xad\x4c\x49\xdc\xfb\x63\xbf\xb5\x9d\xf8\xec\xe3\x82\x9f\x12\xb9\x41\x14\x45\x51\x88\x38\x0e\x21\x31\xed\x37\xe8\x54\xab\xf7\xd3\xa2\x6e\xb0\xf3\xe1\xfa\xea\x06\x3c\xf1\x3c\xf4\x21\x35\xe3\x54\x41\xd8\x9e\x08\xe1\x83\x2d\xa0\x81\xc9\x3a\x1a\xa7\xd1\xbe\x24\x75\x4d\x46\x12\x44\x77\x35\x19\xcb\x14\xbe\x27\xab\x46\x77\x14\x9f\x57\x7f\x9a\x8a\x7f\x73\x79\xd0\xdc\x4e\x73\x71\x09\x99\x42\x9d\x9b\x77\x55\xf1\x45\x86\xcc\x4e\x6f\x47\x4e\xdb\x99\x5e\xd9\xe1\xd4\xb0\x8b\x26\x03\xf8\xa2\x4d\x2d\xe1\xf9\xe5\x65\xaa\x22\x9c\x43\x36\x86\x46\x87\x1d\x18\xe2\xf8\x7a\xff\xef\xf9\xe5\x65\x0e\x1f\xc2\x8f\x10\xe2\xff\xe1\x92\x87\xa7\x44\x9b\xdd\x66\x7a\x3b\xe4\xe5\x35\x99\x9d\xde\x93\xf3\x63\x1c\xff\x57\x98\x0c\x32\x80\x1e\x8d\x6e\xc8\xf3\x06\x47\x6e\xad\x93\xf0\xdc\x92\xd9\xc1\x2f\x3a\x03\xf8\xcd\x0e\xa5\x84\x87\x27\xb1\x28\xd2\x69\x25\xe1\x69\x29\xd6\x65\xf6\x77\x00\x00\x00\xff\xff\x00\xe9\x87\x27\xbf\x08\x00\x00"
func resnet101_v1bYmlBytes() ([]byte, error) {
return bindataRead(
_resnet101_v1bYml,
"ResNet101_v1b.yml",
)
}
func resnet101_v1bYml() (*asset, error) {
bytes, err := resnet101_v1bYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "ResNet101_v1b.yml", size: 2239, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _resnet101_v1cYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x4d\x6f\xe3\x36\x13\xbe\xeb\x57\x0c\xe0\x43\xde\x17\x70\x28\xc9\xb2\x9d\x84\x40\xf7\xd0\x1c\xb6\x05\xda\x1c\x16\xfd\x02\x16\x0b\x63\x4c\x8d\x2c\xee\x4a\xa4\x40\x8e\xec\x78\x7f\x7d\x41\x52\xfe\x6a\x83\x5d\xf4\xe2\x88\x33\xcf\x7c\x3d\x33\x1c\xc6\x60\x4f\x12\x3e\x90\x7f\x21\x2e\x8b\x72\xb3\x2f\x15\xcc\x20\x48\xc1\x36\x70\xb4\xa3\x83\xde\xd6\xd4\x65\x8d\xc3\x9e\x0e\xd6\x7d\x91\x19\x40\xb2\xfa\xf5\xaf\x17\x62\x98\xc1\x59\x05\x8d\x75\xc0\x2d\x4d\x26\x00\x7b\x72\x5e\x5b\x23\xe1\xee\xdd\x0f\xa5\x28\x45\x71\x77\x03\x9f\xd4\xa0\xac\x61\x87\xda\x70\x76\x36\x28\x45\x01\xb3\x33\x40\x9b\xc6\xba\x1e\x39\x7d\x83\xa7\x1e\x0d\x6b\x75\xd6\x27\x6d\x16\xfc\xa0\x36\xe4\x24\xcc\xe0\x7c\xf0\x30\x7a\xaa\x81\x2d\x0c\xe4\x02\x32\xa5\x07\xb4\xc7\x6e\x8c\x3e\x33\x00\xec\xeb\xf5\x32\x94\x06\xb0\x1b\x46\x09\x0e\xf5\xe0\xec\x67\x52\x9c\x2b\x74\x7d\x77\xaf\xb0\x69\x48\x46\xd8\xbd\x1a\xc6\x88\x54\xdf\x45\xee\x22\x72\x18\xd4\x7a\xd9\x91\xfc\xae\xd1\x04\x9c\xcc\xbe\x9d\xca\x35\xb6\x26\xaf\x9c\x1e\x38\x52\xf7\x2e\x83\xa9\x35\x3f\xf7\xb8\x23\x78\xee\xd0\x7b\xdd\x68\x95\xf8\x8b\xc5\xcf\xe1\xd0\x6a\xd5\x82\xf6\x10\x99\xa7\x1a\xac\x89\xad\x8b\x36\xc1\xb8\x46\x46\x4f\x2c\x32\x80\xdf\x3d\xfd\x63\x44\x1a\x67\x7b\x78\xdf\x8d\xd6\x3c\xff\x31\xd1\xf9\xd5\x5a\x91\x39\x6a\xc8\x91\x51\xe4\x43\x0b\x2e\xa7\xc8\x3e\x0e\xa1\x19\x39\x1c\x68\xeb\x35\x53\xf8\x24\x56\x42\x40\x4a\x7f\xab\xcd\xee\x66\x7a\xee\xa1\x65\x1e\xbc\xcc\xf3\x5d\x88\x74\xaf\xf6\xa2\x7f\x35\xc4\x42\xdb\x3c\x62\x36\x5f\xad\xcd\xd5\x4d\x79\xa2\xe5\xbe\xcb\x3a\xad\xc8\x78\x92\x30\x1a\x47\x9e\x9d\x56\x4c\x35\xcc\x60\x92\x87\xd1\xbe\x04\xd2\x66\x18\x39\xe6\x9b\x0a\x49\xe7\x18\x9f\x8f\x03\x49\xd0\x91\xc6\x19\x34\xda\x79\x4e\xea\x00\xc5\x4e\xf3\x31\xb6\xe9\x86\xfe\xe0\x38\x61\x4e\x76\x57\xea\x53\xe4\x2b\x57\xd1\xc3\x80\xe1\x52\x30\x39\x9f\x86\x04\x80\x3a\xea\xc9\xf0\x26\xa5\xd0\x74\x16\xb9\x5a\x4c\xba\x68\xb7\xe9\xf0\x18\x26\x3d\xf4\x69\x92\x77\x78\xb4\x23\x4b\xb8\x7b\xfe\xe9\xcf\xbb\x49\xa6\x6c\x67\xdd\x26\x54\x26\xe1\xee\xc3\xfb\x1f\x4f\xf2\x5a\xf7\x64\xc2\xe5\xf1\x12\x3e\x56\x73\x58\x2c\x96\xf1\xe7\xd3\xa4\xef\x09\x8d\x84\x8f\xe5\xa2\x12\xeb\x87\xd5\x1c\xca\x72\x2d\x16\x8f\x73\x28\x8b\x4a\xac\xaa\x13\xca\x2b\xec\x48\xc2\xc7\xd5\xa3\xa8\x9e\x56\x73\x58\x3d\x88\x72\x11\xff\x54\x0f\xab\x4f\x99\x1d\x79\x18\x39\x94\x94\xca\xb8\xed\x15\xcc\x22\x17\x41\x75\xe2\x25\x19\x64\x6f\x50\x9a\x34\xd0\xe1\x96\x3a\x98\x01\xbe\xc5\xea\x84\x39\x93\x99\xdd\x10\x1b\xc2\x85\x50\x17\x51\xf6\x6d\xa2\x07\x67\xb7\xb8\xd5\x9d\x66\x4d\x7e\xc3\x0e\x8d\x0f\xeb\x43\x82\xb7\x0d\xf7\xf8\x1a\x1c\x46\x61\xb8\x0c\xd7\xf1\xaf\xed\xde\xf0\x34\x35\x2e\x2c\x38\x6d\x6a\x7a\x3d\xa5\x7f\x83\x82\x88\x0a\xdb\xee\xe2\x39\x39\x6b\x08\x79\x74\xe4\x37\xa3\xeb\x64\xbc\x22\x32\xcf\x7d\x25\xb0\xc7\xaf\xd6\xe0\xc1\x0b\x65\xfb\xdc\xb3\x75\x24\xe2\xc2\x10\xd6\xed\x72\x7f\x34\x9e\xd8\xe7\x71\x28\x0d\xf1\x24\x10\xfc\xca\xb7\x5e\x55\x4b\xea\x8b\x1f\x7b\x09\xcb\x7a\x51\x2d\xb7\xab\xc7\xaa\x42\x85\xcb\xe5\xd3\xe2\xb1\x58\xaf\xb0\x7c\x2c\xea\x6d\x55\x94\x6b\xcc\xe2\x7d\x09\xbc\xfa\x81\x94\x6e\x42\xd6\xe9\x0a\xed\x1c\x0e\x2d\xa0\xa9\xe1\x40\x7a\xd7\xb2\x07\x6f\x47\xa7\x22\x1b\x5b\xf4\xf4\xdf\x52\x8f\x3e\x7d\x1e\xef\x7e\x5a\x05\x6a\x9f\x3b\xf2\xe6\xbc\x8f\x32\x48\x21\x37\x03\x72\x2b\x53\x12\xf7\xfe\xd8\x6f\x6d\x27\x3e\xfb\xb8\xe0\xa7\x44\x6e\x10\x45\x51\x14\x22\x8e\x43\x48\x4c\xfb\x0d\x3a\xd5\xea\xfd\xb4\xa8\x1b\xec\x7c\xb8\xbe\xba\x01\x4f\x3c\x0f\x7d\x48\xcd\x38\x55\x10\xb6\x27\x42\xf8\x60\x0b\x68\x60\xb2\x8e\xc6\x69\xb4\x2f\x49\x5d\x93\x91\x04\xd1\x5d\x4d\xc6\x32\x85\xef\xc9\xaa\xd1\x1d\xc5\xe7\xd5\x9f\xa6\xe2\xdf\x5c\x1e\x34\xb7\xd3\x5c\x5c\x42\xa6\x50\xe7\xe6\x5d\x55\x7c\x91\x21\xb3\xd3\xdb\x91\xd3\x76\xa6\x57\x76\x38\x35\xec\xa2\xc9\x00\xbe\x68\x53\x4b\x78\x7e\x79\x99\xaa\x08\xe7\x90\x8d\xa1\xd1\x61\x07\x86\x38\xbe\xde\xff\x7b\x7e\x79\x99\xc3\x87\xf0\x23\x84\xf8\x7f\xb8\xe4\xe1\x29\xd1\x66\xb7\x99\xde\x0e\x79\x79\x4d\x66\xa7\xf7\xe4\xfc\x18\xc7\xff\x15\x26\x83\x0c\xa0\x47\xa3\x1b\xf2\xbc\xc1\x91\x5b\xeb\x24\x3c\xb7\x64\x76\xf0\x8b\xce\x00\x7e\xb3\x43\x29\xe1\xe1\x49\xac\x8b\x74\x5a\x49\x78\x5a\x8a\x87\x55\xf6\x77\x00\x00\x00\xff\xff\x08\xf2\xd5\xc9\xbf\x08\x00\x00"
func resnet101_v1cYmlBytes() ([]byte, error) {
return bindataRead(
_resnet101_v1cYml,
"ResNet101_v1c.yml",
)
}
func resnet101_v1cYml() (*asset, error) {
bytes, err := resnet101_v1cYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "ResNet101_v1c.yml", size: 2239, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _resnet101_v1dYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x4d\x8f\xdb\x36\x13\xbe\xeb\x57\x0c\xe0\xc3\xbe\x2f\xe0\xa5\x24\xcb\xde\x6c\x08\x34\x87\xfa\x90\x16\x68\x7d\x08\xfa\x05\x04\x81\x31\xa6\x46\x16\x13\x89\x14\xc8\x91\xbd\xce\xaf\x2f\x48\xca\x5f\xed\x22\x41\x2f\x5e\x71\xe6\x99\xaf\x67\x86\xc3\x35\xd8\x93\x84\x0f\xe4\x37\xc4\x65\x51\x6e\x0f\x65\x0d\x33\x08\x52\xb0\x0d\x9c\xec\xe8\xa0\xb7\x35\x75\x59\xe3\xb0\xa7\xa3\x75\x5f\x64\x06\x90\xac\x7e\xfd\x6b\x43\x0c\x33\xb8\xa8\xa0\xb1\x0e\xb8\xa5\xc9\x04\xe0\x40\xce\x6b\x6b\x24\x3c\xbc\xfb\xa1\x14\xa5\x28\x1e\xee\xe0\x93\x1a\x94\x35\xec\x50\x1b\xce\x2e\x06\xa5\x28\x60\x76\x01\x68\xd3\x58\xd7\x23\xa7\x6f\xf0\xd4\xa3\x61\xad\x2e\xfa\xa4\xcd\x82\x1f\xd4\x86\x9c\x84\x19\x5c\x0e\x1e\x46\x4f\x35\xb0\x85\x81\x5c\x40\xa6\xf4\x80\x0e\xd8\x8d\xd1\x67\x06\x80\x7d\xfd\xb4\x0c\xa5\x01\xec\x87\x51\x82\x43\x3d\x38\xfb\x99\x14\xe7\x0a\x5d\xdf\x3d\x2a\x6c\x1a\x92\x11\xf6\xa8\x86\x31\x22\xd5\x77\x91\xfb\x88\x1c\x06\xf5\xb4\xec\x48\x7e\xd7\x68\x02\x4e\x66\xdf\x4e\xe5\x16\x5b\x93\x57\x4e\x0f\x1c\xa9\x7b\x97\xc1\xd4\x9a\x9f\x7b\xdc\x13\xac\x3b\xf4\x5e\x37\x5a\x25\xfe\x62\xf1\x73\x38\xb6\x5a\xb5\xa0\x3d\x44\xe6\xa9\x06\x6b\x62\xeb\xa2\x4d\x30\xae\x91\xd1\x13\x8b\x0c\xe0\x77\x4f\xff\x18\x91\xc6\xd9\x1e\xde\x77\xa3\x35\xeb\x3f\x26\x3a\xbf\x5a\x2b\x32\x47\x0d\x39\x32\x8a\x7c\x68\xc1\xf5\x14\xd9\xc7\x21\x34\x23\x87\x23\xed\xbc\x66\x0a\x9f\xc4\x4a\x08\x48\xe9\xef\xb4\xd9\xdf\x4d\xcf\x23\xb4\xcc\x83\x97\x79\xbe\x0f\x91\x1e\xd5\x41\xf4\x2f\x86\x58\x68\x9b\x47\xcc\xf6\xab\xb5\xb9\xba\x2b\x4f\xb4\xdc\x77\x59\xa7\x15\x19\x4f\x12\x46\xe3\xc8\xb3\xd3\x8a\x29\xcc\xf5\x24\x0f\xa3\x7d\x0d\xa4\xcd\x30\x72\xcc\x37\x15\x92\xce\x31\x3e\x9f\x06\x92\xa0\x23\x8d\x33\x68\xb4\xf3\x9c\xd4\x01\x8a\x9d\xe6\x53\x6c\xd3\x1d\xfd\xc1\x71\xc2\x9c\xed\x6e\xd4\xe7\xc8\x37\xae\xa2\x87\x01\xc3\xa5\x60\x72\x3e\x0d\x09\x00\x75\xd4\x93\xe1\x6d\x4a\xa1\xe9\x2c\x72\xb5\x98\x74\xd1\x6e\xdb\xe1\x29\x4c\x7a\xe8\xd3\x24\xef\xf0\x64\x47\x96\xf0\xb0\xfe\xe9\xcf\x87\x49\xa6\x6c\x67\xdd\x36\x54\x26\xe1\xe1\xc3\xfb\x1f\xcf\xf2\x5a\xf7\x64\xc2\xe5\xf1\x12\x3e\x56\x73\x58\x2c\x96\xf1\xe7\xd3\xa4\xef\x09\x8d\x84\x8f\xe5\xa2\x12\x4f\x6f\x56\x73\x28\xcb\x27\xb1\x78\x9e\x43\x59\x54\x62\x55\x9d\x51\x5e\x61\x47\x12\x3e\xae\x9e\x45\xf5\x76\x35\x87\xd5\x1b\x51\x2e\xe2\x9f\xea\xcd\xea\x53\x66\x47\x1e\x46\x0e\x25\xa5\x32\xee\x7b\x05\xb3\xc8\x45\x50\x9d\x79\x49\x06\xd9\x2b\x94\x26\x0d\x74\xb8\xa3\x0e\x66\x80\xaf\xb1\x3a\x61\x2e\x64\x66\x77\xc4\x86\x70\x21\xd4\x55\x94\x7d\x9b\xe8\xc1\xd9\x1d\xee\x74\xa7\x59\x93\xdf\xb2\x43\xe3\xc3\xfa\x90\xe0\x6d\xc3\x3d\xbe\x04\x87\x51\x18\x2e\xc3\x6d\xfc\x5b\xbb\x57\x3c\x4d\x8d\x0b\x0b\x4e\x9b\x9a\x5e\xce\xe9\xdf\xa1\x20\xa2\xc2\xb6\xbb\x7a\x4e\xce\x1a\x42\x1e\x1d\xf9\xed\xe8\x3a\x19\xaf\x88\xcc\x73\x5f\x09\xec\xf1\xab\x35\x78\xf4\x42\xd9\x3e\xf7\x6c\x1d\x89\xb8\x30\x84\x75\xfb\xdc\x9f\x8c\x27\xf6\x79\x1c\x4a\x43\x3c\x09\x04\xbf\xf0\xbd\x57\xd5\x92\xfa\xe2\xc7\x5e\xc2\xb2\x5e\x54\xcb\xdd\xea\xb9\xaa\x50\xe1\x72\xf9\x76\xf1\x5c\x3c\xad\xb0\x7c\x2e\xea\x5d\x55\x94\x4f\x98\xc5\xfb\x12\x78\xf5\x03\x29\xdd\x84\xac\xd3\x15\xda\x3b\x1c\x5a\x40\x53\xc3\x91\xf4\xbe\x65\x0f\xde\x8e\x4e\x45\x36\x76\xe8\xe9\xbf\xa5\x1e\x7d\xfa\x3c\xde\xfd\xb4\x0a\xd4\x21\x77\xe4\xcd\x65\x1f\x65\x90\x42\x6e\x07\xe4\x56\xa6\x24\x1e\xfd\xa9\xdf\xd9\x4e\x7c\xf6\x71\xc1\x4f\x89\xdc\x21\x8a\xa2\x28\x44\x1c\x87\x90\x98\xf6\x5b\x74\xaa\xd5\x87\x69\x51\x37\xd8\xf9\x70\x7d\x75\x03\x9e\x78\x1e\xfa\x90\x9a\x71\xae\x20\x6c\x4f\x84\xf0\xc1\x16\xd0\xc0\x64\x1d\x8d\xd3\x68\x5f\x93\xba\x25\x23\x09\xa2\xbb\x9a\x8c\x65\x0a\xdf\x93\x55\xa3\x3b\x8a\xcf\xab\x3f\x4f\xc5\xbf\xb9\x3c\x6a\x6e\xa7\xb9\xb8\x86\x4c\xa1\x2e\xcd\xbb\xa9\xf8\x2a\x43\x66\xa7\x77\x23\xa7\xed\x4c\x2f\xec\x70\x6a\xd8\x55\x93\x01\x7c\xd1\xa6\x96\xb0\xde\x6c\xa6\x2a\xc2\x39\x64\x63\x68\x74\xd8\x81\x21\x8e\xaf\xf7\xff\xd6\x9b\xcd\x1c\x3e\x84\x1f\x21\xc4\xff\xc3\x25\x0f\x4f\x89\x36\xfb\xed\xf4\x76\xc8\xeb\x6b\x32\x3b\xbf\x27\x97\xc7\x38\xfe\xaf\x30\x19\x64\x00\x3d\x1a\xdd\x90\xe7\x2d\x8e\xdc\x5a\x27\x61\xdd\x92\xd9\xc3\x2f\x3a\x03\xf8\xcd\x0e\xa5\x84\xe7\x42\xac\xca\x74\x5a\x49\x78\xbb\x12\xe5\x22\xfb\x3b\x00\x00\xff\xff\x2b\xe7\x0b\x67\xbf\x08\x00\x00"
func resnet101_v1dYmlBytes() ([]byte, error) {
return bindataRead(
_resnet101_v1dYml,
"ResNet101_v1d.yml",
)
}
func resnet101_v1dYml() (*asset, error) {
bytes, err := resnet101_v1dYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "ResNet101_v1d.yml", size: 2239, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _resnet101_v2Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x4b\x8f\xdb\x36\x10\xbe\xeb\x57\x0c\xe0\xc3\xb6\x80\x97\xb2\x2c\xdb\xeb\x10\x68\x0e\xf5\x21\x2d\xd0\xfa\x10\xf4\x05\x04\x81\x31\xa6\x46\x16\x13\x89\x14\xc8\x91\xbd\xce\xaf\x2f\x48\xca\x2f\x34\x48\xd0\x8b\x57\x9c\xf9\xe6\xf5\xcd\x70\xb8\x06\x3b\x92\xf0\x9e\xfc\x96\xb8\x98\x15\xbb\xe3\x1c\x26\x10\x84\x60\x6b\x38\xdb\xc1\x41\x67\x2b\x6a\xb3\xda\x61\x47\x27\xeb\x3e\xcb\x0c\x20\x19\xfd\xfe\xcf\x96\x18\x26\x70\x55\x41\x6d\x1d\x70\x43\xa3\x09\xc0\x91\x9c\xd7\xd6\x48\x78\x7a\xfb\x53\x21\x0a\x31\x7b\x7a\x80\x8f\x6a\x50\xd6\xb0\x43\x6d\x38\xbb\x1a\x14\x62\x06\x93\x2b\x40\x9b\xda\xba\x0e\x39\x7d\x83\xa7\x0e\x0d\x6b\x75\xd5\x27\x6d\x16\xfc\xa0\x36\xe4\x24\x4c\xe0\x7a\xf0\x30\x78\xaa\x80\x2d\xf4\xe4\x02\x32\xa5\x07\x74\xc4\x76\x88\x3e\x33\x00\xec\xaa\xd5\x22\x94\x06\x70\xe8\x07\x09\x0e\x75\xef\xec\x27\x52\x9c\x2b\x74\x5d\xfb\xac\xb0\xae\x49\x46\xd8\xb3\xea\x87\x88\x54\xdf\x45\x1e\x22\xb2\xef\xd5\x6a\xd1\x92\xfc\xae\xd1\x08\x1c\xcd\xbe\x9d\xca\x3d\xb6\x22\xaf\x9c\xee\x39\x52\xf7\x36\x83\xb1\x35\xbf\x76\x78\x20\xd8\xb4\xe8\xbd\xae\xb5\x4a\xfc\xc5\xe2\xa7\x70\x6a\xb4\x6a\x40\x7b\x88\xcc\x53\x05\xd6\xc4\xd6\x45\x9b\x60\x5c\x21\xa3\x27\x16\x19\xc0\x9f\x9e\x1e\x27\xa4\x76\xb6\x83\x77\xed\x60\xcd\xe6\xaf\x91\xcd\x2f\xd6\x8a\xcc\x51\x4d\x8e\x8c\x22\x1f\x3a\x70\x3b\x45\xf2\xb1\x0f\xbd\xc8\xe1\x44\x7b\xaf\x99\xc2\x27\xb1\x12\x02\x52\xf6\x7b\x6d\x0e\x0f\xc3\xf3\x0c\x0d\x73\xef\x65\x9e\x1f\x42\xa4\x67\x75\x14\xdd\xab\x21\x16\xda\xe6\x11\xb3\xfb\x62\x6d\xae\x1e\xaa\x13\x0d\x77\x6d\xd6\x6a\x45\xc6\x93\x84\xc1\x38\xf2\xec\xb4\x62\xaa\x60\x02\xa3\x3c\x4c\xf6\x2d\x90\x36\xfd\xc0\x31\xdf\x54\x48\x3a\xc7\xf8\x7c\xee\x49\x82\x8e\x2c\x4e\xa0\xd6\xce\x73\x52\x07\x28\xb6\x9a\xcf\xb1\x4b\x0f\xec\x07\xc7\x09\x73\xb1\xbb\x53\x5f\x22\xdf\xb9\x8a\x1e\x7a\x0c\x77\x82\xc9\xf9\x34\x23\x00\xd4\x52\x47\x86\x77\x29\x85\xba\xb5\xc8\xe5\x7c\xd4\x45\xbb\x5d\x8b\xe7\x30\xe8\xa1\x4d\xa3\xbc\xc5\xb3\x1d\x58\xc2\xd3\xe6\x97\xbf\x9f\x46\x99\xb2\xad\x75\xbb\x50\x99\x84\xa7\xf7\xef\x7e\xbe\xc8\x2b\xdd\x91\x09\x77\xc7\x4b\xf8\x50\x4e\x61\x3e\x5f\xc4\x9f\x8f\xa3\xbe\x23\x34\x12\x3e\x14\xf3\x52\xac\x5e\x96\x53\x28\x8a\x95\x98\xaf\xa7\x50\xcc\x4a\xb1\x2c\x2f\x28\xaf\xb0\x25\x09\x1f\x96\x6b\x51\xbe\x59\x4e\x61\xf9\x22\x8a\x79\xfc\x53\xbe\x2c\x3f\x66\x76\xe0\x7e\xe0\x50\x52\x2a\xe3\xb1\x57\x30\x89\x5c\x04\xd5\x85\x97\x64\x90\x7d\x85\xd2\xa4\x81\x16\xf7\xd4\xc2\x04\xf0\x6b\xac\x8e\x98\x2b\x99\xd9\x03\xb1\x21\x5c\x08\x75\x13\x65\xdf\x26\xba\x77\x76\x8f\x7b\xdd\x6a\xd6\xe4\x77\xec\xd0\xf8\xb0\x3d\x24\x78\x5b\x73\x87\xaf\xc1\x61\x14\x86\xcb\x70\x1f\xff\xde\xee\x2b\x9e\xc6\xc6\x85\xfd\xa6\x4d\x45\xaf\x97\xf4\x1f\x50\x10\x51\x61\xd9\xdd\x3c\x27\x67\x35\x21\x0f\x8e\xfc\x6e\x70\xad\x8c\x57\x44\xe6\xb9\x2f\x05\x76\xf8\xc5\x1a\x3c\x79\xa1\x6c\x97\x7b\xb6\x8e\x44\xdc\x17\xc2\xba\x43\xee\xcf\xc6\x13\xfb\x3c\x0e\xa5\x21\x1e\x05\x82\x5f\xf9\xd1\xab\x6a\x48\x7d\xf6\x43\x27\x61\x51\xcd\xcb\xc5\x7e\xb9\x2e\x4b\x54\xb8\x58\xbc\x99\xaf\x67\xab\x25\x16\xeb\x59\xb5\x2f\x67\xc5\x0a\xb3\x78\x5f\x02\xaf\xbe\x27\xa5\xeb\x90\x75\xba\x42\x07\x87\x7d\x03\x68\x2a\x38\x91\x3e\x34\xec\xc1\xdb\xc1\xa9\xc8\xc6\x1e\x3d\xfd\xbf\xd4\xa3\x4f\x9f\xc7\xbb\x9f\x56\x81\x3a\xe6\x8e\xbc\xb9\xac\xa3\x0c\x52\xc4\x5d\x8f\xdc\xc8\x94\xc3\xb3\x3f\x77\x7b\xdb\x8a\x4f\x3e\xae\xf7\x31\x8f\x07\xc4\x6c\x36\x9b\x89\x38\x0d\x21\x2f\xed\x77\xe8\x54\xa3\x8f\xe3\x9a\xae\xb1\xf5\xe1\xf6\xea\x1a\x3c\xf1\x34\xb4\x21\xf5\xe2\x52\x40\xd8\x9d\x08\xe1\x83\x2d\xa0\x81\xd1\x3a\x1a\xa7\xc9\xbe\x25\x75\xcf\x45\x12\x44\x77\x15\x19\xcb\x14\xbe\x47\xab\x5a\xb7\x14\x1f\x57\x7f\x19\x8a\xff\x52\x79\xd2\xdc\x8c\x63\x71\x0b\x99\x42\x5d\x7b\x77\x57\xf1\x4d\x86\xcc\x4e\xef\x07\x4e\xcb\x99\x5e\xd9\xe1\xd8\xaf\x9b\x26\x03\xf8\xac\x4d\x25\x61\xb3\xdd\x8e\x55\x84\x73\xc8\xc6\xd0\xe0\xb0\x05\x43\x1c\xdf\xee\x1f\x36\xdb\xed\x14\xde\x87\x1f\x21\xc4\x8f\xe1\x8e\x87\x87\x44\x9b\xc3\x6e\x7c\x39\xe4\xed\x2d\x99\x5c\x5e\x93\xeb\x53\x1c\xff\x53\x18\x0d\x32\x80\x0e\x8d\xae\xc9\xf3\x0e\x07\x6e\xac\x93\xb0\x69\xc8\x1c\xe0\x37\x9d\x01\xfc\x61\xfb\x42\xc2\xcb\x5a\x2c\xcb\x74\x5a\x4a\x78\xb3\x10\xc5\x4b\xf6\x6f\x00\x00\x00\xff\xff\x58\xdd\xa0\x9a\xbc\x08\x00\x00"
func resnet101_v2YmlBytes() ([]byte, error) {
return bindataRead(
_resnet101_v2Yml,
"ResNet101_v2.yml",
)
}
func resnet101_v2Yml() (*asset, error) {
bytes, err := resnet101_v2YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "ResNet101_v2.yml", size: 2236, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _resnet152_v1Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x4b\x8f\xdb\x36\x10\xbe\xeb\x57\x0c\xe0\xc3\xb6\x80\x97\xb2\x2c\xdb\xbb\x4b\xa0\x39\xd4\x87\xb4\x40\xeb\x43\xd0\x17\x10\x04\xc6\x98\x1a\x59\x4c\x24\x52\x20\x47\xf6\x3a\xbf\xbe\x20\x29\xbf\xd0\x45\x82\x5e\xbc\xe2\xcc\x37\xaf\x6f\x86\xc3\x35\xd8\x91\x84\x0f\xe4\x37\xc4\xc5\x72\xbe\x3d\x14\x30\x81\x20\x04\x5b\xc3\xc9\x0e\x0e\x3a\x5b\x51\x9b\xd5\x0e\x3b\x3a\x5a\xf7\x45\x66\x00\xc9\xe8\xf7\x7f\x36\xc4\x30\x81\x8b\x0a\x6a\xeb\x80\x1b\x1a\x4d\x00\x0e\xe4\xbc\xb6\x46\xc2\xc3\xbb\x9f\x0a\x51\x88\xd9\xc3\x1d\x7c\x54\x83\xb2\x86\x1d\x6a\xc3\xd9\xc5\xa0\x10\x33\x98\x5c\x00\xda\xd4\xd6\x75\xc8\xe9\x1b\x3c\x75\x68\x58\xab\x8b\x3e\x69\xb3\xe0\x07\xb5\x21\x27\x61\x02\x97\x83\x87\xc1\x53\x05\x6c\xa1\x27\x17\x90\x29\x3d\xa0\x03\xb6\x43\xf4\x99\x01\x60\x57\xad\x16\xa1\x34\x80\x7d\x3f\x48\x70\xa8\x7b\x67\x3f\x93\xe2\x5c\xa1\xeb\xda\x47\x85\x75\x4d\x32\xc2\x1e\x55\x3f\x44\xa4\xfa\x2e\x72\x1f\x91\x7d\xaf\x56\x8b\x96\xe4\x77\x8d\x46\xe0\x68\xf6\xed\x54\x6e\xb1\x15\x79\xe5\x74\xcf\x91\xba\x77\x19\x8c\xad\xf9\xb5\xc3\x3d\xc1\xba\x45\xef\x75\xad\x55\xe2\x2f\x16\x3f\x85\x63\xa3\x55\x03\xda\x43\x64\x9e\x2a\xb0\x26\xb6\x2e\xda\x04\xe3\x0a\x19\x3d\xb1\xc8\x00\xfe\xf4\x74\x3f\x21\xb5\xb3\x1d\xbc\x6f\x07\x6b\xd6\x7f\x8d\x6c\x7e\xb5\x56\x64\x8e\x6a\x72\x64\x14\xf9\xd0\x81\xeb\x29\x92\x8f\x7d\xe8\x45\x0e\x47\xda\x79\xcd\x14\x3e\x89\x95\x10\x90\xb2\xdf\x69\xb3\xbf\x1b\x9e\x47\x68\x98\x7b\x2f\xf3\x7c\x1f\x22\x3d\xaa\x83\xe8\x5e\x0d\xb1\xd0\x36\x8f\x98\xed\x57\x6b\x73\x75\x57\x9d\x68\xb8\x6b\xb3\x56\x2b\x32\x9e\x24\x0c\xc6\x91\x67\xa7\x15\x53\x05\x13\x18\xe5\x61\xb2\xaf\x81\xb4\xe9\x07\x8e\xf9\xa6\x42\xd2\x39\xc6\xe7\x53\x4f\x12\x74\x64\x71\x02\xb5\x76\x9e\x93\x3a\x40\xb1\xd5\x7c\x8a\x5d\xba\x63\x3f\x38\x4e\x98\xb3\xdd\x8d\xfa\x1c\xf9\xc6\x55\xf4\xd0\x63\xb8\x13\x4c\xce\xa7\x19\x01\xa0\x96\x3a\x32\xbc\x4d\x29\xd4\xad\x45\x2e\xe7\xa3\x2e\xda\x6d\x5b\x3c\x85\x41\x0f\x6d\x1a\xe5\x2d\x9e\xec\xc0\x12\x1e\xd6\xbf\xfc\xfd\x30\xca\x94\x6d\xad\xdb\x86\xca\x24\x3c\x7c\x78\xff\xf3\x59\x5e\xe9\x8e\x4c\xb8\x3b\x5e\xc2\xc7\x72\x0a\xf3\xf9\x22\xfe\x7c\x1a\xf5\x1d\xa1\x91\xf0\xb1\x98\x97\x62\xf5\xb4\x9c\x42\x51\xac\xc4\xfc\x79\x0a\xc5\xac\x14\xcb\xf2\x8c\xf2\x0a\x5b\x92\xf0\x71\xf9\x2c\xca\x97\xe5\x14\x96\x4f\xa2\x98\xc7\x3f\xe5\xd3\xf2\x53\x66\x07\xee\x07\x0e\x25\xa5\x32\xee\x7b\x05\x93\xc8\x45\x50\x9d\x79\x49\x06\xd9\x1b\x94\x26\x0d\xb4\xb8\xa3\x16\x26\x80\x6f\xb1\x3a\x62\x2e\x64\x66\x77\xc4\x86\x70\x21\xd4\x55\x94\x7d\x9b\xe8\xde\xd9\x1d\xee\x74\xab\x59\x93\xdf\xb2\x43\xe3\xc3\xf6\x90\xe0\x6d\xcd\x1d\xbe\x06\x87\x51\x18\x2e\xc3\x6d\xfc\x5b\xbb\x37\x3c\x8d\x8d\x0b\xfb\x4d\x9b\x8a\x5e\xcf\xe9\xdf\xa1\x20\xa2\xc2\xb2\xbb\x7a\x4e\xce\x6a\x42\x1e\x1c\xf9\xed\xe0\x5a\x19\xaf\x88\xcc\x73\x5f\x0a\xec\xf0\xab\x35\x78\xf4\x42\xd9\x2e\xf7\x6c\x1d\x89\xb8\x2f\x84\x75\xfb\xdc\x9f\x8c\x27\xf6\x79\x1c\x4a\x43\x3c\x0a\x04\xbf\xf2\xbd\x57\xd5\x90\xfa\xe2\x87\x4e\xc2\xa2\x9a\x97\x8b\xdd\xf2\xb9\x2c\x51\xe1\x62\xf1\x32\x7f\x9e\xad\x96\x58\x3c\xcf\xaa\x5d\x39\x2b\x56\x98\xc5\xfb\x12\x78\xf5\x3d\x29\x5d\x87\xac\xd3\x15\xda\x3b\xec\x1b\x40\x53\xc1\x91\xf4\xbe\x61\x0f\xde\x0e\x4e\x45\x36\x76\xe8\xe9\xff\xa5\x1e\x7d\xfa\x3c\xde\xfd\xb4\x0a\xd4\x21\x77\xe4\xcd\x79\x1d\x65\x90\x22\x6e\x7b\xe4\x46\xa6\x1c\x1e\xfd\xa9\xdb\xd9\x56\x7c\xf6\x71\xbd\x8f\x79\xdc\x21\x66\xb3\xd9\x4c\xc4\x69\x08\x79\x69\xbf\x45\xa7\x1a\x7d\x18\xd7\x74\x8d\xad\x0f\xb7\x57\xd7\xe0\x89\xa7\xa1\x0d\xa9\x17\xe7\x02\xc2\xee\x44\x08\x1f\x6c\x01\x0d\x8c\xd6\xd1\x38\x4d\xf6\x35\xa9\x5b\x2e\x92\x20\xba\xab\xc8\x58\xa6\xf0\x3d\x5a\xd5\xba\xa5\xf8\xb8\xfa\xf3\x50\xfc\x97\xca\xa3\xe6\x66\x1c\x8b\x6b\xc8\x14\xea\xd2\xbb\x9b\x8a\xaf\x32\x64\x76\x7a\x37\x70\x5a\xce\xf4\xca\x0e\xc7\x7e\x5d\x35\x19\xc0\x17\x6d\x2a\x09\xeb\xcd\x66\xac\x22\x9c\x43\x36\x86\x06\x87\x2d\x18\xe2\xf8\x76\xff\xb0\xde\x6c\xa6\xf0\x21\xfc\x08\x21\x7e\x0c\x77\x3c\x3c\x24\xda\xec\xb7\xe3\xcb\x21\xaf\x6f\xc9\xe4\xfc\x9a\x5c\x9e\xe2\xf8\x9f\xc2\x68\x90\x01\x74\x68\x74\x4d\x9e\xb7\x38\x70\x63\x9d\x84\x75\x43\x66\x0f\xbf\xe9\x0c\xe0\x0f\xdb\x17\x12\x9e\x5e\xc4\x7c\x9e\x4e\x4b\x09\x2f\x0b\xb1\x5a\x64\xff\x06\x00\x00\xff\xff\xc3\x3b\x92\x74\xbc\x08\x00\x00"
func resnet152_v1YmlBytes() ([]byte, error) {
return bindataRead(
_resnet152_v1Yml,
"ResNet152_v1.yml",
)
}
func resnet152_v1Yml() (*asset, error) {
bytes, err := resnet152_v1YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "ResNet152_v1.yml", size: 2236, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _resnet152_v1bYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x4d\x8f\xdb\x36\x13\xbe\xeb\x57\x0c\xe0\xc3\xbe\x2f\xe0\xa5\x2c\xcb\xf6\xee\x12\x68\x0e\xf5\x21\x2d\xd0\xfa\x10\xf4\x0b\x08\x02\x63\x4c\x8d\x2c\x26\x12\x29\x90\x23\x7b\x9d\x5f\x5f\x90\x94\xbf\xda\x45\x82\x5e\xbc\xe2\xcc\x33\x5f\xcf\x0c\x87\x6b\xb0\x23\x09\x1f\xc8\x6f\x88\x8b\xe5\x7c\x7b\x28\x76\x30\x81\x20\x05\x5b\xc3\xc9\x0e\x0e\x3a\x5b\x51\x9b\xd5\x0e\x3b\x3a\x5a\xf7\x45\x66\x00\xc9\xea\xd7\xbf\x36\xc4\x30\x81\x8b\x0a\x6a\xeb\x80\x1b\x1a\x4d\x00\x0e\xe4\xbc\xb6\x46\xc2\xc3\xbb\x1f\x0a\x51\x88\xd9\xc3\x1d\x7c\x54\x83\xb2\x86\x1d\x6a\xc3\xd9\xc5\xa0\x10\x33\x98\x5c\x00\xda\xd4\xd6\x75\xc8\xe9\x1b\x3c\x75\x68\x58\xab\x8b\x3e\x69\xb3\xe0\x07\xb5\x21\x27\x61\x02\x97\x83\x87\xc1\x53\x05\x6c\xa1\x27\x17\x90\x29\x3d\xa0\x03\xb6\x43\xf4\x99\x01\x60\x57\xad\x16\xa1\x34\x80\x7d\x3f\x48\x70\xa8\x7b\x67\x3f\x93\xe2\x5c\xa1\xeb\xda\x47\x85\x75\x4d\x32\xc2\x1e\x55\x3f\x44\xa4\xfa\x2e\x72\x1f\x91\x7d\xaf\x56\x8b\x96\xe4\x77\x8d\x46\xe0\x68\xf6\xed\x54\x6e\xb1\x15\x79\xe5\x74\xcf\x91\xba\x77\x19\x8c\xad\xf9\xb9\xc3\x3d\xc1\xba\x45\xef\x75\xad\x55\xe2\x2f\x16\x3f\x85\x63\xa3\x55\x03\xda\x43\x64\x9e\x2a\xb0\x26\xb6\x2e\xda\x04\xe3\x0a\x19\x3d\xb1\xc8\x00\x7e\xf7\xf4\x8f\x11\xa9\x9d\xed\xe0\x7d\x3b\x58\xb3\xfe\x63\xa4\xf3\xab\xb5\x22\x73\x54\x93\x23\xa3\xc8\x87\x16\x5c\x4f\x91\x7d\xec\x43\x33\x72\x38\xd2\xce\x6b\xa6\xf0\x49\xac\x84\x80\x94\xfe\x4e\x9b\xfd\xdd\xf4\x3c\x42\xc3\xdc\x7b\x99\xe7\xfb\x10\xe9\x51\x1d\x44\xf7\x6a\x88\x85\xb6\x79\xc4\x6c\xbf\x5a\x9b\xab\xbb\xf2\x44\xc3\x5d\x9b\xb5\x5a\x91\xf1\x24\x61\x30\x8e\x3c\x3b\xad\x98\x2a\x98\xc0\x28\x0f\xa3\x7d\x0d\xa4\x4d\x3f\x70\xcc\x37\x15\x92\xce\x31\x3e\x9f\x7a\x92\xa0\x23\x8d\x13\xa8\xb5\xf3\x9c\xd4\x01\x8a\xad\xe6\x53\x6c\xd3\x1d\xfd\xc1\x71\xc2\x9c\xed\x6e\xd4\xe7\xc8\x37\xae\xa2\x87\x1e\xc3\xa5\x60\x72\x3e\x0d\x09\x00\xb5\xd4\x91\xe1\x6d\x4a\xa1\x6e\x2d\x72\x39\x1f\x75\xd1\x6e\xdb\xe2\x29\x4c\x7a\xe8\xd3\x28\x6f\xf1\x64\x07\x96\xf0\xb0\xfe\xe9\xcf\x87\x51\xa6\x6c\x6b\xdd\x36\x54\x26\xe1\xe1\xc3\xfb\x1f\xcf\xf2\x4a\x77\x64\xc2\xe5\xf1\x12\x3e\x96\x53\x98\xcf\x17\xf1\xe7\xd3\xa8\xef\x08\x8d\x84\x8f\xc5\xbc\x14\xab\xa7\xe5\x14\x8a\x62\x25\xe6\xcf\x53\x28\x66\xa5\x58\x96\x67\x94\x57\xd8\x92\x84\x8f\xcb\x67\x51\xbe\x2c\xa7\xb0\x7c\x12\xc5\x3c\xfe\x29\x9f\x96\x9f\x32\x3b\x70\x3f\x70\x28\x29\x95\x71\xdf\x2b\x98\x44\x2e\x82\xea\xcc\x4b\x32\xc8\xde\xa0\x34\x69\xa0\xc5\x1d\xb5\x30\x01\x7c\x8b\xd5\x11\x73\x21\x33\xbb\x23\x36\x84\x0b\xa1\xae\xa2\xec\xdb\x44\xf7\xce\xee\x70\xa7\x5b\xcd\x9a\xfc\x96\x1d\x1a\x1f\xd6\x87\x04\x6f\x6b\xee\xf0\x35\x38\x8c\xc2\x70\x19\x6e\xe3\xdf\xda\xbd\xe1\x69\x6c\x5c\x58\x70\xda\x54\xf4\x7a\x4e\xff\x0e\x05\x11\x15\xb6\xdd\xd5\x73\x72\x56\x13\xf2\xe0\xc8\x6f\x07\xd7\xca\x78\x45\x64\x9e\xfb\x52\x60\x87\x5f\xad\xc1\xa3\x17\xca\x76\xb9\x67\xeb\x48\xc4\x85\x21\xac\xdb\xe7\xfe\x64\x3c\xb1\xcf\xe3\x50\x1a\xe2\x51\x20\xf8\x95\xef\xbd\xaa\x86\xd4\x17\x3f\x74\x12\x16\xd5\xbc\x5c\xec\x96\xcf\x65\x89\x0a\x17\x8b\x97\xf9\xf3\x6c\xb5\xc4\xe2\x79\x56\xed\xca\x59\xb1\xc2\x2c\xde\x97\xc0\xab\xef\x49\xe9\x3a\x64\x9d\xae\xd0\xde\x61\xdf\x00\x9a\x0a\x8e\xa4\xf7\x0d\x7b\xf0\x76\x70\x2a\xb2\xb1\x43\x4f\xff\x2d\xf5\xe8\xd3\xe7\xf1\xee\xa7\x55\xa0\x0e\xb9\x23\x6f\x2e\xfb\x28\x83\x14\x72\xdb\x23\x37\x32\x25\xf1\xe8\x4f\xdd\xce\xb6\xe2\xb3\x8f\x0b\x7e\x4c\xe4\x0e\x31\x9b\xcd\x66\x22\x8e\x43\x48\x4c\xfb\x2d\x3a\xd5\xe8\xc3\xb8\xa8\x6b\x6c\x7d\xb8\xbe\xba\x06\x4f\x3c\x0d\x7d\x48\xcd\x38\x57\x10\xb6\x27\x42\xf8\x60\x0b\x68\x60\xb4\x8e\xc6\x69\xb4\xaf\x49\xdd\x92\x91\x04\xd1\x5d\x45\xc6\x32\x85\xef\xd1\xaa\xd6\x2d\xc5\xe7\xd5\x9f\xa7\xe2\xdf\x5c\x1e\x35\x37\xe3\x5c\x5c\x43\xa6\x50\x97\xe6\xdd\x54\x7c\x95\x21\xb3\xd3\xbb\x81\xd3\x76\xa6\x57\x76\x38\x36\xec\xaa\xc9\x00\xbe\x68\x53\x49\x58\x6f\x36\x63\x15\xe1\x1c\xb2\x31\x34\x38\x6c\xc1\x10\xc7\xd7\xfb\x7f\xeb\xcd\x66\x0a\x1f\xc2\x8f\x10\xe2\xff\xe1\x92\x87\xa7\x44\x9b\xfd\x76\x7c\x3b\xe4\xf5\x35\x99\x9c\xdf\x93\xcb\x63\x1c\xff\x57\x18\x0d\x32\x80\x0e\x8d\xae\xc9\xf3\x16\x07\x6e\xac\x93\xb0\x6e\xc8\xec\xe1\x17\x9d\x01\xfc\x66\xfb\x42\xc2\xd3\x8b\x58\xbd\xa4\xd3\x52\xc2\xcb\x42\x3c\x2d\xb2\xbf\x03\x00\x00\xff\xff\xa6\x1b\x55\xff\xbf\x08\x00\x00"
func resnet152_v1bYmlBytes() ([]byte, error) {
return bindataRead(
_resnet152_v1bYml,
"ResNet152_v1b.yml",
)
}
func resnet152_v1bYml() (*asset, error) {
bytes, err := resnet152_v1bYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "ResNet152_v1b.yml", size: 2239, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _resnet152_v1cYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x4d\x8f\xdb\x36\x13\xbe\xeb\x57\x0c\xe0\xc3\xbe\x2f\xe0\xa5\x24\xcb\x76\x76\x09\x34\x87\xee\x21\x2d\xd0\xfa\x10\xf4\x0b\x08\x02\x63\x4c\x8d\x2c\x26\x12\x29\x90\x23\x7b\x9d\x5f\x5f\x90\x94\xbf\xda\x20\x41\x2f\x5e\x71\xe6\x99\xaf\x67\x86\xc3\x35\xd8\x93\x84\xf7\xe4\x37\xc4\xe5\x6a\xb1\x3d\x94\x0a\x66\x10\xa4\x60\x1b\x38\xd9\xd1\x41\x6f\x6b\xea\xb2\xc6\x61\x4f\x47\xeb\x3e\xcb\x0c\x20\x59\xfd\xfa\xd7\x86\x18\x66\x70\x51\x41\x63\x1d\x70\x4b\x93\x09\xc0\x81\x9c\xd7\xd6\x48\x78\x78\xfb\x43\x29\x4a\x51\x3c\xdc\xc1\x27\x35\x28\x6b\xd8\xa1\x36\x9c\x5d\x0c\x4a\x51\xc0\xec\x02\xd0\xa6\xb1\xae\x47\x4e\xdf\xe0\xa9\x47\xc3\x5a\x5d\xf4\x49\x9b\x05\x3f\xa8\x0d\x39\x09\x33\xb8\x1c\x3c\x8c\x9e\x6a\x60\x0b\x03\xb9\x80\x4c\xe9\x01\x1d\xb0\x1b\xa3\xcf\x0c\x00\xfb\x7a\xbd\x0c\xa5\x01\xec\x87\x51\x82\x43\x3d\x38\xfb\x89\x14\xe7\x0a\x5d\xdf\x3d\x2a\x6c\x1a\x92\x11\xf6\xa8\x86\x31\x22\xd5\x77\x91\xfb\x88\x1c\x06\xb5\x5e\x76\x24\xbf\x6b\x34\x01\x27\xb3\x6f\xa7\x72\x8b\xad\xc9\x2b\xa7\x07\x8e\xd4\xbd\xcd\x60\x6a\xcd\xcf\x3d\xee\x09\x5e\x3a\xf4\x5e\x37\x5a\x25\xfe\x62\xf1\x73\x38\xb6\x5a\xb5\xa0\x3d\x44\xe6\xa9\x06\x6b\x62\xeb\xa2\x4d\x30\xae\x91\xd1\x13\x8b\x0c\xe0\x77\x4f\xff\x18\x91\xc6\xd9\x1e\xde\x75\xa3\x35\x2f\x7f\x4c\x74\x7e\xb1\x56\x64\x8e\x1a\x72\x64\x14\xf9\xd0\x82\xeb\x29\xb2\x8f\x43\x68\x46\x0e\x47\xda\x79\xcd\x14\x3e\x89\x95\x10\x90\xd2\xdf\x69\xb3\xbf\x9b\x9e\x47\x68\x99\x07\x2f\xf3\x7c\x1f\x22\x3d\xaa\x83\xe8\x5f\x0d\xb1\xd0\x36\x8f\x98\xed\x17\x6b\x73\x75\x57\x9e\x68\xb9\xef\xb2\x4e\x2b\x32\x9e\x24\x8c\xc6\x91\x67\xa7\x15\x53\x0d\x33\x98\xe4\x61\xb4\xaf\x81\xb4\x19\x46\x8e\xf9\xa6\x42\xd2\x39\xc6\xe7\xd3\x40\x12\x74\xa4\x71\x06\x8d\x76\x9e\x93\x3a\x40\xb1\xd3\x7c\x8a\x6d\xba\xa3\x3f\x38\x4e\x98\xb3\xdd\x8d\xfa\x1c\xf9\xc6\x55\xf4\x30\x60\xb8\x14\x4c\xce\xa7\x21\x01\xa0\x8e\x7a\x32\xbc\x4d\x29\x34\x9d\x45\xae\x16\x93\x2e\xda\x6d\x3b\x3c\x85\x49\x0f\x7d\x9a\xe4\x1d\x9e\xec\xc8\x12\x1e\x5e\x7e\xfa\xf3\x61\x92\x29\xdb\x59\xb7\x0d\x95\x49\x78\x78\xff\xee\xc7\xb3\xbc\xd6\x3d\x99\x70\x79\xbc\x84\x0f\xd5\x1c\x16\x8b\x65\xfc\xf9\x38\xe9\x7b\x42\x23\xe1\x43\xb9\xa8\xc4\xfa\xcd\x6a\x0e\x65\xb9\x16\x8b\xa7\x39\x94\x45\x25\x56\xd5\x19\xe5\x15\x76\x24\xe1\xc3\xea\x49\x54\xcf\xab\x39\xac\xde\x88\x72\x11\xff\x54\x6f\x56\x1f\x33\x3b\xf2\x30\x72\x28\x29\x95\x71\xdf\x2b\x98\x45\x2e\x82\xea\xcc\x4b\x32\xc8\xbe\x42\x69\xd2\x40\x87\x3b\xea\x60\x06\xf8\x35\x56\x27\xcc\x85\xcc\xec\x8e\xd8\x10\x2e\x84\xba\x8a\xb2\x6f\x13\x3d\x38\xbb\xc3\x9d\xee\x34\x6b\xf2\x5b\x76\x68\x7c\x58\x1f\x12\xbc\x6d\xb8\xc7\xd7\xe0\x30\x0a\xc3\x65\xb8\x8d\x7f\x6b\xf7\x15\x4f\x53\xe3\xc2\x82\xd3\xa6\xa6\xd7\x73\xfa\x77\x28\x88\xa8\xb0\xed\xae\x9e\x93\xb3\x86\x90\x47\x47\x7e\x3b\xba\x4e\xc6\x2b\x22\xf3\xdc\x57\x02\x7b\xfc\x62\x0d\x1e\xbd\x50\xb6\xcf\x3d\x5b\x47\x22\x2e\x0c\x61\xdd\x3e\xf7\x27\xe3\x89\x7d\x1e\x87\xd2\x10\x4f\x02\xc1\xaf\x7c\xef\x55\xb5\xa4\x3e\xfb\xb1\x97\xb0\xac\x17\xd5\x72\xb7\x7a\xaa\x2a\x54\xb8\x5c\x3e\x2f\x9e\x8a\xf5\x0a\xcb\xa7\xa2\xde\x55\x45\xb9\xc6\x2c\xde\x97\xc0\xab\x1f\x48\xe9\x26\x64\x9d\xae\xd0\xde\xe1\xd0\x02\x9a\x1a\x8e\xa4\xf7\x2d\x7b\xf0\x76\x74\x2a\xb2\xb1\x43\x4f\xff\x2d\xf5\xe8\xd3\xe7\xf1\xee\xa7\x55\xa0\x0e\xb9\x23\x6f\x2e\xfb\x28\x83\x14\x72\x3b\x20\xb7\x32\x25\xf1\xe8\x4f\xfd\xce\x76\xe2\x93\x8f\x0b\x7e\x4a\xe4\x0e\x51\x14\x45\x21\xe2\x38\x84\xc4\xb4\xdf\xa2\x53\xad\x3e\x4c\x8b\xba\xc1\xce\x87\xeb\xab\x1b\xf0\xc4\xf3\xd0\x87\xd4\x8c\x73\x05\x61\x7b\x22\x84\x0f\xb6\x80\x06\x26\xeb\x68\x9c\x46\xfb\x9a\xd4\x2d\x19\x49\x10\xdd\xd5\x64\x2c\x53\xf8\x9e\xac\x1a\xdd\x51\x7c\x5e\xfd\x79\x2a\xfe\xcd\xe5\x51\x73\x3b\xcd\xc5\x35\x64\x0a\x75\x69\xde\x4d\xc5\x57\x19\x32\x3b\xbd\x1b\x39\x6d\x67\x7a\x65\x87\x53\xc3\xae\x9a\x0c\xe0\xb3\x36\xb5\x84\x97\xcd\x66\xaa\x22\x9c\x43\x36\x86\x46\x87\x1d\x18\xe2\xf8\x7a\xff\xef\x65\xb3\x99\xc3\xfb\xf0\x23\x84\xf8\x7f\xb8\xe4\xe1\x29\xd1\x66\xbf\x9d\xde\x0e\x79\x7d\x4d\x66\xe7\xf7\xe4\xf2\x18\xc7\xff\x15\x26\x83\x0c\xa0\x47\xa3\x1b\xf2\xbc\xc5\x91\x5b\xeb\x24\xbc\xb4\x64\xf6\xf0\x8b\xce\x00\x7e\xb3\x43\x29\xe1\xa9\x10\x45\x99\x4e\x2b\x09\xcf\x4b\xf1\xbc\xce\xfe\x0e\x00\x00\xff\xff\x61\x02\xf2\x49\xbf\x08\x00\x00"
func resnet152_v1cYmlBytes() ([]byte, error) {
return bindataRead(
_resnet152_v1cYml,
"ResNet152_v1c.yml",
)
}
func resnet152_v1cYml() (*asset, error) {
bytes, err := resnet152_v1cYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "ResNet152_v1c.yml", size: 2239, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _resnet152_v1dYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x4d\x8f\xdb\x36\x13\xbe\xeb\x57\x0c\xe0\xc3\xbe\x2f\xe0\xa5\x2c\xcb\x76\x1c\x02\xcd\xa1\x3e\xa4\x05\x5a\x1f\x82\x7e\x01\x41\x60\x8c\xa9\x91\xc5\x44\x22\x05\x72\x64\xaf\xf3\xeb\x0b\x92\xf2\x57\xbb\x48\xd0\x8b\x57\x9c\x79\xe6\xeb\x99\xe1\x70\x0d\x76\x24\xe1\x03\xf9\x2d\x71\xb1\x9c\xef\x8e\x45\x05\x13\x08\x52\xb0\x35\x9c\xed\xe0\xa0\xb3\x15\xb5\x59\xed\xb0\xa3\x93\x75\x5f\x64\x06\x90\xac\x7e\xfd\x6b\x4b\x0c\x13\xb8\xaa\xa0\xb6\x0e\xb8\xa1\xd1\x04\xe0\x48\xce\x6b\x6b\x24\x3c\xbd\xfb\xa1\x10\x85\x98\x3d\x3d\xc0\x47\x35\x28\x6b\xd8\xa1\x36\x9c\x5d\x0d\x0a\x31\x83\xc9\x15\xa0\x4d\x6d\x5d\x87\x9c\xbe\xc1\x53\x87\x86\xb5\xba\xea\x93\x36\x0b\x7e\x50\x1b\x72\x12\x26\x70\x3d\x78\x18\x3c\x55\xc0\x16\x7a\x72\x01\x99\xd2\x03\x3a\x62\x3b\x44\x9f\x19\x00\x76\xd5\x6a\x11\x4a\x03\x38\xf4\x83\x04\x87\xba\x77\xf6\x33\x29\xce\x15\xba\xae\x7d\x56\x58\xd7\x24\x23\xec\x59\xf5\x43\x44\xaa\xef\x22\x0f\x11\xd9\xf7\x6a\xb5\x68\x49\x7e\xd7\x68\x04\x8e\x66\xdf\x4e\xe5\x1e\x5b\x91\x57\x4e\xf7\x1c\xa9\x7b\x97\xc1\xd8\x9a\x9f\x3b\x3c\x10\x6c\x5a\xf4\x5e\xd7\x5a\x25\xfe\x62\xf1\x53\x38\x35\x5a\x35\xa0\x3d\x44\xe6\xa9\x02\x6b\x62\xeb\xa2\x4d\x30\xae\x90\xd1\x13\x8b\x0c\xe0\x77\x4f\xff\x18\x91\xda\xd9\x0e\xde\xb7\x83\x35\x9b\x3f\x46\x3a\xbf\x5a\x2b\x32\x47\x35\x39\x32\x8a\x7c\x68\xc1\xed\x14\xd9\xc7\x3e\x34\x23\x87\x13\xed\xbd\x66\x0a\x9f\xc4\x4a\x08\x48\xe9\xef\xb5\x39\x3c\x4c\xcf\x33\x34\xcc\xbd\x97\x79\x7e\x08\x91\x9e\xd5\x51\x74\x2f\x86\x58\x68\x9b\x47\xcc\xee\xab\xb5\xb9\x7a\x28\x4f\x34\xdc\xb5\x59\xab\x15\x19\x4f\x12\x06\xe3\xc8\xb3\xd3\x8a\x29\xcc\xf5\x28\x0f\xa3\x7d\x0b\xa4\x4d\x3f\x70\xcc\x37\x15\x92\xce\x31\x3e\x9f\x7b\x92\xa0\x23\x8d\x13\xa8\xb5\xf3\x9c\xd4\x01\x8a\xad\xe6\x73\x6c\xd3\x03\xfd\xc1\x71\xc2\x5c\xec\xee\xd4\x97\xc8\x77\xae\xa2\x87\x1e\xc3\xa5\x60\x72\x3e\x0d\x09\x00\xb5\xd4\x91\xe1\x5d\x4a\xa1\x6e\x2d\x72\x39\x1f\x75\xd1\x6e\xd7\xe2\x39\x4c\x7a\xe8\xd3\x28\x6f\xf1\x6c\x07\x96\xf0\xb4\xf9\xe9\xcf\xa7\x51\xa6\x6c\x6b\xdd\x2e\x54\x26\xe1\xe9\xc3\xfb\x1f\x2f\xf2\x4a\x77\x64\xc2\xe5\xf1\x12\x3e\x96\x53\x98\xcf\x17\xf1\xe7\xd3\xa8\xef\x08\x8d\x84\x8f\xc5\xbc\x14\xab\x37\xcb\x29\x14\xc5\x4a\xcc\xd7\x53\x28\x66\xa5\x58\x96\x17\x94\x57\xd8\x92\x84\x8f\xcb\xb5\x28\xdf\x2e\xa7\xb0\x7c\x23\x8a\x79\xfc\x53\xbe\x59\x7e\xca\xec\xc0\xfd\xc0\xa1\xa4\x54\xc6\x63\xaf\x60\x12\xb9\x08\xaa\x0b\x2f\xc9\x20\x7b\x85\xd2\xa4\x81\x16\xf7\xd4\xc2\x04\xf0\x35\x56\x47\xcc\x95\xcc\xec\x81\xd8\x10\x2e\x84\xba\x89\xb2\x6f\x13\xdd\x3b\xbb\xc7\xbd\x6e\x35\x6b\xf2\x3b\x76\x68\x7c\x58\x1f\x12\xbc\xad\xb9\xc3\x97\xe0\x30\x0a\xc3\x65\xb8\x8f\x7f\x6f\xf7\x8a\xa7\xb1\x71\x61\xc1\x69\x53\xd1\xcb\x25\xfd\x07\x14\x44\x54\xd8\x76\x37\xcf\xc9\x59\x4d\xc8\x83\x23\xbf\x1b\x5c\x2b\xe3\x15\x91\x79\xee\x4b\x81\x1d\x7e\xb5\x06\x4f\x5e\x28\xdb\xe5\x9e\xad\x23\x11\x17\x86\xb0\xee\x90\xfb\xb3\xf1\xc4\x3e\x8f\x43\x69\x88\x47\x81\xe0\x17\x7e\xf4\xaa\x1a\x52\x5f\xfc\xd0\x49\x58\x54\xf3\x72\xb1\x5f\xae\xcb\x12\x15\x2e\x16\x6f\xe7\xeb\xd9\x6a\x89\xc5\x7a\x56\xed\xcb\x59\xb1\xc2\x2c\xde\x97\xc0\xab\xef\x49\xe9\x3a\x64\x9d\xae\xd0\xc1\x61\xdf\x00\x9a\x0a\x4e\xa4\x0f\x0d\x7b\xf0\x76\x70\x2a\xb2\xb1\x47\x4f\xff\x2d\xf5\xe8\xd3\xe7\xf1\xee\xa7\x55\xa0\x8e\xb9\x23\x6f\xae\xfb\x28\x83\x14\x72\xd7\x23\x37\x32\x25\xf1\xec\xcf\xdd\xde\xb6\xe2\xb3\x8f\x0b\x7e\x4c\xe4\x01\x31\x9b\xcd\x66\x22\x8e\x43\x48\x4c\xfb\x1d\x3a\xd5\xe8\xe3\xb8\xa8\x6b\x6c\x7d\xb8\xbe\xba\x06\x4f\x3c\x0d\x7d\x48\xcd\xb8\x54\x10\xb6\x27\x42\xf8\x60\x0b\x68\x60\xb4\x8e\xc6\x69\xb4\x6f\x49\xdd\x93\x91\x04\xd1\x5d\x45\xc6\x32\x85\xef\xd1\xaa\xd6\x2d\xc5\xe7\xd5\x5f\xa6\xe2\xdf\x5c\x9e\x34\x37\xe3\x5c\xdc\x42\xa6\x50\xd7\xe6\xdd\x55\x7c\x93\x21\xb3\xd3\xfb\x81\xd3\x76\xa6\x17\x76\x38\x36\xec\xa6\xc9\x00\xbe\x68\x53\x49\xd8\x6c\xb7\x63\x15\xe1\x1c\xb2\x31\x34\x38\x6c\xc1\x10\xc7\xd7\xfb\x7f\x9b\xed\x76\x0a\x1f\xc2\x8f\x10\xe2\xff\xe1\x92\x87\xa7\x44\x9b\xc3\x6e\x7c\x3b\xe4\xed\x35\x99\x5c\xde\x93\xeb\x63\x1c\xff\x57\x18\x0d\x32\x80\x0e\x8d\xae\xc9\xf3\x0e\x07\x6e\xac\x93\xb0\x69\xc8\x1c\xe0\x17\x9d\x01\xfc\x66\xfb\x42\xc2\x7a\x26\x56\x45\x3a\x2d\x25\xbc\x5d\x8a\x72\x91\xfd\x1d\x00\x00\xff\xff\x82\x8a\x5b\x6b\xbf\x08\x00\x00"
func resnet152_v1dYmlBytes() ([]byte, error) {
return bindataRead(
_resnet152_v1dYml,
"ResNet152_v1d.yml",
)
}
func resnet152_v1dYml() (*asset, error) {
bytes, err := resnet152_v1dYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "ResNet152_v1d.yml", size: 2239, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _resnet152_v2Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x4b\x8f\xdb\x36\x10\xbe\xeb\x57\x0c\xe0\xc3\xb6\x80\x97\xb2\x2c\xdb\xbb\x4b\xa0\x39\xd4\x87\xb4\x40\xeb\x43\xd0\x17\x10\x04\xc6\x98\x1a\x59\x4c\x24\x52\x20\x47\xf6\x3a\xbf\xbe\x20\x29\xbf\xd0\x45\x82\x5e\xbc\xe2\xcc\x37\xaf\x6f\x86\xc3\x35\xd8\x91\x84\x0f\xe4\x37\xc4\xc5\x72\xbe\x3d\xcc\x61\x02\x41\x08\xb6\x86\x93\x1d\x1c\x74\xb6\xa2\x36\xab\x1d\x76\x74\xb4\xee\x8b\xcc\x00\x92\xd1\xef\xff\x6c\x88\x61\x02\x17\x15\xd4\xd6\x01\x37\x34\x9a\x00\x1c\xc8\x79\x6d\x8d\x84\x87\x77\x3f\x15\xa2\x10\xb3\x87\x3b\xf8\xa8\x06\x65\x0d\x3b\xd4\x86\xb3\x8b\x41\x21\x66\x30\xb9\x00\xb4\xa9\xad\xeb\x90\xd3\x37\x78\xea\xd0\xb0\x56\x17\x7d\xd2\x66\xc1\x0f\x6a\x43\x4e\xc2\x04\x2e\x07\x0f\x83\xa7\x0a\xd8\x42\x4f\x2e\x20\x53\x7a\x40\x07\x6c\x87\xe8\x33\x03\xc0\xae\x5a\x2d\x42\x69\x00\xfb\x7e\x90\xe0\x50\xf7\xce\x7e\x26\xc5\xb9\x42\xd7\xb5\x8f\x0a\xeb\x9a\x64\x84\x3d\xaa\x7e\x88\x48\xf5\x5d\xe4\x3e\x22\xfb\x5e\xad\x16\x2d\xc9\xef\x1a\x8d\xc0\xd1\xec\xdb\xa9\xdc\x62\x2b\xf2\xca\xe9\x9e\x23\x75\xef\x32\x18\x5b\xf3\x6b\x87\x7b\x82\x75\x8b\xde\xeb\x5a\xab\xc4\x5f\x2c\x7e\x0a\xc7\x46\xab\x06\xb4\x87\xc8\x3c\x55\x60\x4d\x6c\x5d\xb4\x09\xc6\x15\x32\x7a\x62\x91\x01\xfc\xe9\xe9\x7e\x42\x6a\x67\x3b\x78\xdf\x0e\xd6\xac\xff\x1a\xd9\xfc\x6a\xad\xc8\x1c\xd5\xe4\xc8\x28\xf2\xa1\x03\xd7\x53\x24\x1f\xfb\xd0\x8b\x1c\x8e\xb4\xf3\x9a\x29\x7c\x12\x2b\x21\x20\x65\xbf\xd3\x66\x7f\x37\x3c\x8f\xd0\x30\xf7\x5e\xe6\xf9\x3e\x44\x7a\x54\x07\xd1\xbd\x1a\x62\xa1\x6d\x1e\x31\xdb\xaf\xd6\xe6\xea\xae\x3a\xd1\x70\xd7\x66\xad\x56\x64\x3c\x49\x18\x8c\x23\xcf\x4e\x2b\xa6\x0a\x26\x30\xca\xc3\x64\x5f\x03\x69\xd3\x0f\x1c\xf3\x4d\x85\xa4\x73\x8c\xcf\xa7\x9e\x24\xe8\xc8\xe2\x04\x6a\xed\x3c\x27\x75\x80\x62\xab\xf9\x14\xbb\x74\xc7\x7e\x70\x9c\x30\x67\xbb\x1b\xf5\x39\xf2\x8d\xab\xe8\xa1\xc7\x70\x27\x98\x9c\x4f\x33\x02\x40\x2d\x75\x64\x78\x9b\x52\xa8\x5b\x8b\x5c\xce\x47\x5d\xb4\xdb\xb6\x78\x0a\x83\x1e\xda\x34\xca\x5b\x3c\xd9\x81\x25\x3c\xac\x7f\xf9\xfb\x61\x94\x29\xdb\x5a\xb7\x0d\x95\x49\x78\xf8\xf0\xfe\xe7\xb3\xbc\xd2\x1d\x99\x70\x77\xbc\x84\x8f\xe5\x14\xe6\xf3\x45\xfc\xf9\x34\xea\x3b\x42\x23\xe1\x63\x31\x2f\xc5\xea\x69\x39\x85\xa2\x58\x89\xf9\xf3\x14\x8a\x59\x29\x96\xe5\x19\xe5\x15\xb6\x24\xe1\xe3\xf2\x59\x94\x2f\xcb\x29\x2c\x9f\x44\x31\x8f\x7f\xca\xa7\xe5\xa7\xcc\x0e\xdc\x0f\x1c\x4a\x4a\x65\xdc\xf7\x0a\x26\x91\x8b\xa0\x3a\xf3\x92\x0c\xb2\x37\x28\x4d\x1a\x68\x71\x47\x2d\x4c\x00\xdf\x62\x75\xc4\x5c\xc8\xcc\xee\x88\x0d\xe1\x42\xa8\xab\x28\xfb\x36\xd1\xbd\xb3\x3b\xdc\xe9\x56\xb3\x26\xbf\x65\x87\xc6\x87\xed\x21\xc1\xdb\x9a\x3b\x7c\x0d\x0e\xa3\x30\x5c\x86\xdb\xf8\xb7\x76\x6f\x78\x1a\x1b\x17\xf6\x9b\x36\x15\xbd\x9e\xd3\xbf\x43\x41\x44\x85\x65\x77\xf5\x9c\x9c\xd5\x84\x3c\x38\xf2\xdb\xc1\xb5\x32\x5e\x11\x99\xe7\xbe\x14\xd8\xe1\x57\x6b\xf0\xe8\x85\xb2\x5d\xee\xd9\x3a\x12\x71\x5f\x08\xeb\xf6\xb9\x3f\x19\x4f\xec\xf3\x38\x94\x86\x78\x14\x08\x7e\xe5\x7b\xaf\xaa\x21\xf5\xc5\x0f\x9d\x84\x45\x35\x2f\x17\xbb\xe5\x73\x59\xa2\xc2\xc5\xe2\x65\xfe\x3c\x5b\x2d\xb1\x78\x9e\x55\xbb\x72\x56\xac\x30\x8b\xf7\x25\xf0\xea\x7b\x52\xba\x0e\x59\xa7\x2b\xb4\x77\xd8\x37\x80\xa6\x82\x23\xe9\x7d\xc3\x1e\xbc\x1d\x9c\x8a\x6c\xec\xd0\xd3\xff\x4b\x3d\xfa\xf4\x79\xbc\xfb\x69\x15\xa8\x43\xee\xc8\x9b\xf3\x3a\xca\x20\x45\xdc\xf6\xc8\x8d\x4c\x39\x3c\xfa\x53\xb7\xb3\xad\xf8\xec\xe3\x7a\x1f\xf3\xb8\x43\xcc\x66\xb3\x99\x88\xd3\x10\xf2\xd2\x7e\x8b\x4e\x35\xfa\x30\xae\xe9\x1a\x5b\x1f\x6e\xaf\xae\xc1\x13\x4f\x43\x1b\x52\x2f\xce\x05\x84\xdd\x89\x10\x3e\xd8\x02\x1a\x18\xad\xa3\x71\x9a\xec\x6b\x52\xb7\x5c\x24\x41\x74\x57\x91\xb1\x4c\xe1\x7b\xb4\xaa\x75\x4b\xf1\x71\xf5\xe7\xa1\xf8\x2f\x95\x47\xcd\xcd\x38\x16\xd7\x90\x29\xd4\xa5\x77\x37\x15\x5f\x65\xc8\xec\xf4\x6e\xe0\xb4\x9c\xe9\x95\x1d\x8e\xfd\xba\x6a\x32\x80\x2f\xda\x54\x12\xd6\x9b\xcd\x58\x45\x38\x87\x6c\x0c\x0d\x0e\x5b\x30\xc4\xf1\xed\xfe\x61\xbd\xd9\x4c\xe1\x43\xf8\x11\x42\xfc\x18\xee\x78\x78\x48\xb4\xd9\x6f\xc7\x97\x43\x5e\xdf\x92\xc9\xf9\x35\xb9\x3c\xc5\xf1\x3f\x85\xd1\x20\x03\xe8\xd0\xe8\x9a\x3c\x6f\x71\xe0\xc6\x3a\x09\xeb\x86\xcc\x1e\x7e\xd3\x19\xc0\x1f\xb6\x2f\x24\x3c\xbd\x88\x79\x91\x4e\x4b\x09\x2f\x0b\x51\x16\xd9\xbf\x01\x00\x00\xff\xff\x20\xf8\x8c\xef\xbc\x08\x00\x00"
func resnet152_v2YmlBytes() ([]byte, error) {
return bindataRead(
_resnet152_v2Yml,
"ResNet152_v2.yml",
)
}
func resnet152_v2Yml() (*asset, error) {
bytes, err := resnet152_v2YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "ResNet152_v2.yml", size: 2236, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _resnet18_v1Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x4b\x6f\xe3\x36\x10\xbe\xeb\x57\x0c\xe0\x43\x5a\xc0\xa1\x24\xcb\x76\x64\x01\xdd\x43\x73\xd8\x16\x68\x73\x58\xf4\x05\x2c\x16\xc6\x88\x1a\x59\xdc\x95\x48\x81\x1c\x25\xf1\xfe\xfa\x82\xa4\xfc\x42\x83\x5d\xf4\xe2\x88\x33\xdf\x3c\xf8\xcd\x83\xd1\x38\x50\x05\x1f\xc8\x3d\x11\xe7\xe5\xfe\x39\x87\x05\x78\x19\x98\x16\x8e\x66\xb2\x30\x98\x86\xfa\xa4\xb5\x38\xd0\x8b\xb1\x5f\xaa\x04\x20\xda\xfc\xfe\xcf\x13\x31\x2c\xe0\xac\x82\xd6\x58\xe0\x8e\x66\x13\x80\x67\xb2\x4e\x19\x5d\xc1\xdd\xbb\x9f\x72\x91\x8b\xec\xee\x06\x3e\xab\x41\x1a\xcd\x16\x95\xe6\xe4\x6c\x90\x8b\x0c\x16\x67\x80\xd2\xad\xb1\x03\x72\xfc\x06\x47\x03\x6a\x56\xf2\xac\x8f\xda\xc4\xfb\x41\xa5\xc9\x56\xb0\x80\xf3\xc1\xc1\xe4\xa8\x01\x36\x30\x92\xf5\xc8\x98\x1e\xd0\x33\xf6\x53\xf0\x99\x00\xe0\xd0\x6c\xd7\xfe\x6a\x00\x87\x71\xaa\xc0\xa2\x1a\xad\xf9\x4c\x92\x53\x89\x76\xe8\xef\x25\xb6\x2d\x55\x01\x76\x2f\xc7\x29\x20\xe5\x77\x91\x87\x80\x1c\x47\xb9\x5d\xf7\x54\x7d\xd7\x68\x06\xce\x66\xdf\x4e\xe5\x1a\xdb\x90\x93\x56\x8d\x1c\xa8\x7b\x97\xc0\x5c\x9a\x5f\x07\x3c\x10\x3c\xf6\xe8\x9c\x6a\x95\x8c\xfc\x85\xcb\x2f\xe1\xa5\x53\xb2\x03\xe5\x20\x30\x4f\x0d\x18\x1d\x4a\x17\x6c\xbc\x71\x83\x8c\x8e\x58\x24\x00\x7f\x3a\xba\x69\x90\xd6\x9a\x01\xde\xf7\x93\xd1\x8f\x7f\xcd\x64\x7e\x35\x46\x24\x96\x5a\xb2\xa4\x25\x39\x5f\x80\xcb\x29\x70\x8f\xa3\x2f\x45\x0a\x2f\x54\x3b\xc5\xe4\x3f\x89\xa5\x10\x10\x93\xaf\x95\x3e\xdc\xf4\xce\x3d\x74\xcc\xa3\xab\xd2\xf4\xe0\x23\xdd\xcb\x67\x31\xbc\x6a\x62\xa1\x4c\x1a\x30\xfb\xaf\xc6\xa4\xf2\xe6\x72\xa2\xe3\xa1\x4f\x7a\x25\x49\x3b\xaa\x60\xd2\x96\x1c\x5b\x25\x99\x1a\x58\xc0\x2c\xf7\x8d\x7d\x09\xa4\xf4\x38\x71\xc8\x37\x5e\x24\x9e\x43\x7c\x3e\x8e\x54\x81\x0a\x24\x2e\xa0\x55\xd6\x71\x54\x7b\x28\xf6\x8a\x8f\xa1\x48\x37\xe4\x7b\xc7\x11\x73\xb2\xbb\x52\x9f\x22\x5f\xb9\x0a\x1e\x46\xf4\x23\xc1\x64\x5d\x6c\x11\x00\xea\x69\x20\xcd\xfb\x98\x42\xdb\x1b\xe4\x62\x35\xeb\x82\xdd\xbe\xc7\xa3\xef\x73\x5f\xa5\x59\xde\xe3\xd1\x4c\x5c\xc1\xdd\xe3\x2f\x7f\xdf\xcd\x32\x69\x7a\x63\xf7\xfe\x66\x15\xdc\x7d\x78\xff\xf3\x49\xde\xa8\x81\xb4\x1f\x1d\x57\xc1\xc7\x62\x09\xab\xd5\x3a\xfc\x7c\x9a\xf5\x03\xa1\xae\xe0\x63\xbe\x2a\xc4\xf6\x61\xb3\x84\x3c\xdf\x8a\x55\xb9\x84\x3c\x2b\xc4\xa6\x38\xa1\x9c\xc4\x9e\x2a\xf8\xb8\x29\x45\xb1\xdb\x2c\x61\xf3\x20\xf2\x55\xf8\x53\x3c\x6c\x3e\x25\x66\xe2\x71\x62\x7f\xa5\x78\x8d\xdb\x5a\xc1\x22\x70\xe1\x55\x27\x5e\xa2\x41\xf2\x06\xa5\x51\x03\x3d\xd6\xd4\xc3\x02\xf0\x2d\x56\x67\xcc\x99\xcc\xe4\x86\x58\x1f\xce\x87\xba\x88\x92\x6f\x13\x3d\x5a\x53\x63\xad\x7a\xc5\x8a\xdc\x9e\x2d\x6a\xe7\x97\x47\x05\xce\xb4\x3c\xe0\xab\x77\x18\x84\x7e\x18\xae\xe3\x5f\xdb\xbd\xe1\x69\x2e\x9c\x5f\x6f\x4a\x37\xf4\x7a\x4a\xff\x06\x05\x01\xe5\x77\xdd\xc5\x73\x74\xd6\x12\xf2\x64\xc9\xed\x27\xdb\x57\x61\x44\xaa\x34\x75\x85\xc0\x01\xbf\x1a\x8d\x2f\x4e\x48\x33\xa4\x8e\x8d\x25\x11\xd6\x85\x30\xf6\x90\xba\xa3\x76\xc4\x2e\x0d\x4d\xa9\x89\x67\x81\xe0\x57\xbe\xf5\x2a\x3b\x92\x5f\xdc\x34\x54\xb0\x6e\x56\xc5\xba\xde\x94\x45\x81\x12\xd7\xeb\xdd\xaa\xcc\xb6\x1b\xcc\xcb\xac\xa9\x8b\x2c\xdf\x62\x12\xe6\xc5\xf3\xea\x46\x92\xaa\xf5\x59\xc7\x11\x3a\x58\x1c\x3b\x40\xdd\xc0\x0b\xa9\x43\xc7\x0e\x9c\x99\xac\x0c\x6c\xd4\xe8\xe8\xff\xa5\x1e\x7c\xba\x34\xcc\x7e\x5c\x05\xf2\x39\xb5\xe4\xf4\xbc\x8d\x12\x88\x01\xf7\x23\x72\x57\xc5\x14\xee\xdd\x71\xa8\x4d\x2f\x3e\xbb\xb0\xdc\xe7\x34\x6e\x10\x59\x96\x65\x22\x34\x83\x4f\x4b\xb9\x3d\x5a\xd9\xa9\xe7\x79\x49\xb7\xd8\x3b\x3f\xbc\xaa\x05\x47\xbc\xf4\x55\x88\xa5\x38\xe5\xef\x37\x27\x82\xff\x60\x03\xa8\x61\xb6\x0e\xc6\xb1\xb1\x2f\x49\x5d\x53\x11\x05\xc1\x5d\x43\xda\x30\xf9\xef\xd9\xaa\x55\x3d\x85\xa7\xd5\x9d\x7a\xe2\xbf\x4c\xbe\x28\xee\xe6\xae\xb8\x84\x8c\xa1\x2e\xa5\xab\xf3\xac\xde\xe5\xeb\xb2\xc9\xb6\x75\x5e\xae\xb1\x94\xb8\xc6\xb6\xa8\xb3\x6d\x4b\xeb\xac\xa0\x2b\x4a\x2e\x46\x2d\xee\x68\xbb\x29\xa9\x2c\x9b\xf5\x6a\xb3\xab\x8b\xec\x01\x37\x59\x5d\x6c\x31\x2b\xb3\xba\x91\x09\x32\x5b\x55\x4f\x1c\xb7\x3b\xbd\xb2\xc5\xb9\xe0\x17\x4d\x02\xf0\x45\xe9\xa6\x82\xc7\xa7\xa7\x99\x07\x7f\xf6\xf7\xd1\x34\x59\xec\x41\x13\x87\xb7\xff\x87\xc7\xa7\xa7\x25\x7c\xf0\x3f\x42\x88\x1f\xfd\x92\xf0\x0f\x91\xd2\x87\xfd\xfc\xf2\x54\x97\xb7\x68\x71\x7a\x8d\xce\x4f\x79\xf8\x4f\x63\x36\x48\x00\x06\xd4\xaa\x25\xc7\x7b\x9c\xb8\x33\xb6\x82\xc7\x8e\xf4\x01\x7e\x53\x09\xc0\x1f\x66\xcc\x2b\x78\xc8\xc4\xae\x88\xa7\x4d\x05\xe5\x4e\xec\x56\xc9\xbf\x01\x00\x00\xff\xff\x90\xb1\xe7\xed\xfb\x08\x00\x00"
func resnet18_v1YmlBytes() ([]byte, error) {
return bindataRead(
_resnet18_v1Yml,
"ResNet18_v1.yml",
)
}
func resnet18_v1Yml() (*asset, error) {
bytes, err := resnet18_v1YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "ResNet18_v1.yml", size: 2299, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _resnet18_v1bYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x4b\x8f\xdb\x36\x10\xbe\xeb\x57\x0c\xe0\xc3\xb6\x80\x97\xb2\x2c\x7b\xd7\x4b\xa0\x39\xd4\x87\xb4\x40\xeb\x43\xd0\x17\x10\x04\xc6\x98\x1a\x59\x4c\x24\x52\x20\x47\xf6\x3a\xbf\xbe\x20\x29\xbf\xd0\x45\x82\x5e\xbc\xe2\xcc\x37\xaf\x6f\x86\xc3\x35\xd8\x91\x84\x0f\xe4\x37\xc4\xc5\x6a\x7b\x28\x76\x30\x81\x20\x04\x5b\xc3\xc9\x0e\x0e\x3a\x5b\x51\x9b\xd5\x0e\x3b\x3a\x5a\xf7\x45\x66\x00\xc9\xe8\xf7\x7f\x36\xc4\x30\x81\x8b\x0a\x6a\xeb\x80\x1b\x1a\x4d\x00\x0e\xe4\xbc\xb6\x46\xc2\xc3\xbb\x9f\x0a\x51\x88\xd9\xc3\x1d\x7c\x54\x83\xb2\x86\x1d\x6a\xc3\xd9\xc5\xa0\x10\x33\x98\x5c\x00\xda\xd4\xd6\x75\xc8\xe9\x1b\x3c\x75\x68\x58\xab\x8b\x3e\x69\xb3\xe0\x07\xb5\x21\x27\x61\x02\x97\x83\x87\xc1\x53\x05\x6c\xa1\x27\x17\x90\x29\x3d\xa0\x03\xb6\x43\xf4\x99\x01\x60\x57\x3d\x2d\x42\x69\x00\xfb\x7e\x90\xe0\x50\xf7\xce\x7e\x26\xc5\xb9\x42\xd7\xb5\x8f\x0a\xeb\x9a\x64\x84\x3d\xaa\x7e\x88\x48\xf5\x5d\xe4\x3e\x22\xfb\x5e\x3d\x2d\x5a\x92\xdf\x35\x1a\x81\xa3\xd9\xb7\x53\xb9\xc5\x56\xe4\x95\xd3\x3d\x47\xea\xde\x65\x30\xb6\xe6\xd7\x0e\xf7\x04\xeb\x16\xbd\xd7\xb5\x56\x89\xbf\x58\xfc\x14\x8e\x8d\x56\x0d\x68\x0f\x91\x79\xaa\xc0\x9a\xd8\xba\x68\x13\x8c\x2b\x64\xf4\xc4\x22\x03\xf8\xd3\xd3\xfd\x84\xd4\xce\x76\xf0\xbe\x1d\xac\x59\xff\x35\xb2\xf9\xd5\x5a\x91\x39\xaa\xc9\x91\x51\xe4\x43\x07\xae\xa7\x48\x3e\xf6\xa1\x17\x39\x1c\x69\xe7\x35\x53\xf8\x24\x56\x42\x40\xca\x7e\xa7\xcd\xfe\x6e\x78\x1e\xa1\x61\xee\xbd\xcc\xf3\x7d\x88\xf4\xa8\x0e\xa2\x7b\x35\xc4\x42\xdb\x3c\x62\xb6\x5f\xad\xcd\xd5\x5d\x75\xa2\xe1\xae\xcd\x5a\xad\xc8\x78\x92\x30\x18\x47\x9e\x9d\x56\x4c\x15\x4c\x60\x94\x87\xc9\xbe\x06\xd2\xa6\x1f\x38\xe6\x9b\x0a\x49\xe7\x18\x9f\x4f\x3d\x49\xd0\x91\xc5\x09\xd4\xda\x79\x4e\xea\x00\xc5\x56\xf3\x29\x76\xe9\x8e\xfd\xe0\x38\x61\xce\x76\x37\xea\x73\xe4\x1b\x57\xd1\x43\x8f\xe1\x4e\x30\x39\x9f\x66\x04\x80\x5a\xea\xc8\xf0\x36\xa5\x50\xb7\x16\xb9\x9c\x8f\xba\x68\xb7\x6d\xf1\x14\x06\x3d\xb4\x69\x94\xb7\x78\xb2\x03\x4b\x78\x58\xff\xf2\xf7\xc3\x28\x53\xb6\xb5\x6e\x1b\x2a\x93\xf0\xf0\xe1\xfd\xcf\x67\x79\xa5\x3b\x32\xe1\xee\x78\x09\x1f\xcb\x29\xcc\xe7\x8b\xf8\xf3\x69\xd4\x77\x84\x46\xc2\xc7\x62\x5e\x8a\xa7\xe7\xe5\x14\x8a\xe2\x49\xcc\x57\x53\x28\x66\xa5\x58\x96\x67\x94\x57\xd8\x92\x84\x8f\xcb\x95\x28\x5f\x96\x53\x58\x3e\x8b\x62\x1e\xff\x94\xcf\xcb\x4f\x99\x1d\xb8\x1f\x38\x94\x94\xca\xb8\xef\x15\x4c\x22\x17\x41\x75\xe6\x25\x19\x64\x6f\x50\x9a\x34\xd0\xe2\x8e\x5a\x98\x00\xbe\xc5\xea\x88\xb9\x90\x99\xdd\x11\x1b\xc2\x85\x50\x57\x51\xf6\x6d\xa2\x7b\x67\x77\xb8\xd3\xad\x66\x4d\x7e\xcb\x0e\x8d\x0f\xdb\x43\x82\xb7\x35\x77\xf8\x1a\x1c\x46\x61\xb8\x0c\xb7\xf1\x6f\xed\xde\xf0\x34\x36\x2e\xec\x37\x6d\x2a\x7a\x3d\xa7\x7f\x87\x82\x88\x0a\xcb\xee\xea\x39\x39\xab\x09\x79\x70\xe4\xb7\x83\x6b\x65\xbc\x22\x32\xcf\x7d\x29\xb0\xc3\xaf\xd6\xe0\xd1\x0b\x65\xbb\xdc\xb3\x75\x24\xe2\xbe\x10\xd6\xed\x73\x7f\x32\x9e\xd8\xe7\x71\x28\x0d\xf1\x28\x10\xfc\xca\xf7\x5e\x55\x43\xea\x8b\x1f\x3a\x09\x8b\x6a\x5e\x2e\x76\xcb\x55\x59\xa2\xc2\xc5\xe2\x65\xbe\x9a\x3d\x2d\xb1\x58\xcd\xaa\x5d\x39\x2b\x9e\x30\x8b\xf7\x25\xf0\xea\x7b\x52\xba\x0e\x59\xa7\x2b\xb4\x77\xd8\x37\x80\xa6\x82\x23\xe9\x7d\xc3\x1e\xbc\x1d\x9c\x8a\x6c\xec\xd0\xd3\xff\x4b\x3d\xfa\xf4\x79\xbc\xfb\x69\x15\xa8\x43\xee\xc8\x9b\xf3\x3a\xca\x20\x45\xdc\xf6\xc8\x8d\x4c\x39\x3c\xfa\x53\xb7\xb3\xad\xf8\xec\xe3\x7a\x1f\xf3\xb8\x43\xcc\x66\xb3\x99\x88\xd3\x10\xf2\xd2\x7e\x8b\x4e\x35\xfa\x30\xae\xe9\x1a\x5b\x1f\x6e\xaf\xae\xc1\x13\x4f\x43\x1b\x52\x2f\xce\x05\x84\xdd\x89\x10\x3e\xd8\x02\x1a\x18\xad\xa3\x71\x9a\xec\x6b\x52\xb7\x5c\x24\x41\x74\x57\x91\xb1\x4c\xe1\x7b\xb4\xaa\x75\x4b\xf1\x71\xf5\xe7\xa1\xf8\x2f\x95\x47\xcd\xcd\x38\x16\xd7\x90\x29\xd4\xa5\x77\x37\x15\x5f\x65\xc8\xec\xf4\x6e\xe0\xb4\x9c\xe9\x95\x1d\x8e\xfd\xba\x6a\x32\x80\x2f\xda\x54\x12\xd6\x9b\xcd\x58\x45\x38\x87\x6c\x0c\x0d\x0e\x5b\x30\xc4\xf1\xed\xfe\x61\xbd\xd9\x4c\xe1\x43\xf8\x11\x42\xfc\x18\xee\x78\x78\x48\xb4\xd9\x6f\xc7\x97\x43\x5e\xdf\x92\xc9\xf9\x35\xb9\x3c\xc5\xf1\x3f\x85\xd1\x20\x03\xe8\xd0\xe8\x9a\x3c\x6f\x71\xe0\xc6\x3a\x09\xeb\x86\xcc\x1e\x7e\xd3\x19\xc0\x1f\xb6\x2f\x24\x3c\xcf\xc4\xcb\x22\x9d\x96\x12\x56\x2f\x62\x55\x66\xff\x06\x00\x00\xff\xff\x3e\x26\x23\x67\xbc\x08\x00\x00"
func resnet18_v1bYmlBytes() ([]byte, error) {
return bindataRead(
_resnet18_v1bYml,
"ResNet18_v1b.yml",
)
}
func resnet18_v1bYml() (*asset, error) {
bytes, err := resnet18_v1bYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "ResNet18_v1b.yml", size: 2236, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _resnet18_v2Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x4b\x6f\xe3\x36\x10\xbe\xeb\x57\x0c\xe0\x43\x5a\xc0\xa1\x2c\xcb\x4e\x1c\x02\xdd\x43\x73\xd8\x16\x68\x73\x58\xf4\x05\x2c\x16\xc6\x98\x1a\x59\xdc\x95\x48\x81\x1c\x25\xf1\xfe\xfa\x82\x0f\xbf\xd0\x60\x17\xbd\x38\xe2\xcc\x37\x0f\x7e\xf3\x60\x0c\x0e\x24\xe1\x03\xf9\x27\xe2\x6a\xb3\x7d\x5e\xc2\x0c\x82\x0c\x6c\x0b\x07\x3b\x39\x18\x6c\x43\x7d\xd1\x3a\x1c\xe8\xc5\xba\x2f\xb2\x00\x48\x36\xbf\xff\xf3\x44\x0c\x33\x38\xa9\xa0\xb5\x0e\xb8\xa3\x6c\x02\xf0\x4c\xce\x6b\x6b\x24\xdc\xbc\xfb\xa9\x12\x95\x58\xdc\x5c\xc1\xb3\x1a\x94\x35\xec\x50\x1b\x2e\x4e\x06\x95\x58\xc0\xec\x04\xd0\xa6\xb5\x6e\x40\x4e\xdf\xe0\x69\x40\xc3\x5a\x9d\xf4\x49\x5b\x04\x3f\xa8\x0d\x39\x09\x33\x38\x1d\x3c\x4c\x9e\x1a\x60\x0b\x23\xb9\x80\x4c\xe9\x01\x3d\x63\x3f\x45\x9f\x05\x00\x0e\xcd\xdd\x2a\x5c\x0d\x60\x3f\x4e\x12\x1c\xea\xd1\xd9\xcf\xa4\xb8\x54\xe8\x86\xfe\x56\x61\xdb\x92\x8c\xb0\x5b\x35\x4e\x11\xa9\xbe\x8b\xdc\x47\xe4\x38\xaa\xbb\x55\x4f\xf2\xbb\x46\x19\x98\xcd\xbe\x9d\xca\x25\xb6\x21\xaf\x9c\x1e\x39\x52\xf7\xae\x80\x5c\x9a\x5f\x07\xdc\x13\x3c\xf6\xe8\xbd\x6e\xb5\x4a\xfc\xc5\xcb\xcf\xe1\xa5\xd3\xaa\x03\xed\x21\x32\x4f\x0d\x58\x13\x4b\x17\x6d\x82\x71\x83\x8c\x9e\x58\x14\x00\x7f\x7a\xba\x6a\x90\xd6\xd9\x01\xde\xf7\x93\x35\x8f\x7f\x65\x32\xbf\x5a\x2b\x0a\x47\x2d\x39\x32\x8a\x7c\x28\xc0\xf9\x14\xb9\xc7\x31\x94\xa2\x84\x17\xda\x79\xcd\x14\x3e\x89\x95\x10\x90\x92\xdf\x69\xb3\xbf\xea\x9d\x5b\xe8\x98\x47\x2f\xcb\x72\x1f\x22\xdd\xaa\x67\x31\xbc\x1a\x62\xa1\x6d\x19\x31\xdb\xaf\xd6\x96\xea\xea\x72\xa2\xe3\xa1\x2f\x7a\xad\xc8\x78\x92\x30\x19\x47\x9e\x9d\x56\x4c\x0d\xcc\x20\xcb\x43\x63\x9f\x03\x69\x33\x4e\x1c\xf3\x4d\x17\x49\xe7\x18\x9f\x0f\x23\x49\xd0\x91\xc4\x19\xb4\xda\x79\x4e\xea\x00\xc5\x5e\xf3\x21\x16\xe9\x8a\xfc\xe0\x38\x61\x8e\x76\x17\xea\x63\xe4\x0b\x57\xd1\xc3\x88\x61\x24\x98\x9c\x4f\x2d\x02\x40\x3d\x0d\x64\x78\x9b\x52\x68\x7b\x8b\x5c\x2f\xb3\x2e\xda\x6d\x7b\x3c\x84\x3e\x0f\x55\xca\xf2\x1e\x0f\x76\x62\x09\x37\x8f\xbf\xfc\x7d\x93\x65\xca\xf6\xd6\x6d\xc3\xcd\x24\xdc\x7c\x78\xff\xf3\x51\xde\xe8\x81\x4c\x18\x1d\x2f\xe1\x63\x3d\x87\xe5\x72\x15\x7f\x3e\x65\xfd\x40\x68\x24\x7c\xac\x96\xb5\xb8\xbb\x5f\xcf\xa1\xaa\xee\xc4\x72\x33\x87\x6a\x51\x8b\x75\x7d\x44\x79\x85\x3d\x49\xf8\xb8\xde\x88\xfa\x61\x3d\x87\xf5\xbd\xa8\x96\xf1\x4f\x7d\xbf\xfe\x54\xd8\x89\xc7\x89\xc3\x95\xd2\x35\xae\x6b\x05\xb3\xc8\x45\x50\x1d\x79\x49\x06\xc5\x1b\x94\x26\x0d\xf4\xb8\xa3\x1e\x66\x80\x6f\xb1\x9a\x31\x27\x32\x8b\x2b\x62\x43\xb8\x10\xea\x2c\x2a\xbe\x4d\xf4\xe8\xec\x0e\x77\xba\xd7\xac\xc9\x6f\xd9\xa1\xf1\x61\x79\x48\xf0\xb6\xe5\x01\x5f\x83\xc3\x28\x0c\xc3\x70\x19\xff\xd2\xee\x0d\x4f\xb9\x70\x61\xbd\x69\xd3\xd0\xeb\x31\xfd\x2b\x14\x44\x54\xd8\x75\x67\xcf\xc9\x59\x4b\xc8\x93\x23\xbf\x9d\x5c\x2f\xe3\x88\xc8\xb2\xf4\xb5\xc0\x01\xbf\x5a\x83\x2f\x5e\x28\x3b\x94\x9e\xad\x23\x11\xd7\x85\xb0\x6e\x5f\xfa\x83\xf1\xc4\xbe\x8c\x4d\x69\x88\xb3\x40\xf0\x2b\x5f\x7b\x55\x1d\xa9\x2f\x7e\x1a\x24\xac\x9a\x65\xbd\xda\xad\x37\x75\x8d\x0a\x57\xab\x87\xe5\x66\x71\xb7\xc6\x6a\xb3\x68\x76\xf5\xa2\xba\xc3\x22\xce\x4b\xe0\xd5\x8f\xa4\x74\x1b\xb2\x4e\x23\xb4\x77\x38\x76\x80\xa6\x81\x17\xd2\xfb\x8e\x3d\x78\x3b\x39\x15\xd9\xd8\xa1\xa7\xff\x97\x7a\xf4\xe9\xcb\x38\xfb\x69\x15\xa8\xe7\xd2\x91\x37\x79\x1b\x15\x90\x02\x6e\x47\xe4\x4e\xa6\x14\x6e\xfd\x61\xd8\xd9\x5e\x7c\xf6\x71\xb9\xe7\x34\xae\x10\x8b\xc5\x62\x21\x62\x33\x84\xb4\xb4\xdf\xa2\x53\x9d\x7e\xce\x4b\xba\xc5\xde\x87\xe1\xd5\x2d\x78\xe2\x79\xa8\x42\x2a\xc5\x31\xff\xb0\x39\x11\xc2\x07\x5b\x40\x03\xd9\x3a\x1a\xa7\xc6\x3e\x27\x75\x49\x45\x12\x44\x77\x0d\x19\xcb\x14\xbe\xb3\x55\xab\x7b\x8a\x4f\xab\x3f\xf6\xc4\x7f\x99\x7c\xd1\xdc\xe5\xae\x38\x87\x4c\xa1\x4e\xa5\xbb\xb8\xf1\x59\x86\xcc\x4e\xef\x26\x4e\xbb\x99\x5e\xd9\x61\x2e\xd7\x59\x53\x00\x7c\xd1\xa6\x91\xf0\xf8\xf4\x94\x6f\x11\xce\x21\x1b\x43\x93\xc3\x1e\x0c\x71\x7c\xb9\x7f\x78\x7c\x7a\x9a\xc3\x87\xf0\x23\x84\xf8\x31\x8c\x78\x78\x46\xb4\xd9\x6f\xf3\xbb\x21\xcf\x2f\xc9\xec\xf8\x96\x9c\x1e\xe2\xf8\x7f\x42\x36\x28\x00\x06\x34\xba\x25\xcf\x5b\x9c\xb8\xb3\x4e\xc2\x63\x47\x66\x0f\xbf\xe9\x02\xe0\x0f\x3b\x56\x12\xee\x2b\xb1\x58\xa4\xd3\x5a\xc2\xe6\x41\x3c\x2c\x8b\x7f\x03\x00\x00\xff\xff\x88\xdf\xdc\x78\xb9\x08\x00\x00"
func resnet18_v2YmlBytes() ([]byte, error) {
return bindataRead(
_resnet18_v2Yml,
"ResNet18_v2.yml",
)
}
func resnet18_v2Yml() (*asset, error) {
bytes, err := resnet18_v2YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "ResNet18_v2.yml", size: 2233, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _resnet34_v1Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x4b\x8f\xdb\x36\x10\xbe\xeb\x57\x0c\xe0\xc3\xb6\x80\x97\xb2\x2c\x7b\x77\x43\xa0\x39\x74\x0f\x69\x81\x76\x0f\x41\x5f\x40\x10\x18\x63\x6a\x64\x31\x91\x48\x81\x1c\xd9\xeb\xfc\xfa\x82\x0f\xbf\xd0\x20\x41\x2f\x5e\x71\xe6\x9b\x07\xbf\x79\x70\x0d\x0e\x24\xe1\x3d\xf9\x17\xe2\x7a\xb5\xd9\x57\x30\x83\x20\x03\xdb\xc2\xd1\x4e\x0e\x06\xdb\x50\x5f\xb4\x0e\x07\x3a\x58\xf7\x59\x16\x00\xc9\xe6\xf7\x7f\x5e\x88\x61\x06\x67\x15\xb4\xd6\x01\x77\x94\x4d\x00\xf6\xe4\xbc\xb6\x46\xc2\xdd\xdb\x9f\x2a\x51\x89\xc5\xdd\x0d\x3c\xab\x41\x59\xc3\x0e\xb5\xe1\xe2\x6c\x50\x89\x05\xcc\xce\x00\x6d\x5a\xeb\x06\xe4\xf4\x0d\x9e\x06\x34\xac\xd5\x59\x9f\xb4\x45\xf0\x83\xda\x90\x93\x30\x83\xf3\xc1\xc3\xe4\xa9\x01\xb6\x30\x92\x0b\xc8\x94\x1e\xd0\x1e\xfb\x29\xfa\x2c\x00\x70\x68\x1e\x56\xe1\x6a\x00\xbb\x71\x92\xe0\x50\x8f\xce\x7e\x22\xc5\xa5\x42\x37\xf4\xf7\x0a\xdb\x96\x64\x84\xdd\xab\x71\x8a\x48\xf5\x5d\xe4\x2e\x22\xc7\x51\x3d\xac\x7a\x92\xdf\x35\xca\xc0\x6c\xf6\xed\x54\xae\xb1\x0d\x79\xe5\xf4\xc8\x91\xba\xb7\x05\xe4\xd2\xfc\x3a\xe0\x8e\xe0\xb9\x47\xef\x75\xab\x55\xe2\x2f\x5e\x7e\x0e\x87\x4e\xab\x0e\xb4\x87\xc8\x3c\x35\x60\x4d\x2c\x5d\xb4\x09\xc6\x0d\x32\x7a\x62\x51\x00\xfc\xe9\xe9\xa6\x41\x5a\x67\x07\x78\xd7\x4f\xd6\x3c\xff\x95\xc9\xfc\x62\xad\x28\x1c\xb5\xe4\xc8\x28\xf2\xa1\x00\x97\x53\xe4\x1e\xc7\x50\x8a\x12\x0e\xb4\xf5\x9a\x29\x7c\x12\x2b\x21\x20\x25\xbf\xd5\x66\x77\xd3\x3b\xf7\xd0\x31\x8f\x5e\x96\xe5\x2e\x44\xba\x57\x7b\x31\xbc\x1a\x62\xa1\x6d\x19\x31\x9b\x2f\xd6\x96\xea\xe6\x72\xa2\xe3\xa1\x2f\x7a\xad\xc8\x78\x92\x30\x19\x47\x9e\x9d\x56\x4c\x0d\xcc\x20\xcb\x43\x63\x5f\x02\x69\x33\x4e\x1c\xf3\x4d\x17\x49\xe7\x18\x9f\x8f\x23\x49\xd0\x91\xc4\x19\xb4\xda\x79\x4e\xea\x00\xc5\x5e\xf3\x31\x16\xe9\x86\xfc\xe0\x38\x61\x4e\x76\x57\xea\x53\xe4\x2b\x57\xd1\xc3\x88\x61\x24\x98\x9c\x4f\x2d\x02\x40\x3d\x0d\x64\x78\x93\x52\x68\x7b\x8b\x5c\x2f\xb3\x2e\xda\x6d\x7a\x3c\x86\x3e\x0f\x55\xca\xf2\x1e\x8f\x76\x62\x09\x77\xcf\xbf\xfc\x7d\x97\x65\xca\xf6\xd6\x6d\xc2\xcd\x24\xdc\xbd\x7f\xf7\xf3\x49\xde\xe8\x81\x4c\x18\x1d\x2f\xe1\x43\x3d\x87\xe5\x72\x15\x7f\x3e\x66\xfd\x40\x68\x24\x7c\xa8\x96\xb5\x78\x78\x5c\xcf\xa1\xaa\x1e\xc4\xf2\x69\x0e\xd5\xa2\x16\xeb\xfa\x84\xf2\x0a\x7b\x92\xf0\x61\xfd\x24\xea\x37\xeb\x39\xac\x1f\x45\xb5\x8c\x7f\xea\xc7\xf5\xc7\xc2\x4e\x3c\x4e\x1c\xae\x94\xae\x71\x5b\x2b\x98\x45\x2e\x82\xea\xc4\x4b\x32\x28\xbe\x42\x69\xd2\x40\x8f\x5b\xea\x61\x06\xf8\x35\x56\x33\xe6\x4c\x66\x71\x43\x6c\x08\x17\x42\x5d\x44\xc5\xb7\x89\x1e\x9d\xdd\xe2\x56\xf7\x9a\x35\xf9\x0d\x3b\x34\x3e\x2c\x0f\x09\xde\xb6\x3c\xe0\x6b\x70\x18\x85\x61\x18\xae\xe3\x5f\xdb\x7d\xc5\x53\x2e\x5c\x58\x6f\xda\x34\xf4\x7a\x4a\xff\x06\x05\x11\x15\x76\xdd\xc5\x73\x72\xd6\x12\xf2\xe4\xc8\x6f\x26\xd7\xcb\x38\x22\xb2\x2c\x7d\x2d\x70\xc0\x2f\xd6\xe0\xc1\x0b\x65\x87\xd2\xb3\x75\x24\xe2\xba\x10\xd6\xed\x4a\x7f\x34\x9e\xd8\x97\xb1\x29\x0d\x71\x16\x08\x7e\xe5\x5b\xaf\xaa\x23\xf5\xd9\x4f\x83\x84\x55\xb3\xac\x57\xdb\xf5\x53\x5d\xa3\xc2\xd5\xea\xcd\xf2\x69\xf1\xb0\xc6\xea\x69\xd1\x6c\xeb\x45\xf5\x80\x45\x9c\x97\xc0\xab\x1f\x49\xe9\x36\x64\x9d\x46\x68\xe7\x70\xec\x00\x4d\x03\x07\xd2\xbb\x8e\x3d\x78\x3b\x39\x15\xd9\xd8\xa2\xa7\xff\x97\x7a\xf4\xe9\xcb\x38\xfb\x69\x15\xa8\x7d\xe9\xc8\x9b\xbc\x8d\x0a\x48\x01\x37\x23\x72\x27\x53\x0a\xf7\xfe\x38\x6c\x6d\x2f\x3e\xf9\xb8\xdc\x73\x1a\x37\x88\xc5\x62\xb1\x10\xb1\x19\x42\x5a\xda\x6f\xd0\xa9\x4e\xef\xf3\x92\x6e\xb1\xf7\x61\x78\x75\x0b\x9e\x78\x1e\xaa\x90\x4a\x71\xca\x3f\x6c\x4e\x84\xf0\xc1\x16\xd0\x40\xb6\x8e\xc6\xa9\xb1\x2f\x49\x5d\x53\x91\x04\xd1\x5d\x43\xc6\x32\x85\xef\x6c\xd5\xea\x9e\xe2\xd3\xea\x4f\x3d\xf1\x5f\x26\x0f\x9a\xbb\xdc\x15\x97\x90\x29\xd4\xb9\x74\x57\x37\xbe\xc8\x90\xd9\xe9\xed\xc4\x69\x37\xd3\x2b\x3b\xcc\xe5\xba\x68\x0a\x80\xcf\xda\x34\x12\x9e\x5f\x5e\xf2\x2d\xc2\x39\x64\x63\x68\x72\xd8\x83\x21\x8e\x2f\xf7\x0f\xcf\x2f\x2f\x73\x78\x1f\x7e\x84\x10\x3f\x86\x11\x0f\xcf\x88\x36\xbb\x4d\x7e\x37\xe4\xe5\x25\x99\x9d\xde\x92\xf3\x43\x1c\xff\x4f\xc8\x06\x05\xc0\x80\x46\xb7\xe4\x79\x83\x13\x77\xd6\x49\x78\xee\xc8\xec\xe0\x37\x5d\x00\xfc\x61\xc7\x4a\xc2\xe3\x4a\xd4\x8f\xe9\xb4\x96\xf0\xa6\x12\x4f\x8f\xc5\xbf\x01\x00\x00\xff\xff\xc7\x74\xc3\x5f\xb9\x08\x00\x00"
func resnet34_v1YmlBytes() ([]byte, error) {
return bindataRead(
_resnet34_v1Yml,
"ResNet34_v1.yml",
)
}
func resnet34_v1Yml() (*asset, error) {
bytes, err := resnet34_v1YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "ResNet34_v1.yml", size: 2233, mode: os.FileMode(436), modTime: time.Unix(1560796485, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _resnet34_v1bYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x4b\x8f\xdb\x36\x10\xbe\xeb\x57\x0c\xe0\xc3\xb6\x80\x97\xb2\x2c\xdb\xeb\x10\x68\x0e\xf5\x21\x2d\xd0\xfa\x10\xf4\x05\x04\x81\x31\xa6\x46\x16\x13\x89\x14\xc8\x91\xbd\xce\xaf\x2f\x48\xca\x2f\x34\x48\xd0\x8b\x57\x9c\xf9\xe6\xf5\xcd\x70\xb8\x06\x3b\x92\xf0\x9e\xfc\x96\xb8\x5c\xec\x8e\xc5\x1e\x26\x10\x84\x60\x6b\x38\xdb\xc1\x41\x67\x2b\x6a\xb3\xda\x61\x47\x27\xeb\x3e\xcb\x0c\x20\x19\xfd\xfe\xcf\x96\x18\x26\x70\x55\x41\x6d\x1d\x70\x43\xa3\x09\xc0\x91\x9c\xd7\xd6\x48\x78\x7a\xfb\x53\x21\x0a\x31\x7b\x7a\x80\x8f\x6a\x50\xd6\xb0\x43\x6d\x38\xbb\x1a\x14\x62\x06\x93\x2b\x40\x9b\xda\xba\x0e\x39\x7d\x83\xa7\x0e\x0d\x6b\x75\xd5\x27\x6d\x16\xfc\xa0\x36\xe4\x24\x4c\xe0\x7a\xf0\x30\x78\xaa\x80\x2d\xf4\xe4\x02\x32\xa5\x07\x74\xc4\x76\x88\x3e\x33\x00\xec\xaa\xd5\x22\x94\x06\x70\xe8\x07\x09\x0e\x75\xef\xec\x27\x52\x9c\x2b\x74\x5d\xfb\xac\xb0\xae\x49\x46\xd8\xb3\xea\x87\x88\x54\xdf\x45\x1e\x22\xb2\xef\xd5\x6a\xd1\x92\xfc\xae\xd1\x08\x1c\xcd\xbe\x9d\xca\x3d\xb6\x22\xaf\x9c\xee\x39\x52\xf7\x36\x83\xb1\x35\xbf\x76\x78\x20\xd8\xb4\xe8\xbd\xae\xb5\x4a\xfc\xc5\xe2\xa7\x70\x6a\xb4\x6a\x40\x7b\x88\xcc\x53\x05\xd6\xc4\xd6\x45\x9b\x60\x5c\x21\xa3\x27\x16\x19\xc0\x9f\x9e\x1e\x27\xa4\x76\xb6\x83\x77\xed\x60\xcd\xe6\xaf\x91\xcd\x2f\xd6\x8a\xcc\x51\x4d\x8e\x8c\x22\x1f\x3a\x70\x3b\x45\xf2\xb1\x0f\xbd\xc8\xe1\x44\x7b\xaf\x99\xc2\x27\xb1\x12\x02\x52\xf6\x7b\x6d\x0e\x0f\xc3\xf3\x0c\x0d\x73\xef\x65\x9e\x1f\x42\xa4\x67\x75\x14\xdd\xab\x21\x16\xda\xe6\x11\xb3\xfb\x62\x6d\xae\x1e\xaa\x13\x0d\x77\x6d\xd6\x6a\x45\xc6\x93\x84\xc1\x38\xf2\xec\xb4\x62\xaa\x60\x02\xa3\x3c\x4c\xf6\x2d\x90\x36\xfd\xc0\x31\xdf\x54\x48\x3a\xc7\xf8\x7c\xee\x49\x82\x8e\x2c\x4e\xa0\xd6\xce\x73\x52\x07\x28\xb6\x9a\xcf\xb1\x4b\x0f\xec\x07\xc7\x09\x73\xb1\xbb\x53\x5f\x22\xdf\xb9\x8a\x1e\x7a\x0c\x77\x82\xc9\xf9\x34\x23\x00\xd4\x52\x47\x86\x77\x29\x85\xba\xb5\xc8\xe5\x7c\xd4\x45\xbb\x5d\x8b\xe7\x30\xe8\xa1\x4d\xa3\xbc\xc5\xb3\x1d\x58\xc2\xd3\xe6\x97\xbf\x9f\x46\x99\xb2\xad\x75\xbb\x50\x99\x84\xa7\xf7\xef\x7e\xbe\xc8\x2b\xdd\x91\x09\x77\xc7\x4b\xf8\x50\x4e\x61\x3e\x5f\xc4\x9f\x8f\xa3\xbe\x23\x34\x12\x3e\x14\xf3\x52\xac\x5e\x96\x53\x28\x8a\x95\x98\xaf\xa7\x50\xcc\x4a\xb1\x2c\x2f\x28\xaf\xb0\x25\x09\x1f\x96\x6b\x51\xbe\x59\x4e\x61\xf9\x22\x8a\x79\xfc\x53\xbe\x2c\x3f\x66\x76\xe0\x7e\xe0\x50\x52\x2a\xe3\xb1\x57\x30\x89\x5c\x04\xd5\x85\x97\x64\x90\x7d\x85\xd2\xa4\x81\x16\xf7\xd4\xc2\x04\xf0\x6b\xac\x8e\x98\x2b\x99\xd9\x03\xb1\x21\x5c\x08\x75\x13\x65\xdf\x26\xba\x77\x76\x8f\x7b\xdd\x6a\xd6\xe4\x77\xec\xd0\xf8\xb0\x3d\x24\x78\x5b\x73\x87\xaf\xc1\x61\x14\x86\xcb\x70\x1f\xff\xde\xee\x2b\x9e\xc6\xc6\x85\xfd\xa6\x4d\x45\xaf\x97\xf4\x1f\x50\x10\x51\x61\xd9\xdd\x3c\x27\x67\x35\x21\x0f\x8e\xfc\x6e\x70\xad\x8c\x57\x44\xe6\xb9\x2f\x05\x76\xf8\xc5\x1a\x3c\x79\xa1\x6c\x97\x7b\xb6\x8e\x44\xdc\x17\xc2\xba\x43\xee\xcf\xc6\x13\xfb\x3c\x0e\xa5\x21\x1e\x05\x82\x5f\xf9\xd1\xab\x6a\x48\x7d\xf6\x43\x27\x61\x51\xcd\xcb\xc5\x7e\xb9\x2e\x4b\x54\xb8\x58\xbc\x99\xaf\x67\xab\x25\x16\xeb\x59\xb5\x2f\x67\xc5\x0a\xb3\x78\x5f\x02\xaf\xbe\x27\xa5\xeb\x90\x75\xba\x42\x07\x87\x7d\x03\x68\x2a\x38\x91\x3e\x34\xec\xc1\xdb\xc1\xa9\xc8\xc6\x1e\x3d\xfd\xbf\xd4\xa3\x4f\x9f\xc7\xbb\x9f\x56\x81\x3a\xe6\x8e\xbc\xb9\xac\xa3\x0c\x52\xc4\x5d\x8f\xdc\xc8\x94\xc3\xb3\x3f\x77\x7b\xdb\x8a\x4f\x3e\xae\xf7\x31\x8f\x07\xc4\x6c\x36\x9b\x89\x38\x0d\x21\x2f\xed\x77\xe8\x54\xa3\x8f\xe3\x9a\xae\xb1\xf5\xe1\xf6\xea\x1a\x3c\xf1\x34\xb4\x21\xf5\xe2\x52\x40\xd8\x9d\x08\xe1\x83\x2d\xa0\x81\xd1\x3a\x1a\xa7\xc9\xbe\x25\x75\xcf\x45\x12\x44\x77\x15\x19\xcb\x14\xbe\x47\xab\x5a\xb7\x14\x1f\x57\x7f\x19\x8a\xff\x52\x79\xd2\xdc\x8c\x63\x71\x0b\x99\x42\x5d\x7b\x77\x57\xf1\x4d\x86\xcc\x4e\xef\x07\x4e\xcb\x99\x5e\xd9\xe1\xd8\xaf\x9b\x26\x03\xf8\xac\x4d\x25\x61\xb3\xdd\x8e\x55\x84\x73\xc8\xc6\xd0\xe0\xb0\x05\x43\x1c\xdf\xee\x1f\x36\xdb\xed\x14\xde\x87\x1f\x21\xc4\x8f\xe1\x8e\x87\x87\x44\x9b\xc3\x6e\x7c\x39\xe4\xed\x2d\x99\x5c\x5e\x93\xeb\x53\x1c\xff\x53\x18\x0d\x32\x80\x0e\x8d\xae\xc9\xf3\x0e\x07\x6e\xac\x93\xb0\x69\xc8\x1c\xe0\x37\x9d\x01\xfc\x61\xfb\x42\xc2\xcb\x42\xac\x96\xe9\xb4\x94\xf0\x66\x2e\x66\xeb\xec\xdf\x00\x00\x00\xff\xff\x5e\x19\x4c\xff\xbc\x08\x00\x00"
func resnet34_v1bYmlBytes() ([]byte, error) {
return bindataRead(
_resnet34_v1bYml,
"ResNet34_v1b.yml",
)
}
func resnet34_v1bYml() (*asset, error) {
bytes, err := resnet34_v1bYmlBytes()
if err != nil {
return nil, err