-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuiltin_models_static.go
2236 lines (1863 loc) · 444 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/AI_Matrix_DIEN.yml
// builtin_models/AI_Matrix_Densenet121.yml
// builtin_models/AI_Matrix_GoogleNet.yml
// builtin_models/AI_Matrix_ResNet152.yml
// builtin_models/AI_Matrix_ResNet50.yml
// builtin_models/BVLC_AlexNet_Caffe.yml
// builtin_models/BVLC_GoogLeNet_Caffe.yml
// builtin_models/DeepLabv3_MobileNet_v2_DM_05_PASCAL_VOC_Train_Aug.yml
// builtin_models/DeepLabv3_MobileNet_v2_DM_05_PASCAL_VOC_Train_Val.yml
// builtin_models/DeepLabv3_MobileNet_v2_PASCAL_VOC_Train_Aug.yml
// builtin_models/DeepLabv3_MobileNet_v2_PASCAL_VOC_Train_Val.yml
// builtin_models/DeepLabv3_Xception_65_PASCAL_VOC_Train_Aug.yml
// builtin_models/DeepLabv3_Xception_65_PASCAL_VOC_Train_Val.yml
// builtin_models/Faster_RCNN_Inception_ResNet_v2_Atrous_COCO.yml
// builtin_models/Faster_RCNN_Inception_ResNet_v2_Atrous_Lowproposals_COCO.yml
// builtin_models/Faster_RCNN_Inception_v2_COCO.yml
// builtin_models/Faster_RCNN_NAS_COCO.yml
// builtin_models/Faster_RCNN_NAS_Lowproposals_COCO.yml
// builtin_models/Faster_RCNN_ResNet101_COCO.yml
// builtin_models/Faster_RCNN_ResNet101_Lowproposals_COCO.yml
// builtin_models/Faster_RCNN_ResNet50_COCO.yml
// builtin_models/Faster_RCNN_ResNet50_Lowproposals_COCO.yml
// builtin_models/Inception_5h.yml
// builtin_models/Inception_ResNet_v2.yml
// builtin_models/Inception_v1.yml
// builtin_models/Inception_v2.yml
// builtin_models/Inception_v3.yml
// builtin_models/Inception_v4.yml
// builtin_models/MLPerf_Mobilenet_v1.yml
// builtin_models/MLPerf_ResNet50_v1.5.yml
// builtin_models/MLPerf_SSD_MobileNet_v1_300x300.yml
// builtin_models/MLPerf_SSD_ResNet34_1200x1200.yml
// builtin_models/Mask_RCNN_Inception_ResNet_v2_Atrous_COCO.yml
// builtin_models/Mask_RCNN_Inception_v2_COCO.yml
// builtin_models/Mask_RCNN_ResNet101_v2_Atrous_COCO.yml
// builtin_models/Mask_RCNN_ResNet50_v2_Atrous_COCO.yml
// builtin_models/MobileNet_v1_0.25_128.yml
// builtin_models/MobileNet_v1_0.25_128_Quant.yml
// builtin_models/MobileNet_v1_0.25_160.yml
// builtin_models/MobileNet_v1_0.25_160_Quant.yml
// builtin_models/MobileNet_v1_0.25_192.yml
// builtin_models/MobileNet_v1_0.25_192_Quant.yml
// builtin_models/MobileNet_v1_0.25_224.yml
// builtin_models/MobileNet_v1_0.25_224_Quant.yml
// builtin_models/MobileNet_v1_0.5_128.yml
// builtin_models/MobileNet_v1_0.5_128_Quant.yml
// builtin_models/MobileNet_v1_0.5_160.yml
// builtin_models/MobileNet_v1_0.5_160_Quant.yml
// builtin_models/MobileNet_v1_0.5_192.yml
// builtin_models/MobileNet_v1_0.5_192_Quant.yml
// builtin_models/MobileNet_v1_0.5_224.yml
// builtin_models/MobileNet_v1_0.5_224_Quant.yml
// builtin_models/MobileNet_v1_0.75_128.yml
// builtin_models/MobileNet_v1_0.75_128_Quant.yml
// builtin_models/MobileNet_v1_0.75_160.yml
// builtin_models/MobileNet_v1_0.75_160_Quant.yml
// builtin_models/MobileNet_v1_0.75_192.yml
// builtin_models/MobileNet_v1_0.75_192_Quant.yml
// builtin_models/MobileNet_v1_0.75_224.yml
// builtin_models/MobileNet_v1_0.75_224_Quant.yml
// builtin_models/MobileNet_v1_1.0_128.yml
// builtin_models/MobileNet_v1_1.0_128_Quant.yml
// builtin_models/MobileNet_v1_1.0_160.yml
// builtin_models/MobileNet_v1_1.0_160_Quant.yml
// builtin_models/MobileNet_v1_1.0_192.yml
// builtin_models/MobileNet_v1_1.0_192_Quant.yml
// builtin_models/MobileNet_v1_1.0_224.yml
// builtin_models/MobileNet_v1_1.0_224_Quant.yml
// builtin_models/RFCN_ResNet101_COCO.yml
// builtin_models/ResNet_v1_101.yml
// builtin_models/ResNet_v1_152.yml
// builtin_models/ResNet_v1_50.yml
// builtin_models/ResNet_v2_101.yml
// builtin_models/ResNet_v2_152.yml
// builtin_models/ResNet_v2_50.yml
// builtin_models/SRGAN.yml
// builtin_models/SSDLite_MobileNet_v2_COCO.yml
// builtin_models/SSD_Inception_v2_COCO.yml
// builtin_models/SSD_MobileNet_v1_0.75_Depth_300x300_COCO14_Sync.yml
// builtin_models/SSD_MobileNet_v1_COCO.yml
// builtin_models/SSD_MobileNet_v1_FPN_Shared_Box_Predictor_640x640_COCO14_Sync.yml
// builtin_models/SSD_MobileNet_v1_PPN_Shared_Box_Predictor_300x300_COCO14_Sync.yml
// builtin_models/SSD_MobileNet_v2_COCO.yml
// builtin_models/SSD_MobileNet_v2_Quantized_300x300_COCO.yml
// builtin_models/SSD_ResNet50_FPN_Shared_Box_Predictor_640x640_COCO14_Sync.yml
// builtin_models/SSD_VGG16.yml
// builtin_models/VGG16.yml
// builtin_models/VGG19.yml
// DO NOT EDIT!
package tensorflow
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 _ai_matrix_dienYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x97\xdf\x6f\xe3\x36\x0c\xc7\xdf\xf5\x57\x10\xc8\x43\x37\xe0\x6a\x27\x6d\xda\xdc\xf9\x61\xc0\xa1\xdb\x80\x02\x5b\x1f\x6e\xf7\x6e\xd0\x32\x1d\x6b\xb1\x7e\x4c\xa2\x9b\xdc\xfe\xfa\x41\xb2\x93\x38\xb7\xdb\x2e\x43\x83\xad\x7b\x69\x65\x8a\xa4\xbe\xfc\x90\x4e\x14\x83\x9a\x0a\x78\xff\x58\xfe\x8c\xec\xd5\xae\xfc\xfe\xf1\x87\x27\xd1\x78\xd4\xb4\xb5\x7e\x53\x08\x80\xc1\xe3\x23\x99\x60\xfd\x8f\x9d\xdd\x0a\x80\x67\xf2\x41\x59\x53\xc0\x22\x5b\xdc\x88\xc9\xd3\x5c\x48\x6b\x18\x95\x21\x1f\x43\x51\xd7\xf7\xcb\xb8\x00\x58\xbb\xbe\x00\x8f\xca\x79\xfb\x2b\x49\xce\x25\x7a\xdd\x5d\x73\xca\xda\x74\x76\x5b\x24\xdf\x6b\xe9\xfa\xe4\x2e\xcf\x73\x5f\x27\x77\xe7\xe4\xfd\xb2\xa3\xe2\xbc\xc8\xd1\x7b\x8c\x3d\x43\xd9\x34\xa0\xa6\x20\xbd\x72\x9c\xea\xfd\x4e\x00\xbc\x7f\x84\x81\x1c\x44\x72\x99\xf0\xd4\x90\x27\x23\x29\x44\x39\xd7\xd0\x32\xbb\x50\xe4\xf9\x5a\x71\xdb\x57\x99\xb4\x3a\xc7\x4e\x55\x58\x61\x8e\xea\x5a\xa7\xd0\x9c\x3d\x51\xae\x31\x30\xf9\x5c\xa3\xf4\xb6\xac\xc8\xc8\x56\xa3\xdf\xe4\xa9\x21\xd3\x4c\xe8\x77\xea\x39\xb3\x7e\x9d\xbb\xba\xc9\x17\x6f\xe7\xef\xb2\xf9\xed\xfd\xea\x26\x73\x75\x23\x3a\x25\xc9\x04\x2a\xa0\x37\x9e\x02\x7b\x25\x99\x6a\x31\x03\x65\x5c\xcf\x01\xd8\x02\xb7\x04\xda\xd6\xd4\x89\xc1\x16\x65\xce\xa0\x51\x3e\xf0\xe0\x05\xfc\xc9\x11\x34\xd6\x4f\x5c\xe3\xf9\xd1\x1c\x41\x6d\x13\xb5\x13\x10\x5a\xd5\x65\xab\x42\xe9\xda\xb4\xe7\x30\xce\x0f\x93\x0f\x05\xcc\x86\x74\x47\x53\xf2\x80\xe1\xa8\xb2\xc3\x4f\xe4\x0b\xb8\x7a\x4c\x52\xf2\x7d\x9e\x0a\x59\xb6\xa5\x6b\xaf\x4e\x9c\x07\x01\x21\x96\x38\xda\xa9\x23\x4d\x66\xbf\xa3\x0c\xdf\xde\x8c\x3b\xbd\xef\x8a\x03\xb1\x70\x9b\xa1\xc6\xdf\xad\xc1\x6d\x48\x1d\x08\x6c\x3d\x65\xa9\xd1\x09\x64\x2a\x32\xe4\xc7\x9e\xef\x2d\xa8\xca\xa1\x45\x65\xad\xc8\x94\x8b\x6c\x9e\x27\x2d\x7f\x52\x9a\xf1\x8e\xbf\x46\x49\x22\x5f\x84\xd2\x3e\xcf\xeb\xa7\xf4\xb9\xd2\x73\x28\xf5\xaa\x3e\xf8\xbf\x8c\xd3\x34\xd3\x17\x19\x49\xec\xd0\xff\xe7\x90\xa6\x32\xcf\x01\xa4\x2f\x06\x48\xff\x3f\x00\xe9\xbf\x07\xf4\xe5\x17\xed\x32\x84\xa6\x99\x5e\x31\xa1\xa9\xcc\xb3\x08\x69\x0c\x9b\x17\xce\x0e\x86\xcd\x3f\xfb\xe0\x69\x3a\x8b\xff\xe2\xd0\x60\xd8\x9c\xf3\x36\x05\xfa\xad\xec\xc8\xbc\x78\x52\x8e\x79\x5e\xf1\x9c\x1c\x45\x26\x34\xb6\x67\xd7\xf3\x70\x01\x88\xdf\xf5\xa9\x5c\xdb\xa4\xf5\xb0\x27\xe0\x84\xdd\x0c\x70\x4a\xef\xd4\xf7\x08\x4a\x7c\xc6\xf8\x24\xdf\xd7\x09\xff\xf5\xd8\x38\x6f\x2b\xac\x54\xa7\x58\x51\x38\x74\x20\x16\x99\x37\xd2\xe4\xbf\xd8\x86\x35\xee\xae\x44\xe2\x10\xeb\xaa\x30\x50\x79\xa0\x7a\x69\xa8\x02\x60\xed\xd1\xb5\xa5\x43\x6e\x8b\xe1\x02\xe8\xaa\x83\x55\xb6\x24\x37\xa1\xd7\x05\xac\x2a\x5a\x2d\x1b\xb9\x90\x0b\xaa\x96\x28\x69\x7e\x87\x54\x2f\xef\x96\xab\xba\xa9\x57\xf4\xf6\x9d\x00\x50\xa1\x44\x2f\x5b\xf5\x3c\x5e\x63\x1b\xec\x02\xc1\x0c\x54\x03\xec\x7b\x7a\x13\x21\x9a\x44\x72\x5f\x13\xa8\x00\x18\x47\x26\xde\xea\xd0\xc0\x18\x9e\xa2\x87\x7e\x1e\xc5\x01\x9a\x1a\xb6\xa4\xd6\x2d\x87\xc1\x90\xd2\xd5\x64\x2c\x53\x5c\x8f\x51\x8d\xea\x28\x5d\xf8\xc3\xbe\xb7\x29\xc7\x34\x1c\xb6\x8a\x5b\x35\x48\xd9\x1f\x89\xcc\x5e\x55\x3d\x53\xea\x29\xed\xd8\x23\x18\xe2\xf8\x0b\x02\x8e\x7b\x02\x60\xa3\x4c\x5d\xc0\xc3\xc7\x0f\xa3\xc2\xf8\x1c\x4f\x32\xd4\x7b\xec\x0e\x31\xdf\x3c\x3c\x3d\xbd\x81\x0f\xf1\x4f\x96\x65\xdf\xc6\x29\xf4\xa8\x8c\x32\xeb\xb2\x46\xc6\x40\x1c\xcf\x19\x97\xd0\x07\xaa\x23\x83\x74\x65\x1d\xfd\x04\x80\x46\xa3\x1a\x0a\x5c\x62\xcf\xad\xf5\x05\x3c\xb4\x64\xd6\xf0\x93\x8a\xe9\xac\x5b\x14\xc3\xff\xbb\x42\xfc\x11\x00\x00\xff\xff\xa1\xa3\xbf\x4f\x04\x0d\x00\x00"
func ai_matrix_dienYmlBytes() ([]byte, error) {
return bindataRead(
_ai_matrix_dienYml,
"AI_Matrix_DIEN.yml",
)
}
func ai_matrix_dienYml() (*asset, error) {
bytes, err := ai_matrix_dienYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "AI_Matrix_DIEN.yml", size: 3332, mode: os.FileMode(436), modTime: time.Unix(1565663261, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _ai_matrix_densenet121Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\x4d\x6f\xe3\x36\x10\xbd\xeb\x57\x0c\x90\xc3\xb6\x40\x22\x59\x1f\x76\x24\x1e\x0a\x6c\x5d\xb4\x1b\xa0\xf5\x61\xb1\xc0\x1e\x16\x85\x30\xa2\x46\x16\x1b\x89\x14\xc8\x51\x9c\xec\xaf\x2f\x48\x29\xb6\x03\x6c\xd1\x5c\x04\x72\xf8\xe6\xcd\xe3\xe3\x90\xd2\x38\x92\x80\x8f\x0f\xf5\x5f\xc8\x56\x3d\xd7\xbf\x91\x76\xa4\x89\xd3\x2c\x8d\x3a\x8b\x23\x9d\x8c\x7d\x14\x11\xc0\x02\xfc\x42\xda\x19\xfb\xfb\x60\x4e\x11\xc0\x13\x59\xa7\x8c\x16\x90\xc6\x69\x16\x5d\xcd\x36\x91\x34\x9a\x51\x69\xb2\x3e\x15\xc7\x76\x57\xf8\x01\xc0\x71\x9a\x05\x58\x54\x93\x35\xff\x90\xe4\x44\xa2\x1d\x87\x3b\x0e\xac\xdd\x60\x4e\x22\x60\xef\xe4\x34\x07\xb8\x7c\x1f\xfc\x18\xe0\xd3\x24\x77\xc5\x40\xe2\x7d\x99\x2b\x7a\xcd\x7d\x87\xb2\xeb\x84\x96\x9c\xb4\x6a\xe2\xb0\xdf\x5f\x22\x80\x8f\x0f\xb0\x18\x08\x57\x06\xc6\x91\xa5\x8e\x2c\x69\x49\xce\xab\xba\x83\x9e\x79\x72\x22\x49\x8e\x8a\xfb\xb9\x89\xa5\x19\x13\x1c\x54\x83\x0d\x26\xa8\xee\xc6\xc0\x90\xb0\x25\x4a\x46\x74\x4c\x36\x19\x51\x5a\x53\x37\xa4\x65\x3f\xa2\x7d\x4c\xf6\x87\x43\xfd\xe5\xac\xe9\x0d\x27\xda\x67\xf5\x14\x1b\x7b\x4c\xa6\xb6\x4b\xd2\xdd\xa6\x8c\x37\xbb\xaa\xca\xe3\xa9\xed\xa2\x41\x49\xaf\x4b\xc0\xac\x2d\x39\xb6\x4a\x32\xb5\xd1\x0d\x28\x3d\xcd\xec\x80\x0d\x70\x4f\x30\x9a\x96\x86\x68\x89\x79\xc1\x37\xd0\x29\xeb\x78\x41\x01\xbf\x4c\x04\x9d\xb1\x57\x50\x5f\xdf\x87\x05\xa8\x11\x8f\x14\x8c\xbc\x81\x2b\x77\xc0\x74\x01\x7e\xc5\x13\x40\x6f\x0c\xf4\x80\xa5\xc4\x85\x65\x42\xdf\x7c\x4c\xd6\x09\xb8\x59\x4a\x5f\x42\x01\x01\x40\x03\x8d\xa4\xb9\x5e\x14\x74\x83\x41\xce\xb3\x75\x2d\xf0\xd5\x03\xbe\x90\x15\xf0\xe1\xc1\xf3\xba\x0f\xeb\xda\x80\x2f\x66\x66\x01\x9f\xbe\xee\xd7\x88\x34\x83\xb1\xb5\xdf\x93\x80\xcf\x7f\xfc\xba\x46\x5b\x35\x92\xf6\x3d\xed\x04\x7c\xcb\x6f\x21\xcb\x8a\xf0\xf9\x7b\x5d\x1f\x09\xb5\x80\x6f\x69\x96\xc7\xbb\xf2\x16\xd2\x74\x17\xdf\xdf\x57\xb7\x90\x6e\xf2\xb8\xca\xab\x57\x98\x93\x38\x90\x80\x6d\x19\x97\x59\x11\x99\x99\xa7\x99\x17\x77\xfd\xc6\xc3\xd6\x56\x97\x96\xb5\x08\x56\x4f\xe5\x80\xce\xa9\x4e\x49\xf4\x3e\x85\x0c\xfc\x91\xb9\x4b\xda\xc5\x9f\xe8\x07\xfe\xae\x98\x01\x9b\x70\x6c\xff\x6f\xef\x7f\x9b\x3b\x59\xd3\x60\xa3\x06\xc5\x8a\xdc\xd9\xe2\xc1\x1c\x15\xaf\x16\x77\x84\x3c\x5b\x72\xf5\x6c\x07\x71\x6e\x50\x97\xc7\x38\xe2\x77\xa3\xf1\xe4\x42\xeb\x3b\x36\x96\xe2\x70\xd1\x42\xdf\xba\x17\xed\x88\x5d\x12\xba\x40\x13\xaf\x81\x98\x9f\xf9\x2d\xad\xec\x49\x3e\xba\x79\x14\x50\xb4\x59\x5e\x34\xdb\x32\xcf\x51\x62\x51\x54\x59\xb9\xd9\x6d\x31\x2d\x37\x6d\x93\x6f\xd2\x1d\x46\xa1\x4f\xbd\xdb\x0d\x3a\x7a\xab\xe7\x3b\x69\xd3\x9a\x50\xd9\x92\x34\xb6\x4d\xf2\x6c\x57\x55\x45\x91\x74\x6a\x20\x97\x44\x00\x47\x8b\x53\x5f\x4f\xc8\xbd\xb8\xbe\xd8\x77\x87\x4f\x5f\xf7\xf1\xd4\x9c\x11\x17\x41\x59\x53\xca\xb4\xc2\xa2\x6d\xa8\x2c\xb0\x23\xd9\x65\xd9\x76\x5b\x79\x99\x5d\x51\xca\x32\x02\x50\xae\x46\x2b\x7b\xf5\xb4\x3e\x55\x1d\x0e\x8e\xe0\x06\x54\x07\x6c\x67\xba\xf5\xe7\xa5\xc3\xa1\xbd\x6a\x06\xe5\x00\xc1\x0f\xd8\x00\x6a\x58\xd3\xd7\xeb\xe6\x91\x17\xa1\x80\xba\x85\x13\xa9\x63\xcf\x6e\x09\x04\xba\x96\xb4\x61\xf2\xe3\x35\xcb\xef\x31\x3c\xea\xee\xb5\x8d\x02\xc7\x75\x3a\x9c\x14\xf7\x6a\x91\xf2\x5a\x12\x99\xad\x6a\x66\xa6\xd0\x38\xf4\xcc\x16\x41\x13\xfb\xbf\x04\x5c\xd6\x22\x80\x47\xa5\x5b\x01\xfb\xc3\x61\x55\xe8\xe7\xbe\x92\xa6\xd9\xe2\x70\xce\xf9\x69\x7f\x38\xdc\xc2\x67\xff\x89\xe3\xf8\x67\xdf\xfb\x16\x95\x56\xfa\x58\xb7\xc8\xe8\x88\x05\x84\xdb\x7b\x20\xf6\x4f\xcb\x12\x83\xd9\x51\xeb\xcd\x08\xcf\xd1\x9a\x10\x01\x8c\xa8\x55\x47\x8e\x6b\x9c\xb9\x37\x56\xc0\xbe\x27\x7d\x84\x3f\x95\xe7\x35\x53\x2a\xe0\x3e\x8f\xb3\x6a\x99\x6d\x05\x54\x69\x5c\x6c\xa3\x7f\x03\x00\x00\xff\xff\x9a\x4b\xe8\x3a\x04\x07\x00\x00"
func ai_matrix_densenet121YmlBytes() ([]byte, error) {
return bindataRead(
_ai_matrix_densenet121Yml,
"AI_Matrix_Densenet121.yml",
)
}
func ai_matrix_densenet121Yml() (*asset, error) {
bytes, err := ai_matrix_densenet121YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "AI_Matrix_Densenet121.yml", size: 1796, mode: os.FileMode(436), modTime: time.Unix(1562617279, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _ai_matrix_googlenetYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\xc1\x6e\xe3\x36\x10\xbd\xeb\x2b\x06\xc8\x61\x5b\x20\x96\x2c\x59\x71\x6c\x1e\x0a\x6c\x0d\x74\x37\x40\xeb\xc3\x62\x81\x3d\x14\x85\x30\xa2\x46\x12\x1b\x8a\x14\xc8\x51\x9c\xec\xd7\x17\xa4\x14\xdb\x01\xb6\xd8\x5c\x04\x71\xf8\xde\xcc\x9b\xc7\x21\x0d\x0e\x24\xe0\xe3\x43\xf5\x17\xb2\x53\xcf\xd5\x27\x6b\x3b\x4d\x47\xe2\xa4\x75\x38\xd0\xc9\xba\x47\x91\x00\xcc\xb0\xaf\x64\xbc\x75\x7f\x68\x7b\x4a\x00\x9e\xc8\x79\x65\x8d\x80\x3c\xcd\x8b\xe4\x6a\xb5\x4e\xa4\x35\x8c\xca\x90\x0b\x54\x1c\x9a\x6d\x19\x7e\x00\xba\x71\x12\xe0\x50\x8d\xce\xfe\x4b\x92\x33\x89\x6e\xd0\x2b\x8e\x59\x5b\x6d\x4f\x22\x62\x57\x72\x9c\x22\x5c\xbe\x0f\xde\x45\xf8\x38\xca\x6d\xa9\x49\xbc\x8f\xb9\xa0\x17\xee\x3b\x94\x5d\x13\x1a\xf2\xd2\xa9\x91\x63\xbf\xbf\x25\x00\x1f\x1f\x60\xb6\x0f\xce\xf6\xa5\x89\xa3\x96\x1c\x19\x49\x3e\x68\x5a\x41\xcf\x3c\x7a\x91\x65\x9d\xe2\x7e\xaa\x53\x69\x87\x0c\xb5\xaa\xb1\xc6\x0c\xd5\x6a\x88\xfc\x8c\x1d\x51\x36\xa0\x67\x72\xd9\x80\xd2\xd9\xaa\x26\x23\xfb\x01\xdd\x63\x76\x38\x1e\xab\xaf\x67\x45\x6f\x72\xa2\x7b\x56\x4f\xa9\x75\x5d\x86\xb5\xcf\xf2\x72\xbd\x4f\xcb\x5d\x59\x24\x5a\x49\x32\x9e\x04\x4c\xc6\x91\x67\xa7\x24\x53\x93\xdc\x80\x32\xe3\xc4\x1e\xd8\x02\xf7\x04\x83\x6d\x48\x27\x73\x2c\x68\xbd\x81\x56\x39\xcf\x33\x0a\xf8\x65\x24\x68\xad\xbb\x82\x86\xd2\x21\x2c\x40\x0d\xd8\x51\x74\xf0\x06\xae\x6c\x01\xdb\x46\xf8\x55\x9e\x08\x7a\xe3\x5c\x00\xcc\x25\x2e\x59\x46\x0c\x53\xc7\xe4\xbc\x80\x9b\xb9\xf4\x25\x14\x11\x00\xa4\x69\x20\xc3\xd5\xac\xa0\xd5\x16\x79\x53\x2c\x7b\x31\x5f\xa5\xf1\x85\x9c\x80\x0f\x0f\x21\xaf\xff\xb0\xec\x69\x7c\xb1\x13\x0b\x38\x7c\xfe\xb6\x44\xa4\xd5\xd6\x55\xa1\x27\x01\x5f\x3e\xfd\xbe\x44\x1b\x35\x90\x09\xc3\xec\x05\xfc\xbd\xb9\x85\xa2\x28\xe3\xe7\x9f\xc4\x4e\x3c\x4e\x3c\x5b\x14\xd4\x47\x7d\x4b\xab\xf3\x5e\x02\x8b\x31\x52\xa3\xf7\xaa\x55\x12\x43\xb3\x91\x81\x3f\x72\x68\xa6\x5d\x9a\x4c\x7e\x60\xd2\x82\xd1\x58\x47\xef\x7f\xee\xd1\xff\x3b\x34\x3a\x5b\x63\xad\xb4\x62\x45\xfe\xec\x93\xb6\x9d\xe2\xc5\xa7\x96\x90\x27\x47\xbe\x9a\x9c\x16\xe7\x01\xf3\x9b\x14\x07\xfc\x6e\x0d\x9e\x7c\x1c\x5d\xcf\xd6\x51\x1a\xaf\x49\x9c\x3b\xff\x62\x3c\xb1\xcf\xe2\x51\x1a\xe2\x25\x90\xf2\x33\xbf\x4d\x2b\x7b\x92\x8f\x7e\x1a\x04\x94\x4d\xb1\x29\xeb\xbb\xdd\x66\x83\x12\xcb\x72\x5f\xec\xd6\xdb\x3b\xcc\x77\xeb\xa6\xde\xac\xf3\x2d\x26\x71\xd8\x82\xdb\x35\x7a\x7a\xab\xe7\x3b\x19\xdb\xd8\x58\xd9\x91\xb4\xae\xc9\x36\xc5\x76\xbf\x2f\xcb\xac\x55\x9a\x7c\x96\x00\x74\x0e\xc7\xbe\x1a\x91\x7b\x71\xb9\x96\xab\xe3\xe1\xdb\xe7\x74\xac\xcf\xfb\x17\x39\x5b\x6a\xe9\x8e\xea\xa2\xd8\xd7\x6d\x93\x37\x39\x15\x3b\xd9\x14\xb2\x2c\xda\x7d\x71\x9f\x6f\xef\x13\x00\xe5\x2b\x74\xb2\x57\x4f\xcb\x33\xd3\xa2\xf6\x04\x37\xa0\x5a\x60\x37\xd1\x6d\x38\x2d\x13\x8f\xec\x55\x31\x28\x0f\x08\xe1\x87\x2d\xa0\x81\x85\xbe\xdc\x98\x80\xbc\xc8\x04\x34\x0d\x9c\x48\x75\x3d\xfb\x39\x10\xd3\x35\x64\x2c\x53\xf8\x5f\x58\xa1\xc3\xf8\x20\xfb\xd7\x21\x8a\x39\xae\xe9\x70\x52\xdc\xab\x59\xca\x6b\x49\x64\x76\xaa\x9e\x98\xe2\xd8\xd0\x33\x3b\x04\x43\x1c\x5e\x78\xb8\xec\x25\x00\x8f\xca\x34\x02\x0e\xc7\xe3\xa2\x30\xac\x43\x25\x43\x93\x43\x7d\xe6\xfc\x72\x38\x1e\x6f\xe1\x4b\xf8\xa4\x69\xfa\x6b\x98\x7c\x87\xca\x28\xd3\x55\x0d\x32\x7a\x62\x01\xf1\x02\x1e\x89\xc3\xeb\x30\xc7\x60\xf2\xd4\x04\x33\xe2\x8b\xb2\x10\x12\x80\x01\x8d\x6a\xc9\x73\x85\x13\xf7\xd6\x09\x38\xf4\x64\x3a\xf8\x53\x85\xbc\x76\xcc\x05\xdc\xaf\xd3\x75\x3e\xaf\xee\x04\xec\xf6\x69\xb1\x4f\xfe\x0b\x00\x00\xff\xff\x38\x2c\x4b\xa7\xbe\x06\x00\x00"
func ai_matrix_googlenetYmlBytes() ([]byte, error) {
return bindataRead(
_ai_matrix_googlenetYml,
"AI_Matrix_GoogleNet.yml",
)
}
func ai_matrix_googlenetYml() (*asset, error) {
bytes, err := ai_matrix_googlenetYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "AI_Matrix_GoogleNet.yml", size: 1726, mode: os.FileMode(436), modTime: time.Unix(1562677607, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _ai_matrix_resnet152Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\xc1\x6e\xe3\x36\x10\xbd\xeb\x2b\x06\xc8\x61\x5b\x20\x91\x6c\x49\x76\x6c\x1e\x0a\x6c\x0d\xb4\x1b\xa0\xf5\x21\x58\x60\x0f\x45\x21\x8c\xa8\x91\xc4\x86\x22\x05\x72\x14\x27\xfb\xf5\x05\x29\xc5\x76\x80\x2d\x9a\x8b\x20\x0e\xdf\x9b\x79\xf3\x38\xa4\xc1\x81\x04\x7c\x7e\xa8\xfe\x44\x76\xea\xa5\x7a\x24\x7f\x24\x5e\x6f\xf2\xa4\x75\x38\xd0\xc9\xba\x27\x91\x00\xcc\xb0\xaf\x64\xbc\x75\xbf\x69\x7b\x4a\x00\x9e\xc9\x79\x65\x8d\x80\x75\xba\xce\x93\xab\xd5\x2a\x91\xd6\x30\x2a\x43\x2e\x50\x71\x68\xb6\x65\xf8\x01\xe8\xc6\x49\x80\x43\x35\x3a\xfb\x0f\x49\xce\x24\xba\x41\xdf\x71\xcc\xda\x6a\x7b\x12\x11\x7b\x27\xc7\x29\xc2\xe5\xc7\xe0\x5d\x84\x8f\xa3\xdc\x96\x9a\xc4\xc7\x98\x0b\x7a\xe1\x7e\x40\xd9\x35\xa1\x21\x2f\x9d\x1a\x39\xf6\xfb\x4b\x02\xf0\xf9\x01\x66\xfb\xe0\x6c\x5f\x9a\x38\x6a\xc9\x91\x91\xe4\x83\xa6\x3b\xe8\x99\x47\x2f\xb2\xac\x53\xdc\x4f\x75\x2a\xed\x90\xa1\x56\x35\xd6\x98\xa1\xba\x1b\x22\x3f\x63\x47\x94\x0d\xe8\x99\x5c\x36\xa0\x74\xb6\xaa\xc9\xc8\x7e\x40\xf7\x94\x1d\x8e\xc7\xea\xeb\x59\xd1\xbb\x9c\xe8\x5e\xd4\x73\x6a\x5d\x97\x61\xed\xb3\x75\xb9\xda\xa7\xe5\xae\xcc\x13\xad\x24\x19\x4f\x02\x26\xe3\xc8\xb3\x53\x92\xa9\x49\x6e\x40\x99\x71\x62\x0f\x6c\x81\x7b\x82\xc1\x36\xa4\x93\x39\x16\xb4\xde\x40\xab\x9c\xe7\x19\x05\xfc\x3a\x12\xb4\xd6\x5d\x41\x43\xe9\x10\x16\xa0\x06\xec\x28\x3a\x78\x03\x57\xb6\x80\x6d\x23\xfc\x2a\x4f\x04\xbd\x73\x2e\x00\xe6\x12\x97\x2c\x23\x86\xa9\x63\x72\x5e\xc0\xcd\x5c\xfa\x12\x8a\x08\x00\xd2\x34\x90\xe1\x6a\x56\xd0\x6a\x8b\x5c\xe4\xcb\x5e\xcc\x57\x69\x7c\x25\x27\xe0\xd3\x43\xc8\xeb\x3f\x2d\x7b\x1a\x5f\xed\xc4\x02\x0e\x5f\xbe\x2d\x11\x69\xb5\x75\x55\xe8\x49\xc0\xe3\xef\xbf\x2e\xd1\x46\x0d\x64\xc2\x30\x7b\x01\x7f\x15\xb7\x90\xe7\x65\xfc\xfc\x9d\xd8\x89\xc7\x89\x67\x8b\x82\xfa\xa8\x6f\x69\x75\xde\x4b\x60\x31\x46\x6a\xf4\x5e\xb5\x4a\x62\x68\x36\x32\xf0\x47\x0e\xcd\xb4\x4b\x93\xc9\x0f\x4c\x5a\x30\x1a\xeb\xe8\xfd\xff\x7b\xf4\xdf\x0e\x8d\xce\xd6\x58\x2b\xad\x58\x91\x3f\xfb\xa4\x6d\xa7\x78\xf1\xa9\x25\xe4\xc9\x91\xaf\x26\xa7\xc5\x79\xc0\x7c\x91\xe2\x80\xdf\xad\xc1\x93\x8f\xa3\xeb\xd9\x3a\x4a\xe3\x35\x89\x73\xe7\x5f\x8d\x27\xf6\x59\x3c\x4a\x43\xbc\x04\x52\x7e\xe1\xf7\x69\x65\x4f\xf2\xc9\x4f\x83\x80\xb2\xc9\x8b\xb2\xde\xec\x8a\x02\x25\x96\xe5\x3e\xdf\xad\xb6\x1b\x5c\xef\x56\x4d\x5d\xac\xd6\x5b\x4c\xe2\xb0\x05\xb7\x6b\xf4\xf4\x5e\xcf\x77\x32\xb6\xb1\xb1\xb2\x23\x69\x5d\x93\x15\xf9\x76\xbf\x2f\xcb\xac\x55\x9a\x7c\x96\x00\x74\x0e\xc7\xbe\x1a\x91\x7b\x11\xae\xa5\x89\xd7\xf2\xee\x78\xf8\xf6\x25\x1d\xeb\xf3\xfe\x45\x4e\x5b\xc8\xd5\x6a\x93\x37\x94\xdf\x53\xdd\x12\xed\xee\xf7\x9b\x66\xb5\xbe\xdf\x6c\xb6\xdb\xfb\x36\x2f\x12\x00\xe5\x2b\x74\xb2\x57\xcf\xcb\x33\xd3\xa2\xf6\x04\x37\xa0\x5a\x60\x37\xd1\x6d\x38\x2d\x13\x8f\xec\x4d\x31\x28\x0f\x08\xe1\x87\x2d\xa0\x81\x85\xbe\xdc\x98\x80\xbc\xc8\x04\x34\x0d\x9c\x48\x75\x3d\xfb\x39\x10\xd3\x35\x64\x2c\x53\xf8\x5f\x58\xa1\xc3\xf8\x20\xfb\xb7\x21\x8a\x39\xae\xe9\x70\x52\xdc\xab\x59\xca\x5b\x49\x64\x76\xaa\x9e\x98\xe2\xd8\xd0\x0b\x3b\x04\x43\x1c\x5e\x78\xb8\xec\x25\x00\x4f\xca\x34\x02\x0e\xc7\xe3\xa2\x30\xac\x43\x25\x43\x93\x43\x7d\xe6\xfc\x74\x38\x1e\x6f\xe1\x31\x7c\xd2\x34\xfd\x39\x4c\xbe\x43\x65\x94\xe9\xaa\x06\x19\x3d\xb1\x80\x78\x01\x8f\xc4\xe1\x75\x98\x63\x30\x79\x6a\x82\x19\xf1\x45\x59\x08\x09\xc0\x80\x46\xb5\xe4\xb9\xc2\x89\x7b\xeb\x04\x1c\x7a\x32\x1d\xfc\xa1\x42\x5e\x3b\xae\x05\xdc\x6f\xd2\x7d\x31\xaf\x36\x02\xf6\x45\xba\x5a\x25\xff\x06\x00\x00\xff\xff\xf7\x40\x0c\x5b\xbe\x06\x00\x00"
func ai_matrix_resnet152YmlBytes() ([]byte, error) {
return bindataRead(
_ai_matrix_resnet152Yml,
"AI_Matrix_ResNet152.yml",
)
}
func ai_matrix_resnet152Yml() (*asset, error) {
bytes, err := ai_matrix_resnet152YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "AI_Matrix_ResNet152.yml", size: 1726, mode: os.FileMode(436), modTime: time.Unix(1562678288, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _ai_matrix_resnet50Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4d\x6f\xe3\x36\x10\xbd\xeb\x57\x0c\x90\xc3\xb6\x40\xa2\x0f\x5b\x76\x6c\x1e\x0a\x6c\x0d\xb4\x1b\xa0\xf5\x21\x58\x60\x0f\x45\x21\x8c\xa8\x91\xc4\x86\x22\x05\x72\x14\x27\xfb\xeb\x0b\x52\x8a\xed\x00\x5b\x34\x17\x41\x1c\xbe\x37\xf3\xe6\x71\x48\x83\x03\x09\xf8\xfc\x50\xfd\x89\xec\xd4\x4b\xf5\x48\xfe\x48\xbc\xc9\x93\xd6\xe1\x40\x27\xeb\x9e\x44\x02\x30\xa3\xbe\x92\xf1\xd6\xfd\xa6\xed\x29\x01\x78\x26\xe7\x95\x35\x02\x8a\xb4\x58\x25\x57\xab\x3c\x91\xd6\x30\x2a\x43\x2e\x50\x71\x68\xb6\x65\xf8\x01\xe8\xc6\x49\x80\x43\x35\x3a\xfb\x0f\x49\xce\x24\xba\x41\xdf\x71\xcc\xda\x6a\x7b\x12\x11\x7b\x27\xc7\x29\xc2\xe5\xc7\xe0\x5d\x84\x8f\xa3\xdc\x96\x9a\xc4\xc7\x98\x0b\x7a\xe1\x7e\x40\xd9\x35\xa1\x21\x2f\x9d\x1a\x39\xf6\xfb\x4b\x02\xf0\xf9\x01\x66\xf7\xe0\xcd\xbd\x34\x71\xd4\x92\x23\x23\xc9\x07\x49\x77\xd0\x33\x8f\x5e\x64\x59\xa7\xb8\x9f\xea\x54\xda\x21\x43\xad\x6a\xac\x31\x43\x75\x37\x44\x7a\xc6\x8e\x28\x1b\xd0\x33\xb9\x6c\x40\xe9\x6c\x55\x93\x91\xfd\x80\xee\x29\x3b\x1c\x8f\xd5\xd7\xb3\xa0\x77\x39\xd1\xbd\xa8\xe7\xd4\xba\x2e\xc3\xda\x67\x45\x99\xef\xd3\x72\x57\xae\x12\xad\x24\x19\x4f\x02\x26\xe3\xc8\xb3\x53\x92\xa9\x49\x6e\x40\x99\x71\x62\x0f\x6c\x81\x7b\x82\xc1\x36\xa4\x93\x39\x16\xb4\xde\x40\xab\x9c\xe7\x19\x05\xfc\x3a\x12\xb4\xd6\x5d\x41\x43\xe9\x10\x16\xa0\x06\xec\x28\x1a\x78\x03\x57\xae\x80\x6d\x23\xfc\x2a\x4f\x04\xbd\x33\x2e\x00\xe6\x12\x97\x2c\x23\x86\xa1\x63\x72\x5e\xc0\xcd\x5c\xfa\x12\x8a\x08\x00\xd2\x34\x90\xe1\x6a\x56\xd0\x6a\x8b\xbc\x5e\x2d\x7b\x31\x5f\xa5\xf1\x95\x9c\x80\x4f\x0f\x21\xaf\xff\xb4\xec\x69\x7c\xb5\x13\x0b\x38\x7c\xf9\xb6\x44\xa4\xd5\xd6\x55\xa1\x27\x01\x8f\xbf\xff\xba\x44\x1b\x35\x90\x09\xb3\xec\x05\xfc\xb5\xbe\x85\xd5\xaa\x8c\x9f\xbf\x93\xc4\x4e\x3c\x4e\x3c\x7b\x14\xe4\x47\x81\x4b\xaf\xf3\x5e\x02\x8b\x33\x52\xa3\xf7\xaa\x55\x12\x43\xb7\x91\x81\x3f\xb2\x68\xa6\x5d\xba\x4c\x7e\xe0\xd2\x82\xd1\x58\x47\xf3\xff\xdf\xa4\xff\xb6\x68\x74\xb6\xc6\x5a\x69\xc5\x8a\xfc\xd9\x28\x6d\x3b\xc5\x8b\x51\x2d\x21\x4f\x8e\x7c\x35\x39\x2d\xce\x13\xe6\xd7\x29\x0e\xf8\xdd\x1a\x3c\xf9\x38\xbb\x9e\xad\xa3\x34\x5e\x93\x38\x78\xfe\xd5\x78\x62\x9f\xc5\xb3\x34\xc4\x4b\x20\xe5\x17\x7e\x9f\x56\xf6\x24\x9f\xfc\x34\x08\x28\x9b\xd5\xba\xac\x37\xbb\xf5\x1a\x25\x96\xe5\x7e\xb5\xcb\xb7\x1b\x2c\x76\x79\x53\xaf\xf3\x62\x8b\x49\x9c\xb6\xe0\x76\x8d\x9e\xde\xeb\xf9\x4e\xc6\x36\x36\x56\x76\x24\xad\x6b\xb2\xf5\x6a\xbb\xdf\x97\x65\xd6\x2a\x4d\x3e\x4b\x00\x3a\x87\x63\x5f\x8d\xc8\xbd\x08\xd7\xd2\x84\x6b\x79\x77\x3c\x7c\xfb\x92\x8e\xf5\x79\xfb\xa2\x66\x27\x8b\xfb\x62\xb3\x5b\xad\x36\xb4\xbf\xdf\x62\x2d\x73\x99\x6f\x8b\x3c\xa7\x7c\xbf\x91\x45\xb1\x4e\x00\x94\xaf\xd0\xc9\x5e\x3d\x2f\xaf\x4c\x8b\xda\x13\xdc\x80\x6a\x81\xdd\x44\xb7\xe1\xb0\x4c\x3c\xb1\x37\xc1\xa0\x3c\x20\x84\x1f\xb6\x80\x06\x16\xfa\x72\x63\x02\xf2\xa2\x12\xd0\x34\x70\x22\xd5\xf5\xec\xe7\x40\x4c\xd7\x90\xb1\x4c\xe1\x7f\x61\x85\x06\xe3\x7b\xec\xdf\x66\x28\xe6\xb8\xa6\xc3\x49\x71\xaf\x66\x29\x6f\x25\x91\xd9\xa9\x7a\x62\x8a\x53\x43\x2f\xec\x10\x0c\x71\x78\xe0\xe1\xb2\x97\x00\x3c\x29\xd3\x08\x38\x1c\x8f\x8b\xc2\xb0\x0e\x95\x0c\x4d\x0e\xf5\x99\xf3\xd3\xe1\x78\xbc\x85\xc7\xf0\x49\xd3\xf4\xe7\x30\xf8\x0e\x95\x51\xa6\xab\x1a\x64\xf4\xc4\x02\xe2\x05\x3c\x12\x87\xd7\x61\x8e\xc1\xe4\xa9\x09\x66\xc4\x17\x65\x21\x24\x00\x03\x1a\xd5\x92\xe7\x0a\x27\xee\xad\x13\x70\xe8\xc9\x74\xf0\x87\x0a\x79\xed\x58\x08\xb8\x2f\xd3\xf5\x6e\x5e\x6d\x04\xec\x8b\x74\x7f\x9f\xfc\x1b\x00\x00\xff\xff\xaa\xc3\x3b\x56\xbc\x06\x00\x00"
func ai_matrix_resnet50YmlBytes() ([]byte, error) {
return bindataRead(
_ai_matrix_resnet50Yml,
"AI_Matrix_ResNet50.yml",
)
}
func ai_matrix_resnet50Yml() (*asset, error) {
bytes, err := ai_matrix_resnet50YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "AI_Matrix_ResNet50.yml", size: 1724, mode: os.FileMode(436), modTime: time.Unix(1562677607, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _bvlc_alexnet_caffeYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x5f\x8f\xdb\x36\x12\x7f\xd7\xa7\x18\xc0\x08\xb2\xb9\xb3\x24\x4b\xb6\x77\x1d\x1d\x70\xb8\xcb\xde\x9f\x16\x68\xf7\x21\x4d\xdb\x87\x20\x30\x46\xd4\xc8\x62\x96\x22\x05\x72\x64\xaf\xf7\xd3\x17\xa4\x24\xcb\x8b\xa4\xe8\xbe\xd8\xd4\xfc\xe3\xcc\x8f\xc3\xdf\x50\x63\x4b\x05\x7c\xf8\xed\xa7\xfb\xfd\xbf\x15\x3d\x3d\x10\xef\xef\xb1\xae\x09\x16\xe0\x55\x60\x6a\x38\x9b\xde\x42\x6b\x2a\x52\x51\x6d\xb1\xa5\x93\xb1\x8f\x45\x04\x30\xb8\x7e\x22\xed\x8c\xfd\x9f\x32\x27\x58\xc0\x45\x0f\xb5\xb1\xc0\x0d\x8d\x7e\x00\x47\xb2\x4e\x1a\x5d\x40\x96\x64\xf9\x0b\xcb\x51\x03\xc2\x68\xb6\x28\x35\x47\x57\xb6\x2b\x58\x5c\x0c\xa4\xae\x8d\x6d\x91\x87\x35\x38\x6a\x51\xb3\x14\x17\xfd\xa0\x8d\x7c\x1c\x94\x9a\x6c\x01\x0b\xb8\x7c\x38\xe8\x1d\x55\xc0\x06\x3a\xb2\xde\x72\xc8\x0c\x3a\x4b\x95\x14\x3e\x66\x04\xb0\x80\xb6\x57\x2c\x3b\x45\xd0\x29\x64\x6f\xe6\x40\xa0\x86\x92\xc0\x75\x24\x64\x2d\xa9\x8a\x00\xb0\xad\x6e\x37\x1e\x02\x80\x43\xd7\x17\x60\x51\x76\xd6\x7c\x25\xc1\xa9\x40\xdb\xaa\x98\x03\x28\xb5\x32\xa7\x22\xd8\xc6\xa2\xeb\x83\xb9\x78\x9d\xf9\x21\x98\x77\x9d\xb8\xdd\x28\x2a\x5e\xe7\x39\x5a\x8f\xbe\xaf\xc8\xec\xda\xa1\x22\x27\xac\xec\x38\xc0\xfe\xcf\x08\xe0\x53\x23\xdd\x08\x91\x74\x80\x60\xa9\x53\x52\x0c\xe0\x9b\x7a\x3e\x5a\x18\x3c\x4b\xaa\xfc\x99\x78\xf1\xd8\x46\xd0\xf5\xe5\xe4\x91\x44\x00\xff\x91\x75\x4d\x96\xb4\x20\x57\x80\x36\x0c\xe1\xb0\xa5\x3e\xc0\x49\x72\x13\x3c\x2d\x29\x79\x68\xd8\xcb\x2a\x64\x8c\xb1\x3f\xb4\xa4\x39\x84\xf8\x47\x04\x20\xb5\x64\x89\x4a\x3e\x7b\x0b\x6d\x74\xfc\x4c\xd6\x40\x29\xd1\x91\xf3\x27\xbb\x4a\x32\x90\xda\x31\x61\xe5\x73\xcc\xe0\xa6\x36\xbd\xae\x40\x93\x20\xe7\xd0\x9e\x87\xae\x1c\xf7\x5d\x02\xba\x39\xe4\x50\x19\x1b\xc8\xe0\x80\x47\x82\x5a\x21\x83\x32\xce\xbd\x4b\x02\x1a\x04\x65\xaf\x2b\x45\xd5\x0c\x8a\x4f\x59\x32\xd9\xc1\x75\x7d\xbb\x5a\xae\x56\x2b\x70\x1a\x3b\xd7\x18\x4e\x06\x27\x72\x0c\x47\x54\xb2\xc2\xb1\xc7\xc6\xf6\x43\x2d\x08\xaa\xde\xfa\x52\x66\x24\x7c\x46\x73\xc4\xed\x2e\x44\x0c\xf8\xcc\x31\x00\x85\xe8\x2d\x8a\x73\x04\xb0\xbd\x4b\xf2\xed\xee\x0d\xa0\xae\x42\xb2\x90\x25\xbb\xf5\xfb\xcd\x2e\xb9\x3e\x3f\x53\xfa\x2b\xe0\x0f\x91\x4d\x17\x67\x17\x7f\xef\x9d\x0d\xbe\x18\x41\x50\x6e\x67\xe5\x6e\x95\xe4\x6f\xc0\x0c\x67\x7a\xb5\xbb\x23\x5e\x42\xef\x7c\xba\x5f\x7b\xc7\x41\x2d\x48\x33\x59\x10\xd6\x74\x1e\xad\x9b\x5f\x83\xda\x6b\xf0\x48\x16\x0f\x81\x46\xb2\x55\x30\x70\x4b\xb8\xd9\xc0\xdf\x21\x1b\xbd\xde\xc1\xdf\x20\x87\x56\x5a\x6b\xec\x12\x5c\x63\x7a\x55\x8d\x29\xfb\x9b\x06\xa5\x64\x68\xe4\xa1\x21\x7b\xc9\x2d\x79\xf7\xb2\x41\x3d\x6c\x01\x43\xaa\xa0\x3c\xc3\x7f\x8f\xa8\xe1\x97\x86\x54\x83\x2d\x59\xf8\x97\x9b\x96\x91\xa5\xb9\x05\x17\x30\x7f\x05\x5a\xc0\xce\xb3\x44\x0a\x27\x2a\x9d\x64\xf2\x4b\x62\x91\x24\x53\x87\x4f\x25\x4d\x8c\x16\x43\xc3\xdc\xb9\x22\x4d\x0f\x92\x9b\xbe\x4c\x84\x69\x53\x4f\xa4\x69\x20\xd0\x94\x2d\x51\xda\xa2\x63\xb2\x69\xf0\x71\x69\x79\x54\x62\x8f\x8a\x9e\x34\xf1\x2b\x22\x9c\xe4\xa3\x4c\x7f\x0e\xae\xf1\x54\x7b\x6c\x74\xfc\x63\x8b\x07\x7a\x20\x8e\xf3\x55\x96\xc7\x47\x9c\xb3\x29\xd2\x74\xa8\x23\xd1\xb2\x73\x89\x10\xc3\x67\xba\xd9\xe5\x9b\x58\x7a\x37\x4d\x1c\x0b\x85\xce\xc9\x7a\xbc\x9c\xb1\xef\xaf\xb8\x22\xea\x62\x61\xf4\xd1\xa8\xde\x4b\x51\xc5\x9a\x7a\x1b\xfe\xd8\xf3\xb4\x4b\xba\xaa\x8e\x16\xa0\xa4\x20\xed\xe8\x05\x09\x44\xa3\xb0\x80\x5e\x5b\x72\x6c\xa5\x60\xaa\xa2\x05\x48\xdd\xf5\x1c\xe0\x9d\x6d\x07\x59\x11\xe8\xb6\x96\xd6\xf1\x60\x05\x7c\xee\xe8\x9b\xb1\x11\x07\x71\x01\x21\xf7\x40\x6b\x0b\xb8\xe2\xaa\x29\x8b\xab\x38\xc1\xe8\x05\x9d\x85\x7b\x1a\xb6\x98\xa3\x74\xe8\xe7\x0f\x93\x0d\x9d\x10\xb6\x9e\x45\xc1\x02\x80\x14\x79\xfa\xd9\x0f\x19\xd4\xca\x20\xaf\xf3\x51\x17\xe2\xed\x15\x9e\xfd\x98\x79\xeb\xd9\xea\xed\xa8\x51\x78\x36\x3d\x17\xf0\xc3\xef\xf7\xa3\x44\x18\x65\xec\xde\x57\x54\xc0\x87\xff\x7f\x1c\xa5\x95\x6c\x49\xfb\xb9\xe5\x0a\xf8\xbc\x5e\x42\x9e\xdf\x85\x9f\x2f\xa3\xbe\x25\xd4\x05\x7c\xce\xf2\xf5\x12\xb2\xec\x6e\x09\xd9\x6a\xf3\x25\x32\x3d\x77\x3d\x0f\xe0\xf9\xba\x42\xe6\x23\x08\x83\xce\xdf\xe4\x90\xf0\xcb\x53\x0e\x1e\xf8\x3d\xec\x06\xb7\xb9\xfc\xe8\x3b\xf0\x8d\x36\x0a\xcb\x70\x2a\x7f\x8d\xde\x9f\x63\xd7\x59\x53\x62\x29\x95\x64\x49\xee\x82\xa0\x97\x0e\x08\xd6\x84\xdc\x5b\x72\xfb\xde\xaa\x62\x6a\x6a\xb7\x4e\xb0\xc5\x67\xa3\xf1\xe4\xc2\x2d\x71\x6c\x2c\x25\x61\xa4\x25\xc6\x1e\x52\x77\xd6\x8e\xd8\xa5\x53\x8f\x8f\x82\x84\x9f\xf8\x65\x54\xd1\x90\x78\x74\x7d\x5b\xc0\xa6\xca\xd7\x9b\x72\xbb\x5b\xaf\x51\xe0\x66\xf3\x3e\xdf\xad\x6e\xb7\x98\xed\x56\x55\xb9\x5e\x65\xb7\x18\x85\x1e\xf4\x05\x4e\xa3\x7f\xe2\x9b\x83\xc5\xae\x09\xbc\x79\x22\x3f\xb0\x1c\x58\x72\xa6\xb7\x82\x7c\xf1\x25\x3a\x9a\x93\x77\xaf\xc9\x7e\xa4\x87\x79\x36\x4f\x92\x08\x86\xcd\xf6\x1d\x72\x53\xc0\x35\x7f\xec\xb3\x64\x95\xd6\xd6\x3c\x93\x0e\xbd\xa5\x92\xae\xbc\x98\xcf\x55\xde\x56\xf9\xba\xde\xac\xb2\xf7\x99\xc8\x2a\x81\xe2\x2e\xcb\x77\xdb\x7a\x93\xe1\x6e\x8b\x65\xb5\xf3\xb7\x41\xba\x3d\x5a\xd1\xc8\xe3\xf8\xd2\xa8\x51\x39\xff\xfe\x93\x35\xb0\xed\x69\xe9\x3b\x60\x18\x03\x53\x69\xc3\x93\xc0\x2f\xd8\x00\x6a\x18\xdd\xc7\xfb\xe9\x2d\xe7\xac\xaf\x71\x1a\x04\x21\x5c\x45\xda\x30\xf9\xf5\xe8\x55\x4b\x45\xe1\x49\xe9\xa6\xc6\xfc\x16\x66\xcf\x54\xe3\x2b\x63\xda\x12\x99\xad\x2c\x7b\x1e\x28\x9d\x9e\xd8\x22\x8c\x8c\x05\xb3\x2e\x02\x78\x94\xba\x2a\xe0\xfe\xe1\x61\xcc\xd0\x7f\xfb\x9d\x06\x96\xbb\xf8\xdc\xdc\x3f\x3c\x2c\xe1\xa3\xff\x49\x92\x30\x68\xa6\xe9\xbc\xf7\xb7\xdc\x11\x17\x30\xf1\xaf\xe7\xa2\x41\x76\x79\x5c\x5e\x3f\x30\x22\x80\x16\xb5\xac\xc9\xf1\x1e\x7b\x6e\x8c\x2d\x00\xcb\xaa\x57\x55\xf4\x47\x00\x00\x00\xff\xff\x37\x4e\xe8\x30\x76\x0b\x00\x00"
func bvlc_alexnet_caffeYmlBytes() ([]byte, error) {
return bindataRead(
_bvlc_alexnet_caffeYml,
"BVLC_AlexNet_Caffe.yml",
)
}
func bvlc_alexnet_caffeYml() (*asset, error) {
bytes, err := bvlc_alexnet_caffeYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "BVLC_AlexNet_Caffe.yml", size: 2934, mode: os.FileMode(436), modTime: time.Unix(1554919873, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _bvlc_googlenet_caffeYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x51\x8f\xe3\x36\xee\x7f\xf7\xa7\x20\x36\x58\xec\xcc\xff\x9f\x71\xe2\xc4\x93\xf5\xb8\xc0\xe1\x6e\xa7\xe8\xde\xe1\x16\xf3\xd0\xf6\xae\x0f\x45\x11\xd0\x32\x6d\xab\x23\x4b\x3e\x89\x4e\x36\xf3\xe9\x0f\x92\xe5\x24\xb3\xdd\xe2\xf6\x25\x88\xc9\x1f\x29\xf2\x27\x8a\xa4\xc6\x9e\x4a\xf8\xf0\xef\x4f\x8f\xfb\x8f\xc6\xb4\x9f\xe8\x89\x78\xff\x88\x4d\x43\xb0\x00\xaf\x04\xd3\xc0\xc9\x8c\x16\x7a\x53\x93\x4a\x1a\x8b\x3d\x1d\x8d\x7d\x2e\x13\x80\xc9\xf8\x67\xd2\xce\xd8\x1f\x94\x39\xc2\x02\xce\x7a\x68\x8c\x05\xee\x28\xda\x01\x1c\xc8\x3a\x69\x74\x09\x59\x9a\x6d\x5e\x21\xa3\x06\x84\xd1\x6c\x51\x6a\x4e\xae\xb0\x6b\x58\x9c\x01\x52\x37\xc6\xf6\xc8\xd3\x7f\x70\xd4\xa3\x66\x29\xce\xfa\x49\x9b\x78\x3f\x28\x35\xd9\x12\x16\x70\xfe\x70\x30\x3a\xaa\x81\x0d\x0c\x64\x3d\x72\x8a\x0c\x06\x4b\xb5\x14\xde\x67\x02\xb0\x80\x7e\x54\x2c\x07\x45\x30\x28\x64\x0f\x73\x20\x50\x43\x45\xe0\x06\x12\xb2\x91\x54\x27\x00\xd8\xd7\xbb\xdc\x53\x00\xd0\x0e\x63\x09\x16\xe5\x60\xcd\xef\x24\x78\x25\xd0\xf6\xea\x8e\x03\x29\x8d\x32\xc7\x32\x60\xef\xc4\x30\x06\xb8\xf8\x36\x78\x1b\xe0\xc3\x20\x76\xb9\xa2\xf2\xdb\x2c\x23\x3a\xda\x7e\x43\x64\xd7\x06\x35\x39\x61\xe5\xc0\x81\xf6\xbf\x24\x00\x3f\x77\xd2\x45\x8a\xa4\x03\x04\x4b\x83\x92\x62\x22\xdf\x34\x97\xab\x85\xc9\xb2\xa2\xda\xdf\x89\x17\xfb\x42\x52\xbe\x90\x60\x18\xab\xd9\x26\x85\x5f\x08\x8e\x66\x54\x35\x28\xf9\x4c\xfe\x1e\xb8\x43\xfd\x0c\x8f\x9d\x95\x8e\x25\x6a\xf8\xe9\x85\x5a\xaa\x4f\xa1\x72\x50\x29\xf0\x01\x74\xa4\x86\xd9\xef\x17\x11\x5c\x8e\x09\x71\xa4\x09\xc0\xf7\xb2\x69\xc8\x92\x16\xe4\x42\x7d\x1a\x86\x50\x51\x52\xb7\x70\x94\xdc\x45\x37\x4a\xb6\x1d\x7b\x59\x8d\x8c\x77\x38\xb6\x3d\x69\x0e\x7e\xbf\xfb\x53\x2b\x27\x50\x11\xf8\xc8\x7c\x1d\xf0\x9d\xf5\xf8\xaf\x3b\x18\x1d\x39\x78\xf3\x19\x0f\x92\xec\x1b\x9f\xa8\xd4\x92\x25\x2a\xf9\x42\xc1\xd5\x91\xfc\xf9\x0e\xa4\x76\x4c\x58\xfb\x5c\xde\xb4\x38\x3a\x27\x51\xbf\xf1\x0e\xfe\x33\x4a\xf1\xbc\x77\x46\x1d\xc8\xa6\x83\x35\x6c\xf8\x33\x4f\x6e\x11\xea\x98\x23\x83\x22\xb4\x21\x48\x8b\x4c\x50\x93\xc0\x13\x0c\x46\x49\x71\x0a\xd4\x86\xb3\x8c\x95\xad\xd4\xa8\xe0\x0b\x6f\x4b\x0f\x61\x4f\xb3\x39\x7a\xaf\xfd\x28\x3a\x68\xd0\x31\xd9\x4b\xf2\x37\xbb\x35\xd0\x60\x44\xe7\xe0\xe0\x60\x73\x3f\x7f\xdd\x7e\x17\xea\x83\xa0\x1a\x75\xad\xa8\xbe\x94\x89\x3f\x52\x32\xd9\xe9\x92\x36\xcb\x7c\xbd\x5e\xae\xd7\x6b\x70\x1a\x07\xd7\x19\xbe\x72\x79\x0b\xa3\xf3\x87\x7c\x35\xd9\xb9\xfe\x5e\x1f\x60\x2a\xff\x94\x7d\xb8\x6c\x86\xbb\x0c\x50\x88\xd1\xa2\x38\xc1\xae\x48\xdf\xbf\x85\x9b\x6d\x96\x6e\xdf\x02\x59\x6b\xec\x2d\xa0\xae\x23\xf0\xfe\x02\x2c\x8a\xf4\xe1\x2d\xdc\x64\x59\x9a\x9d\x81\x66\x62\xea\x80\x4a\xd6\x53\xdc\x8e\x78\x19\xa3\xfb\x7d\x74\x1c\xd4\x82\xb4\xe7\x46\x58\x33\xf8\x4a\xbb\xf9\x57\x50\x7b\x0d\x1e\xc8\x62\x1b\x1a\x65\xb6\x0e\x00\xb7\x84\x9b\x1c\xfe\x1f\xb2\x68\x75\x0b\xff\x07\x1b\xe8\xa5\x3f\x6f\x09\xae\x0b\xaf\x60\x4a\x06\x10\x2a\xc9\xd0\xc9\xb6\x23\x7b\x8e\x33\xbd\xf5\x04\xc8\x5e\xea\xd6\x85\xe7\x50\x1d\x94\xd8\xb7\xa1\xe0\x35\xf1\x54\x95\x62\xfc\xfe\xe9\x29\x86\x59\x21\x8b\x6e\xef\xe4\x0b\x95\xd9\xa6\xf0\x29\x21\xfc\x33\x5f\x0b\xff\x0a\xfe\x16\xe3\xfb\xc1\xd8\x23\xda\x1a\x06\x74\xae\x84\xfb\xdd\x26\x2d\xf2\x0c\x7a\x97\x5e\x61\x3e\xa0\x78\xbe\x02\x65\xd9\x66\x9b\x16\xf9\x17\xa0\xe8\xe8\x6e\x06\x97\x90\xed\x8a\x22\x2d\x22\xec\xaa\x71\x1c\xd1\x4d\xd5\x44\x35\x54\x27\xf8\x89\x6c\x2b\x0d\x7c\x1c\xb1\x46\x6b\xb1\x47\xf8\xab\x6b\xfd\x47\x62\xe9\xfc\x6e\x61\x01\x97\xaf\xd0\xae\x71\xf0\xdd\x7b\x05\x47\xaa\x9c\x64\xf2\x7f\x89\x45\x9a\xce\x9d\x67\xbe\x88\x79\xd2\xdc\x41\xc7\x3c\xb8\x72\xb5\x6a\x25\x77\x63\x95\x0a\xd3\xaf\xfc\x88\x5b\x85\xc1\xb6\x62\x4b\xb4\xea\x43\xad\xaf\x82\x8d\x5b\xbd\xe6\xf7\x95\x0f\xb4\x9f\xe5\x21\x35\xb6\x5d\x61\xe5\x56\x59\xbe\x7e\x48\xf3\x22\xdf\x24\x0b\x50\x52\x90\x76\xf4\xaa\x1b\x26\x51\x58\xc2\xa8\x2d\x39\xb6\x52\x30\xd5\xc9\x02\xa4\x1e\x46\x76\x53\xdb\x9b\xb1\x93\xac\x0c\x73\xa7\x91\xd6\xf1\x84\x02\x3e\x0d\xf4\x87\xf9\x79\x17\xc4\x25\xc8\x1e\x5b\x0a\xfd\x7d\x01\x57\x4d\x7b\x8e\xe2\xca\x4f\x00\xbd\xea\xeb\xe1\x79\x86\x23\x2e\x5e\x06\xf4\x83\x98\xc9\x06\xea\xc3\xd1\x17\x51\x40\x00\x90\x22\xdf\xe1\xf6\x53\x04\x8d\x32\xc8\xdb\x4d\xd4\x29\x3c\x91\xdd\x4f\xab\xc0\x3b\xdf\x0f\xdf\x5d\x14\x66\xe4\x12\xfe\xfe\xcb\x63\x94\x08\xa3\x8c\xdd\xfb\x84\x4a\xf8\xf0\xf1\xc7\x28\xad\x65\x4f\xda\xcf\x6f\x57\xc2\xaf\xdb\x25\x6c\x36\x79\xf8\xf9\x2d\xea\x7b\x42\x5d\xc2\xaf\xd9\x66\xbb\x84\x2c\x7b\xbf\x84\x6c\x9d\xff\x96\x98\x91\x87\x91\x27\xee\x7c\x5a\x21\xf0\xc8\xc1\xa4\x4b\x20\x32\x26\x14\x3a\x27\x9b\x38\x3a\x82\x05\x7e\x8d\xba\xc9\xec\x92\x7d\xf2\x15\xf6\x22\x46\x61\x15\x2e\xe5\x7f\x93\xf7\xe7\xd4\x0d\xd6\x54\x58\x49\x25\x59\x92\xdb\x07\x1a\x4b\x78\xe7\xa5\x13\x83\x0d\x21\x8f\x96\xdc\x7e\xb4\xaa\x0c\xe5\x58\xae\x56\x6e\x9b\x62\x8f\x2f\x46\xe3\xd1\x85\xba\x76\x6c\x2c\xa5\x61\xb4\x87\x22\x75\x27\xed\x88\xdd\x2a\x5c\xb0\x26\x8e\x82\x74\x6a\xaa\x57\x5e\x45\x47\xe2\xd9\x8d\x7d\x09\x79\xbd\xd9\xe6\xd5\x7d\xb1\xdd\xa2\xc0\x3c\x7f\xd8\x14\xeb\xdd\x3d\x66\xc5\xba\xae\xb6\xeb\x6c\x87\x49\x28\x41\x9f\xe0\xbc\x02\xcd\xef\xbb\xb5\x38\x74\xa1\xd3\xce\x33\xcd\x92\x33\xa3\x15\xe4\x93\xaf\xd0\xd1\x25\x78\xf7\x2d\xd1\xc7\xe7\x78\xd9\x51\x66\x49\x02\xd3\x61\xfb\x01\xb9\x2b\xbf\xe8\x87\xfb\x2c\x5d\xaf\x1a\x6b\x5e\x48\xef\xa7\x5d\x60\xa8\x12\x00\xe9\xf6\x68\x45\x27\x0f\x71\x81\x6a\x50\x39\xbf\xd6\xca\x06\xd8\x8e\xe4\x47\x20\x4d\xbd\x7f\x8e\x74\xda\x74\xfc\x1f\x36\x80\x1a\xa2\x79\x7c\x6d\x1e\x79\x09\xe2\x3a\xed\x49\x10\xdc\xd5\xa4\x0d\x87\x39\x1f\xad\x1a\xa9\x28\x6c\xca\x6e\xae\xb3\x3f\xb2\xe6\xfb\x79\x5c\x72\x2e\x47\x4e\x47\x5d\xae\x69\x53\x6c\xd7\xc5\xfb\x66\x87\x0f\x62\x73\x5f\x17\xf7\x19\xdd\x17\x19\x61\xf6\xf0\x90\xe7\x4d\xf3\x50\x27\xc8\x6c\x65\x35\xf2\xd4\x44\xe9\x33\x5b\x04\x4d\x1c\x76\xec\x8b\x2e\x01\x78\x96\xba\x2e\xe1\xf1\xe9\x29\x26\xe5\xbf\x7d\x70\x9a\x46\x8b\xea\x6c\x73\xf3\xf8\xf4\xb4\x84\x1f\xfd\x4f\x9a\x86\x91\x34\x6f\x06\x7b\xff\xce\x1d\x71\x09\xff\xf0\x65\xe6\x77\xb0\x05\x44\xd9\x79\xcd\x0e\x0d\x2c\x1a\x24\x00\x3d\x6a\xd9\x90\xe3\x3d\x8e\xdc\x19\x5b\xc2\x63\x47\xba\x85\x4f\x32\xf9\x6f\x00\x00\x00\xff\xff\x9e\x1a\x01\x8f\x84\x0c\x00\x00"
func bvlc_googlenet_caffeYmlBytes() ([]byte, error) {
return bindataRead(
_bvlc_googlenet_caffeYml,
"BVLC_GoogLeNet_Caffe.yml",
)
}
func bvlc_googlenet_caffeYml() (*asset, error) {
bytes, err := bvlc_googlenet_caffeYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "BVLC_GoogLeNet_Caffe.yml", size: 3204, mode: os.FileMode(436), modTime: time.Unix(1554919873, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _deeplabv3_mobilenet_v2_dm_05_pascal_voc_train_augYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x56\x4b\x6f\xdc\x46\x0c\xbe\xeb\x57\x10\xf0\x21\x09\x60\x4b\xfb\xb2\xe3\xd5\xa1\x80\xbb\x41\x5f\x48\xec\x20\x49\x53\xa0\x97\x01\x35\xa2\xa4\xa9\xa5\x19\x61\x86\xda\xb5\xf3\xeb\x8b\x79\xec\xc3\x8d\x8b\xfa\xd2\xcb\x42\x5a\x7e\xe4\x90\x1f\x3f\x52\xa3\x71\xa0\x12\xde\x11\x8d\xef\xb1\xda\x2e\xc5\x07\x53\xa9\x9e\x6e\x89\xc5\x76\x21\xde\x7d\x10\xb3\x4b\xf1\xf1\xe6\xf3\xe6\xe6\xbd\xf8\x7a\xb7\x11\x5f\x2c\x2a\x2d\x6e\xa6\x16\xce\xc0\x7b\x82\x69\xe0\xd1\x4c\x16\x06\x53\x53\x9f\x35\x16\x07\xda\x19\x7b\x5f\x66\x00\x31\xf2\x17\xd2\xce\xd8\x9f\x7a\xb3\x83\x33\x38\xd8\xa1\x31\x16\xb8\xa3\xe4\x07\xb0\x25\xeb\x94\xd1\x25\xcc\xf3\xf9\xe2\x09\x32\x59\x40\x1a\xcd\xfe\x74\xce\x4e\xb0\x33\x38\x3b\x00\x94\x6e\x8c\x1d\x90\xe3\x33\x38\x1a\x50\xb3\x92\x07\x7b\xb4\x66\x3e\x0e\x2a\x4d\xb6\x84\x33\x38\xbc\x38\x98\x1c\xd5\xc0\x06\x46\xb2\x1e\x19\x33\x03\xda\x62\x3f\x85\x98\x19\x00\x0e\xf5\xd5\xca\x97\x06\xd0\x8e\x53\x09\x16\xd5\x68\xcd\x5f\x24\xb9\x90\x68\x87\xfe\x82\x43\xb1\x4d\x6f\x76\x65\xc0\x5e\xc8\x71\x0a\x70\xf9\x32\x78\x1b\xe0\xe3\x28\xaf\x56\x3d\x95\x2f\xf3\x4c\xe8\xe4\xfb\x82\xcc\x4e\x1d\x6a\x72\xd2\xaa\x91\x03\x9d\x3f\x64\x70\xda\xae\xcf\x7b\x02\x3f\x53\x3b\x90\xe6\xc8\x6c\xa0\xe5\x1c\x76\x9d\x92\x1d\x28\x07\xa1\x27\x54\x83\xd1\xa1\x9f\x9b\xbb\xcd\x1d\xbc\xde\x98\x61\x30\x1a\xee\x2a\x9f\x81\xcb\xc0\xf7\x63\x63\x34\xd3\x03\xbf\x81\x1a\x19\x1d\x71\x0e\xbf\x3b\x82\x9a\x68\xec\x83\xf0\x06\xbd\x5d\x88\x7a\x98\x5d\x8a\x11\x9d\xc4\x5e\x84\xc8\x02\xa7\xf6\xf5\x4b\x40\x62\x31\x9b\x5f\x8b\xf9\x4c\xcc\xe6\x6f\x32\x80\xc6\x9a\xe1\xb4\x98\x24\x70\xf8\x10\xba\xfa\xa7\x31\x79\x66\xa9\x21\x4b\x5a\x92\xf3\x4a\x38\xbe\x05\x11\xe0\xe8\x35\x51\xc0\x8e\x2a\xa7\x98\xfc\x23\xb1\xcc\x73\x88\x8c\x55\x4a\xb7\x4f\xf4\x7b\x01\x1d\xf3\xe8\xca\xa2\x68\x15\x77\x53\x95\x4b\x33\x14\x47\xd2\x8b\x80\x73\x05\x5b\xa2\x62\x40\xc7\x64\x0b\x4b\x8e\xd0\xca\xae\x48\xe5\xbd\x3c\x4a\xd5\x9b\xea\xdf\xa2\x14\xed\xb2\x36\x32\x22\xc5\x37\x63\xf2\xa1\xce\x7a\x25\x49\x3b\x2a\xe1\x66\x44\xd9\x11\xbc\x8f\xef\xe7\xf0\x35\x8d\xc6\x22\x0c\x52\x82\xf9\x99\x3e\x96\xa6\xf4\x38\x71\x60\x28\x0e\x44\x7c\x0f\xb9\xf2\xe3\x48\x25\xa8\x01\x5b\xf2\x13\xab\xac\xe3\x68\xf6\x50\xec\x15\x3f\x06\x41\x3e\xd1\x98\x0f\x1c\x31\x7b\xbf\x13\xf3\xfe\xe4\x93\x50\x21\xc2\x88\x7e\x1b\x30\x59\x17\x67\x02\x80\x7a\xf2\x92\x14\x31\x85\x49\x69\xbe\x4e\x96\xe0\x25\x7a\x7c\xf4\x03\xfe\xea\x57\x7f\x48\x94\xc1\xab\x04\xe8\xf1\xd1\x4c\x5c\xc2\x2f\x7f\x6c\xd2\x3f\xd2\xf4\xc6\x0a\x5f\x5e\x09\x9f\x7e\xfe\x31\xfd\x3b\xe0\x83\xa8\xd5\x40\x3a\xee\x9a\xcb\xf9\x32\x19\xee\x89\x46\x81\x6e\x24\xc9\xc2\xfa\xa1\x28\x81\xed\x44\x99\x99\x78\x9c\xd8\x67\x18\xb3\xda\x2f\x20\x17\xc7\x27\x7b\x86\x89\xe8\x72\x5c\x55\x09\x0a\x67\x80\xcf\xf1\x92\xe0\x07\x3a\xb2\xef\xa9\x79\x4a\x8c\xd2\x7c\xb5\xca\x62\x35\xee\xde\xed\x69\xd9\x4f\xf6\x47\x4b\xb5\x92\xfe\x04\x17\x40\x0d\x21\x4f\x96\x9c\x98\x6c\x5f\x1e\xa4\xe8\x96\x39\x0e\xf8\xcd\x68\xdc\xb9\x20\x48\xc7\xc6\x52\x1e\xf6\x4a\x6e\x6c\x7b\xd0\xf6\x77\x3a\xfd\xc7\xdc\x3e\x3f\xb2\xb3\xb9\x58\xac\x8b\x68\xbb\xd8\x1a\x79\x21\x7b\x74\x8e\x5c\xce\x0f\xfc\x34\x2b\xd9\x91\xbc\x77\xd3\x50\xc2\x5a\xd2\x6a\xb9\xae\x64\x53\xad\x56\x72\x39\x5b\xd1\x6a\x8d\xb3\x86\xe6\x48\xcb\xf5\x75\x73\xb5\xce\x42\x02\x5e\xb4\xbe\x4d\xaa\x51\xe4\x92\x7c\x5b\x8b\x63\x07\xa8\x6b\xd8\x91\x6a\x3b\x76\xe0\xcc\x64\x25\x79\x02\x2a\x74\x14\x4a\xcf\x20\xe2\xc4\x88\xdc\xfd\x0f\x44\xfc\xd7\x02\x2b\x1a\x6b\xbe\x91\x16\x4a\xa7\x9d\x24\x42\x3a\xf9\xe8\x77\x84\x72\xc2\xcf\xbb\xda\xa6\x0f\x44\x83\xbd\xf3\x73\xa4\x9a\x20\xc3\x73\xaf\x94\xb8\x8b\xf7\xf5\xf8\x35\x8d\xe0\x1f\xd8\x00\x6a\x48\xee\xc1\xfb\x2c\x20\x8f\xd5\x9e\x52\x13\xff\x08\xe1\x6a\xd2\x86\xc9\x3f\x27\xaf\x46\xf5\x14\xbe\xf0\x6e\x2f\xce\xef\x99\xdd\x29\xee\x54\x4c\xe5\x78\x64\x3c\xea\xd8\xca\xd9\x72\x79\x25\xa9\xba\x7a\x5b\x2d\xdf\x5e\xd7\xcd\x35\xd6\x38\xa3\x86\xd6\x84\x75\x75\x89\xf2\x3a\x43\x66\xab\xaa\x89\xe3\x9a\xa6\x07\xb6\x98\x7a\x79\xb4\x64\x00\xf7\x4a\xd7\x25\x6c\x6e\x6f\x53\x49\xfe\xdd\xa7\xa6\x69\xb2\xd8\x83\x26\x0e\xb7\x89\xd7\x9b\xdb\xdb\x73\xf8\xe4\x7f\xf2\x3c\xf7\x5f\x8a\xd0\x00\xa5\x5b\x91\xbe\x4b\x25\xc4\xfb\x0e\x7c\xbd\xdb\xc0\x62\x16\x6e\x23\xc9\x74\xb8\x23\x84\xdb\x4b\xf2\xcb\xfc\x70\x69\xd5\x90\x63\x81\x13\x77\xc6\x96\xf0\x9b\xd2\xad\xb7\xc1\x17\xd4\x6d\xf6\x77\x00\x00\x00\xff\xff\x8b\x3e\x89\x87\x63\x09\x00\x00"
func deeplabv3_mobilenet_v2_dm_05_pascal_voc_train_augYmlBytes() ([]byte, error) {
return bindataRead(
_deeplabv3_mobilenet_v2_dm_05_pascal_voc_train_augYml,
"DeepLabv3_MobileNet_v2_DM_05_PASCAL_VOC_Train_Aug.yml",
)
}
func deeplabv3_mobilenet_v2_dm_05_pascal_voc_train_augYml() (*asset, error) {
bytes, err := deeplabv3_mobilenet_v2_dm_05_pascal_voc_train_augYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "DeepLabv3_MobileNet_v2_DM_05_PASCAL_VOC_Train_Aug.yml", size: 2403, mode: os.FileMode(436), modTime: time.Unix(1554919091, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _deeplabv3_mobilenet_v2_dm_05_pascal_voc_train_valYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x56\x5b\x6f\xdc\x36\x13\x7d\xd7\xaf\x18\xc0\x0f\x49\x00\x5b\xd2\x5e\xec\xcf\xd6\xc3\x07\xa4\x1b\xf4\x86\xc4\x0e\x92\xd4\x05\xfa\x42\x8c\xa8\x91\xc4\x5a\x22\x05\x72\xb4\x6b\xe7\xd7\x17\xbc\xec\xc5\x4d\x8a\xfa\xa5\x2f\x0b\x71\xe7\xcc\x70\xe6\xf0\xcc\x90\x1a\x47\xaa\xe0\x1d\xd1\xf4\x1e\xeb\xed\x4a\x7c\x30\xb5\x1a\xe8\x96\x58\x6c\x97\xe2\xdd\x07\x51\x5e\x8a\x8f\x6f\x3f\x6f\xde\xbe\x17\xf7\x77\x1b\xf1\xc5\xa2\xd2\xe2\x1e\x07\x38\x03\xef\x09\xa6\x85\x27\x33\x5b\x18\x4d\x43\x43\xd6\x5a\x1c\x69\x67\xec\x43\x95\x01\xc4\xc8\x5f\x48\x3b\x63\x7f\x1c\xcc\x0e\xce\xe0\x60\x87\xd6\x58\xe0\x9e\x92\x1f\xc0\x96\xac\x53\x46\x57\xb0\xc8\x17\xcb\x67\xc8\x64\x01\x69\x34\xfb\xdd\x39\x3b\xc1\x96\x70\x76\x00\x28\xdd\x1a\x3b\x22\xc7\x6f\x70\x34\xa2\x66\x25\x0f\xf6\x68\xcd\x7c\x1c\x54\x9a\x6c\x05\x67\x70\x58\x38\x98\x1d\x35\xc0\x06\x26\xb2\x1e\x19\x33\x03\xda\xe2\x30\x87\x98\x19\x00\x8e\xcd\xd5\xda\x97\x06\xd0\x4d\x73\x05\x16\xd5\x64\xcd\x9f\x24\xb9\x90\x68\xc7\xe1\x82\x43\xb1\xed\x60\x76\x55\xc0\x5e\xc8\x69\x0e\x70\xf9\x32\x78\x17\xe0\xd3\x24\xaf\xd6\x03\x55\x2f\xf3\x4c\xe8\xe4\xfb\x82\xcc\x4e\x1d\x1a\x72\xd2\xaa\x89\x03\x9d\xff\xcf\xe0\xf4\xb8\x3e\xef\x09\xfc\x4c\xdd\x48\x9a\x23\xb3\x81\x96\x73\xd8\xf5\x4a\xf6\xa0\x1c\x84\x33\xa1\x06\x8c\x0e\xe7\xb9\xb9\xdb\xdc\xc1\xeb\x8d\x19\x47\xa3\xe1\xae\xf6\x19\xb8\x0c\xfc\x79\x6c\x8c\x66\x7a\xe4\x37\xd0\x20\xa3\x23\xce\xe1\x37\x47\xd0\x10\x4d\x43\x10\xde\xa8\xb7\x4b\xd1\x8c\xe5\xa5\x98\xd0\x49\x1c\x44\x88\xbc\xc5\xe1\xf5\x0b\x30\x62\x59\x2e\xae\xc5\xa2\x14\xe5\xe2\x4d\x06\xd0\x5a\x33\x9e\x96\x92\xe4\x0d\x1f\xc2\x99\xfe\x61\x4c\x9e\x59\x6a\xc9\x92\x96\xe4\xbc\x0e\x8e\xab\x20\x01\x9c\xbc\x22\x0a\xd8\x51\xed\x14\x93\xff\x24\x96\x79\x0e\x91\xaf\x5a\xe9\xee\x99\x7a\x2f\xa0\x67\x9e\x5c\x55\x14\x9d\xe2\x7e\xae\x73\x69\xc6\xe2\x48\x79\x11\x70\xae\x60\x4b\x54\x8c\xe8\x98\x6c\x61\xc9\x11\x5a\xd9\x17\xa9\xba\x97\x47\xa9\x07\x53\xff\x53\x94\xa2\x5b\x35\x46\x46\xa4\xf8\x6a\x4c\x3e\x36\xd9\xa0\x24\x69\x47\x15\xbc\x9d\x50\xf6\x04\xef\xe3\xfa\x1c\xee\x53\x63\x2c\x43\x1b\x25\x98\xef\xe8\x63\x69\x4a\x4f\x33\x07\x86\x62\x3b\xc4\x75\xc8\x95\x9f\x26\xaa\x40\x8d\xd8\x91\xef\x57\x65\x1d\x47\xb3\x87\xe2\xa0\xf8\x29\xc8\xf1\x99\xc2\x7c\xe0\x88\xd9\xfb\x9d\x98\xf7\x3b\x9f\x84\x0a\x11\x26\xf4\xb3\x80\xc9\xba\xd8\x11\x00\x34\x90\x17\xa4\x88\x29\xcc\x4a\xf3\x75\xb2\x04\x2f\x31\xe0\x93\x6f\xef\x57\xbf\xf8\x4d\xa2\x0c\x5e\x25\xc0\x80\x4f\x66\xe6\x0a\x7e\xfe\x7d\x93\xfe\x91\x66\x30\x56\xf8\xf2\x2a\xf8\xf4\xd3\x0f\xe9\xdf\x11\x1f\x45\xa3\x46\xd2\x71\xd2\x5c\x2e\x56\xc9\xf0\x40\x34\x09\x74\x13\x49\x16\xd6\xb7\x44\x05\x6c\x67\xca\xcc\xcc\xd3\xcc\x3e\xc3\x98\xd5\x7e\xfc\xb8\xd8\x3c\xd9\x77\x98\x88\x2e\xc7\x41\x95\xa0\x70\x06\xf8\x3d\x5e\x12\xfc\x40\x47\xf6\x2d\x35\xcf\x89\x51\x9a\xaf\xd6\x59\xac\xc6\x3d\xb8\x3d\x2d\xfb\xbe\xfe\x68\xa9\x51\xd2\xef\xe0\x02\xa8\x25\xe4\xd9\x92\x13\xb3\x1d\xaa\x83\x14\xdd\x2a\xc7\x11\xbf\x1a\x8d\x3b\x17\x04\xe9\xd8\x58\xca\xc3\x54\xc9\x8d\xed\x0e\xda\xfe\x46\xa7\x7f\x6b\xdb\xd3\x8e\x15\x38\x77\xb1\x65\xcb\x85\x58\xde\x14\xd1\x76\xb1\x35\xf2\x42\x0e\xe8\x1c\xb9\x9c\x1f\xf9\x79\x56\xb2\x27\xf9\xe0\xe6\xb1\x82\x1b\x49\xeb\xd5\x4d\x2d\xdb\x7a\xbd\x96\xab\x72\x4d\xeb\x1b\x2c\x5b\x5a\x20\xad\x6e\xae\xdb\xab\x9b\x2c\x24\xe0\x45\xeb\x8f\x49\xb5\x8a\x5c\x92\x6f\x67\x71\xea\x01\x75\x03\x3b\x52\x5d\xcf\x0e\x9c\x99\xad\x24\x4f\x40\x8d\x8e\x42\xe9\x19\x44\x9c\x98\x90\xfb\xff\x80\x88\x7f\x99\x5f\x45\x6b\xcd\x57\xd2\x42\xe9\x34\x92\x44\xc8\x26\x9f\xfc\x88\x50\x4e\xf8\x76\x57\xdb\x74\x3b\xb4\x38\x38\xdf\x46\xaa\x0d\x2a\x3c\xf7\x42\x89\x83\x78\x5f\x8e\x9f\xd1\x08\xfe\x83\x0d\xa0\x86\xe4\x1e\xbc\xcf\x02\xf2\x58\xec\x29\x33\xf1\x8f\x10\xae\x21\x6d\x98\xfc\x77\xf2\x6a\xd5\x40\xe1\x7a\x77\x7b\x6d\x7e\x4b\xec\x4e\x71\xaf\x62\x2a\xc7\x2d\xe3\x56\xc7\x93\xc4\xe5\x6a\xf5\x3f\x5a\x5e\xaf\x4b\xb9\x6e\xd6\x75\x8d\x75\x59\x5e\xd6\x97\x8b\x9b\x56\x5e\xca\xf5\x8a\x32\x64\xb6\xaa\x9e\x39\x4e\x69\x7a\x64\x8b\xe9\x28\x8f\x96\x0c\xe0\x41\xe9\xa6\x82\xcd\xed\x6d\x2a\xc9\xaf\x7d\x6a\x9a\x66\x8b\x03\x68\xe2\xf0\x94\x78\xbd\xb9\xbd\x3d\x87\x4f\xfe\x27\xcf\x73\x7f\x51\x04\xfe\x95\xee\x44\xba\x94\x2a\x88\x8f\x1d\xb8\xbf\xdb\xc0\xb2\x0c\x4f\x91\x64\x3a\x3c\x10\xc2\xd3\x25\xf9\x65\xbe\xb7\xb4\x6a\xc9\xb1\xc0\x99\x7b\x63\x2b\xf8\x55\xe9\xce\xdb\xe0\x0b\xea\x2e\xfb\x2b\x00\x00\xff\xff\x07\x3d\x16\x1a\x60\x09\x00\x00"
func deeplabv3_mobilenet_v2_dm_05_pascal_voc_train_valYmlBytes() ([]byte, error) {
return bindataRead(
_deeplabv3_mobilenet_v2_dm_05_pascal_voc_train_valYml,
"DeepLabv3_MobileNet_v2_DM_05_PASCAL_VOC_Train_Val.yml",
)
}
func deeplabv3_mobilenet_v2_dm_05_pascal_voc_train_valYml() (*asset, error) {
bytes, err := deeplabv3_mobilenet_v2_dm_05_pascal_voc_train_valYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "DeepLabv3_MobileNet_v2_DM_05_PASCAL_VOC_Train_Val.yml", size: 2400, mode: os.FileMode(436), modTime: time.Unix(1554919091, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _deeplabv3_mobilenet_v2_pascal_voc_train_augYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x56\x4b\x6f\xdc\x46\x0c\xbe\xeb\x57\x10\xd8\x43\x12\xc0\xd6\x6a\x1f\x71\xbc\x3a\x14\x70\xb7\xe8\x03\x70\xec\x20\x49\x53\xa0\x97\x01\x35\xa2\xa4\xa9\xa5\x19\x61\x86\xda\xb5\xf3\xeb\x8b\x79\xec\xc3\x70\x0a\xf8\xd4\xcb\x42\x5a\x7e\xe4\x90\x1f\x3f\x52\xa3\x71\xa0\x12\x7e\x21\x1a\x6f\xb1\xda\xad\xc4\x47\x53\xa9\x9e\xee\x88\xc5\x6e\x29\x3e\xdd\x7c\xd9\xde\xdc\x8a\x6f\xf7\x5b\xf1\xd5\xa2\xd2\xe2\x66\x6a\x61\x06\xde\x07\x4c\x03\x4f\x66\xb2\x30\x98\x9a\xfa\xac\xb1\x38\xd0\xde\xd8\x87\x32\x03\x88\x31\xbf\x92\x76\xc6\xfe\xda\x9b\x3d\xcc\xe0\x68\x87\xc6\x58\xe0\x8e\x92\x1f\xc0\x8e\xac\x53\x46\x97\xb0\xc8\x17\xcb\x67\xc8\x64\x01\x69\x34\xfb\xd3\x39\x3b\xc3\x16\x30\x3b\x02\x94\x6e\x8c\x1d\x90\xe3\x33\x38\x1a\x50\xb3\x92\x47\x7b\xb4\x66\x3e\x0e\x2a\x4d\xb6\x84\x19\x1c\x5f\x1c\x4c\x8e\x6a\x60\x03\x23\x59\x8f\x8c\x99\x01\xed\xb0\x9f\x42\xcc\x0c\x00\x87\xfa\x6a\xed\x4b\x03\x68\xc7\xa9\x04\x8b\x6a\xb4\xe6\x1f\x92\x3c\x97\x68\x87\xfe\x92\x43\xb1\x4d\x6f\xf6\x65\xc0\x5e\xca\x71\x0a\x70\xf9\x3a\x78\x1b\xe0\xe3\x28\xaf\xd6\x3d\x95\xaf\xf3\x4c\xe8\xe4\xfb\x8a\xcc\xce\x1d\x6a\x72\xd2\xaa\x91\x03\x9d\x3f\x65\x70\xde\xae\x2f\x07\x02\xbf\x50\x3b\x90\xe6\xc8\x6c\xa0\xe5\x02\xf6\x9d\x92\x1d\x28\x07\xa1\x27\x54\x83\xd1\xa1\x9f\xdb\xfb\xed\x3d\xbc\xdd\x9a\x61\x30\x1a\xee\x2b\x9f\x81\xf3\xdd\xd8\x1a\xcd\xf4\xc8\xef\xa0\x46\x46\x47\x9c\x67\x00\x7f\x3a\xdf\x7f\x2f\x34\x4d\xbc\x5b\x0a\x69\xa4\x11\x3b\x23\x45\x88\x89\x53\xfb\xb6\x26\x1a\xfb\x20\xc8\x41\xef\x96\x62\x44\x27\xb1\x8f\x66\x81\x53\x2b\x96\xc5\xe2\x5a\x14\x0b\xb1\xdc\xbc\x83\xc6\x9a\xe1\x3c\xfd\x24\x66\xf8\x18\xfa\xf8\xb7\x31\x79\x66\xa9\x21\x4b\x5a\x92\xf3\xbd\x3f\xbd\x85\xb6\xe3\xe8\x55\x30\x87\x3d\x55\x4e\x31\xf9\x47\x62\x99\xe7\x10\x39\xaa\x94\x6e\x9f\x29\xf6\x12\x3a\xe6\xd1\x95\xf3\x79\xab\xb8\x9b\xaa\x5c\x9a\x61\x7e\xa2\x79\x1e\x70\x6e\xce\x96\x68\x3e\xa0\x63\xb2\x73\x4b\x8e\xd0\xca\x6e\x9e\xea\x7a\x7d\x94\xaa\x37\xd5\x7f\x45\x99\xb7\xab\xda\xc8\x88\x14\xdf\x8d\xc9\x87\x3a\xeb\x95\x24\xed\xa8\x84\x9b\x11\x65\x47\x70\x1b\xdf\x2f\xe0\x5b\x1a\x86\x65\x18\x9d\x04\xf3\x53\x7c\x2a\x4d\xe9\x71\xe2\xc0\x50\x1c\x81\xf8\x1e\x72\xe5\xa7\x91\x4a\x50\x03\xb6\xe4\x67\x54\x59\xc7\xd1\xec\xa1\xd8\x2b\x7e\x0a\x12\x7c\xa6\x2a\x1f\x38\x62\x0e\x7e\x67\xe6\xc3\xc9\x67\xa1\x42\x84\x11\xfd\xfc\x33\x59\x17\xa7\x00\x80\x7a\xf2\x22\x14\x31\x85\x49\x69\xbe\x4e\x96\xe0\x25\x7a\x7c\xf2\x23\xfd\xe6\x0f\x7f\x48\x94\xc1\x9b\x04\xe8\xf1\xc9\x4c\x5c\xc2\xef\x7f\x6d\xd3\x3f\xd2\xf4\xc6\x0a\x5f\x5e\x09\x9f\x7f\xfb\x39\xfd\x3b\xe0\xa3\xa8\xd5\x40\x3a\x6e\x97\xf7\x8b\x55\x32\x3c\x10\x8d\x02\xdd\x48\x92\x85\xf5\x63\x50\x02\xdb\x89\x32\x33\xf1\x38\xb1\xcf\x30\x66\x75\x58\x39\x2e\x0e\x4c\xf6\x03\x26\xa2\xcb\x69\x39\x25\x28\xcc\x00\x7f\xc4\x4b\x82\x1f\xe9\xc8\x5e\x52\xf3\x9c\x18\xa5\xf9\x6a\x9d\xc5\x6a\xdc\x83\x3b\xd2\x72\x18\xe6\x4f\x96\x6a\x25\xfd\x11\x2e\xd2\xd3\x10\xf2\x64\xc9\x89\xc9\xf6\xe5\x51\x8c\x6e\x95\xe3\x80\xdf\x8d\xc6\xbd\x0b\x92\x74\x6c\x2c\xe5\x61\x97\xe4\xc6\xb6\x47\x75\xbf\x50\xea\xeb\x47\x76\x1e\x6d\x97\x3b\x23\x2f\x65\x8f\xce\x91\xcb\xf9\x91\x9f\x67\x25\x3b\x92\x0f\x6e\x1a\x4a\xd8\x48\x5a\xaf\x36\x95\x6c\xaa\xf5\x5a\xae\x8a\x35\xad\x37\x58\x34\xb4\x40\x5a\x6d\xae\x9b\xab\x4d\x16\x12\xf0\xb2\xf5\x8d\x52\x8d\x22\x97\x04\xdc\x5a\x1c\x3b\x40\x5d\xc3\x9e\x54\xdb\xb1\x03\x67\x26\x2b\xc9\x6b\xba\x42\x47\xa1\xf4\x0c\x22\x4e\x8c\xc8\xdd\xff\x4c\x44\x63\xcd\x77\xd2\x42\xe9\xb4\x90\x44\xc8\x24\x1f\xfd\x82\x50\x4e\xf8\x61\x57\xbb\xf4\x3d\x68\xb0\x77\x7e\x88\x54\x13\x34\x78\xe1\x65\x12\x57\xef\xa1\x14\xbf\x95\x11\xfc\x03\x1b\x40\x0d\xc9\x3d\x78\xcf\x02\xf2\x54\xe8\x39\x2b\xf1\x8f\x10\xae\x26\x6d\x98\xfc\x73\xf2\x6a\x54\x4f\xe1\x83\xee\x0e\xca\x7c\x49\xea\x5e\x71\xa7\x62\x2a\xa7\x23\xe3\x51\xa7\x2e\x56\x05\x2e\xea\x62\xb5\x2e\x16\xd7\x9b\xfa\x43\x51\xac\x96\x9b\x45\xb1\x28\xb0\xaa\xe4\x92\xd6\x1f\xde\x67\xc8\x6c\x55\x35\x71\xdc\xd1\xf4\xc8\x16\x53\x1b\x4f\x96\x0c\xe0\x41\xe9\xba\x84\xed\xdd\x5d\x2a\xc9\xbf\xfb\xd4\x34\x4d\x16\x7b\xd0\xc4\xe1\xf2\xf0\x76\x7b\x77\x77\x01\x9f\xfd\x4f\x9e\xe7\xef\xfc\xa4\xfa\x06\x28\xdd\x8a\xf4\x21\x2a\x21\x5e\x6f\xe0\xdb\xfd\x16\x96\x45\xb8\x7c\x24\xd3\xf1\x4a\x10\x2e\x2b\xc9\x2f\xf3\x93\xa5\x55\x43\x8e\x05\x4e\xdc\x19\x5b\xc2\xb6\x23\xdd\xc2\xad\xca\xfe\x0d\x00\x00\xff\xff\x66\x67\x98\xf2\x47\x09\x00\x00"
func deeplabv3_mobilenet_v2_pascal_voc_train_augYmlBytes() ([]byte, error) {
return bindataRead(
_deeplabv3_mobilenet_v2_pascal_voc_train_augYml,
"DeepLabv3_MobileNet_v2_PASCAL_VOC_Train_Aug.yml",
)
}
func deeplabv3_mobilenet_v2_pascal_voc_train_augYml() (*asset, error) {
bytes, err := deeplabv3_mobilenet_v2_pascal_voc_train_augYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "DeepLabv3_MobileNet_v2_PASCAL_VOC_Train_Aug.yml", size: 2375, mode: os.FileMode(436), modTime: time.Unix(1554919091, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _deeplabv3_mobilenet_v2_pascal_voc_train_valYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x56\x5b\x6f\xdc\x46\x0f\x7d\xd7\xaf\x20\xe0\x87\x24\x80\x2d\xed\x2d\x8e\x57\x0f\x1f\x90\x6f\x8b\x5e\x00\xc7\x0e\x92\xd4\x05\xfa\x32\xa0\x46\x94\x34\xb5\x34\x23\xcc\x50\xbb\x76\x7e\x7d\x31\x97\xbd\xc1\x69\xe1\x97\xbe\x2c\xa4\xe5\x21\x87\x3c\x3c\xa4\x46\xe3\x40\x25\xfc\x44\x34\xde\x62\xb5\x5d\x8a\x4f\xa6\x52\x3d\xdd\x11\x8b\xed\x42\x7c\xfe\xf8\x75\xf3\xf1\x56\x3c\xdc\x6f\xc4\x37\x8b\x4a\x8b\x07\xec\xe1\x02\xbc\x0f\x98\x06\x9e\xcd\x64\x61\x30\x35\xf5\x59\x63\x71\xa0\x9d\xb1\x8f\x65\x06\x10\x63\x7e\x23\xed\x8c\xfd\xb9\x37\x3b\xb8\x80\x83\x1d\x1a\x63\x81\x3b\x4a\x7e\x00\x5b\xb2\x4e\x19\x5d\xc2\x3c\x9f\x2f\xce\x90\xc9\x02\xd2\x68\xf6\xa7\x73\x76\x82\x9d\xc1\xc5\x01\xa0\x74\x63\xec\x80\x1c\x9f\xc1\xd1\x80\x9a\x95\x3c\xd8\xa3\x35\xf3\x71\x50\x69\xb2\x25\x5c\xc0\xe1\xc5\xc1\xe4\xa8\x06\x36\x30\x92\xf5\xc8\x98\x19\xd0\x16\xfb\x29\xc4\xcc\x00\x70\xa8\xaf\x57\xbe\x34\x80\x76\x9c\x4a\xb0\xa8\x46\x6b\xfe\x22\xc9\x85\x44\x3b\xf4\x57\x1c\x8a\x6d\x7a\xb3\x2b\x03\xf6\x4a\x8e\x53\x80\xcb\xd7\xc1\xdb\x00\x1f\x47\x79\xbd\xea\xa9\x7c\x9d\x67\x42\x27\xdf\x57\x64\x76\xea\x50\x93\x93\x56\x8d\x1c\xe8\xfc\x5f\x06\xa7\xed\xfa\xba\x27\xf0\x2b\xb5\x03\x69\x8e\xcc\x06\x5a\x2e\x61\xd7\x29\xd9\x81\x72\x10\x7a\x42\x35\x18\x1d\xfa\xb9\xb9\xdf\xdc\xc3\xdb\x8d\x19\x06\xa3\xe1\xbe\xf2\x19\x38\xdf\x8d\x8d\xd1\x4c\x4f\xfc\x0e\x6a\x64\x74\xc4\x79\x06\xf0\xbb\xf3\xfd\xf7\x42\xd3\xc4\xdb\x85\x90\x46\x1a\xb1\x35\x52\x84\x98\x5b\xec\xdf\xd6\x44\x63\x1f\x04\x39\xe8\xed\x42\x8c\xe8\x24\xf6\x07\xb3\x58\xcc\xe6\x37\x62\x36\x17\x8b\xf5\x3b\x68\xac\x19\x4e\xb3\x4f\x5a\x86\x4f\xa1\x8d\x7f\x1a\x93\x67\x96\x1a\xb2\xa4\x25\x39\xdf\xfa\xe3\x5b\xe8\x3a\x8e\x5e\x04\x05\xec\xa8\x72\x8a\xc9\x3f\x12\xcb\x3c\x87\x48\x51\xa5\x74\x7b\x26\xd8\x2b\xe8\x98\x47\x57\x16\x45\xab\xb8\x9b\xaa\x5c\x9a\xa1\x38\xb2\x5c\x04\x9c\x2b\xd8\x12\x15\x03\x3a\x26\x5b\x58\x72\x84\x56\x76\x45\x2a\xeb\xf5\x51\xaa\xde\x54\xff\x14\xa5\x68\x97\xb5\x91\x11\x29\xbe\x1b\x93\x0f\x75\xd6\x2b\x49\xda\x51\x09\x1f\x47\x94\x1d\xc1\x6d\x7c\xbf\x84\x87\x34\x0b\x8b\x30\x39\x09\xe6\x87\xf8\x58\x9a\xd2\xe3\xc4\x81\xa1\x38\x01\xf1\x3d\xe4\xca\xcf\x23\x95\xa0\x06\x6c\xc9\x8f\xa8\xb2\x8e\xa3\xd9\x43\xb1\x57\xfc\x1c\x14\x78\x26\x2a\x1f\x38\x62\xf6\x7e\x27\xe6\xfd\xc9\x27\xa1\x42\x84\x11\xfd\xf8\x33\x59\x17\x87\x00\x80\x7a\xf2\x1a\x14\x31\x85\x49\x69\xbe\x49\x96\xe0\x25\x7a\x7c\xf6\x13\xfd\xe6\x37\x7f\x48\x94\xc1\x9b\x04\xe8\xf1\xd9\x4c\x5c\xc2\xaf\x7f\x6c\xd2\x3f\xd2\xf4\xc6\x0a\x5f\x5e\x09\x5f\x7e\xf9\x7f\xfa\x77\xc0\x27\x51\xab\x81\x74\x5c\x2e\xef\xe7\xcb\x64\x78\x24\x1a\x05\xba\x91\x24\x0b\xeb\xa7\xa0\x04\xb6\x13\x65\x66\xe2\x71\x62\x9f\x61\xcc\x6a\xbf\x71\x5c\x9c\x97\xec\x07\x4c\x44\x97\xe3\x6e\x4a\x50\xb8\x00\xfc\x11\x2f\x09\x7e\xa0\x23\x7b\x49\xcd\x39\x31\x4a\xf3\xf5\x2a\x8b\xd5\xb8\x47\x77\xa0\x65\x3f\xcb\x9f\x2d\xd5\x4a\xfa\x23\x5c\xa4\xa7\x21\xe4\xc9\x92\x13\x93\xed\xcb\x83\x18\xdd\x32\xc7\x01\xbf\x1b\x8d\x3b\x17\x24\xe9\xd8\x58\xca\xc3\x2a\xc9\x8d\x6d\x0f\xea\x7e\xa1\xd4\x7f\x99\x58\x81\x53\x7b\x32\xb2\x45\xb4\x5d\x6d\x8d\xbc\x92\x3d\x3a\x47\x2e\xe7\x27\x3e\xcf\x4a\x76\x24\x1f\xdd\x34\x94\xb0\x96\xb4\x5a\xae\x2b\xd9\x54\xab\x95\x5c\xce\x56\xb4\x5a\xe3\xac\xa1\x39\xd2\x72\x7d\xd3\x5c\xaf\xb3\x90\x80\x97\xad\x6f\x94\x6a\x14\xb9\x24\xe0\xd6\xe2\xd8\x01\xea\x1a\x76\xa4\xda\x8e\x1d\x38\x33\x59\x49\x5e\xd3\x15\x3a\x0a\xa5\x67\x10\x71\x62\x44\xee\xfe\x63\x22\xce\x57\x57\xd1\x58\xf3\x9d\xb4\x50\x3a\xed\x23\x11\x12\xc9\x47\xbf\x1f\x94\x13\x7e\xd6\xd5\x36\x7d\x0d\x1a\xec\x9d\x9f\x21\xd5\x04\x09\x5e\x7a\x95\xc4\xc5\xbb\xaf\xc4\xef\x64\x04\xff\xc0\x06\x50\x43\x72\x0f\xde\x17\x01\x79\xac\xf3\x94\x94\xf8\x47\x08\x57\x93\x36\x4c\xfe\x39\x79\x35\xaa\xa7\xf0\x39\x77\x7b\x61\xbe\xe4\x74\xa7\xb8\x53\x31\x95\xe3\x91\xf1\xa8\x63\x13\xab\x46\xbe\x9f\x2d\x3f\x2c\xd7\xf5\x7a\x29\xa9\x6e\xd6\x1f\x96\xcd\xcd\x02\xdf\xd7\xcd\x7c\x3d\x9b\x53\x95\x21\xb3\x55\xd5\xc4\x71\x45\xd3\x13\x5b\x4c\x5d\x3c\x5a\x32\x80\x47\xa5\xeb\x12\x36\x77\x77\xa9\x24\xff\xee\x53\xd3\x34\x59\xec\x41\x13\x87\xab\xc3\xdb\xcd\xdd\xdd\x25\x7c\xf1\x3f\x79\x9e\xbf\xf3\x83\xea\xf9\x57\xba\x15\xe9\x33\x54\x42\xbc\xdc\xc0\xc3\xfd\x06\x16\xb3\x70\xf5\x48\xa6\xc3\x85\x20\x5c\x55\x92\x5f\xe6\x07\x4b\xab\x86\x1c\x0b\x9c\xb8\x33\xb6\x84\x4d\x47\xba\x85\x5b\x95\xfd\x1d\x00\x00\xff\xff\x30\xd0\x3d\x69\x45\x09\x00\x00"
func deeplabv3_mobilenet_v2_pascal_voc_train_valYmlBytes() ([]byte, error) {
return bindataRead(
_deeplabv3_mobilenet_v2_pascal_voc_train_valYml,
"DeepLabv3_MobileNet_v2_PASCAL_VOC_Train_Val.yml",
)
}
func deeplabv3_mobilenet_v2_pascal_voc_train_valYml() (*asset, error) {
bytes, err := deeplabv3_mobilenet_v2_pascal_voc_train_valYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "DeepLabv3_MobileNet_v2_PASCAL_VOC_Train_Val.yml", size: 2373, mode: os.FileMode(436), modTime: time.Unix(1564809483, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _deeplabv3_xception_65_pascal_voc_train_augYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x56\x4b\x6f\xdc\x36\x10\xbe\xeb\x57\x0c\xb0\x87\x24\x80\x2d\xed\xcb\xdb\x5d\x1d\x0a\xb8\x5b\xf4\x85\xd4\x0e\x92\x34\x2d\x7a\x21\x66\xa9\x91\xc4\x5a\x22\x05\x72\xb4\x6b\xe7\xd7\x17\x7c\xec\xc3\x48\x52\xf8\xd0\x8b\x40\x6a\xbe\x19\xce\xe3\x9b\x21\x35\xf6\x54\xc2\x8f\x44\xc3\x5b\xdc\xed\x17\xe2\x2f\x49\x03\x2b\xa3\xc5\xea\x46\xbc\xbb\xfd\xb0\xbd\x7d\x2b\x3e\xdd\x6f\xc5\x47\x8b\x4a\x8b\xdb\xb1\x81\x09\x78\x15\x30\x35\x3c\x99\xd1\x42\x6f\x2a\xea\xb2\xda\x62\x4f\x07\x63\x1f\xca\x0c\x20\x9a\xfc\x48\xda\x19\xfb\x53\x67\x0e\x30\x81\x93\x1c\x6a\x63\x81\x5b\x4a\x7a\x00\x7b\xb2\x4e\x19\x5d\xc2\x2c\x9f\xcd\x9f\x21\x93\x04\xa4\xd1\xec\x4f\xe7\xec\x02\x3b\x85\xc9\x09\xa0\x74\x6d\x6c\x8f\x1c\xd7\xe0\xa8\x47\xcd\x4a\x9e\xe4\x51\x9a\x79\x3b\xa8\x34\xd9\x12\x26\x70\xda\x38\x18\x1d\x55\xc0\x06\x06\xb2\x1e\x19\x3d\x03\xda\x63\x37\x06\x9b\x19\x00\xf6\xd5\x6a\xe9\x43\x03\x68\x86\xb1\x04\x8b\x6a\xb0\xe6\x1f\x92\x5c\x48\xb4\x7d\x77\xcd\x21\xd8\xba\x33\x87\x32\x60\xaf\xe5\x30\x06\xb8\x7c\x19\xbc\x09\xf0\x61\x90\xab\x65\x47\xe5\xcb\x34\x13\x3a\xe9\xbe\xc0\xb3\x4b\x85\x8a\x9c\xb4\x2a\x54\xba\x84\xef\x33\xb8\x2c\xd7\x87\x63\x02\x3f\x50\xd3\x93\xe6\x98\xd9\x90\x96\x2b\x38\xb4\x4a\xb6\xa0\x1c\x84\x9a\x50\x05\x46\x87\x7a\x6e\xef\xb7\xf7\xf0\x7a\x6b\xfa\xde\x68\xb8\xdf\x79\x0f\x5c\x06\xbe\x1e\x5b\xa3\x99\x1e\xf9\x0d\x54\xc8\xe8\x88\x73\xf8\xc3\x11\x54\x44\x43\x17\x18\x37\xa0\x93\xd8\x89\x60\x4f\xe0\xd8\xbc\xfe\xb6\x48\xcc\xa7\xb3\xb5\x98\xce\xc4\x74\xf9\x26\x03\xa8\xad\xe9\x2f\x1d\x4f\x2c\x86\xdf\x43\x05\xff\x36\x26\xcf\x2c\xd5\x64\x49\x4b\x72\xbe\xea\xe7\x5d\x28\x38\x0e\xbe\xfe\x05\x1c\x68\xe7\x14\x93\x5f\x12\xcb\x3c\x87\x98\x9d\x9d\xd2\xcd\x33\xae\x5e\x43\xcb\x3c\xb8\xb2\x28\x1a\xc5\xed\xb8\xcb\xa5\xe9\x8b\x73\x82\x8b\x80\x73\x05\x5b\xa2\xa2\x47\xc7\x64\x0b\x4b\x8e\xd0\xca\xb6\x48\x41\xbd\xdc\xca\xae\x33\xbb\x6f\x59\x29\x9a\x45\x65\x64\x44\x8a\xcf\xc6\xe4\x7d\x95\x75\x4a\x92\x76\x54\xc2\xed\x80\xb2\x25\x78\x1b\xf7\x57\xf0\x29\xb5\xc1\x3c\x34\x4d\x82\xf9\xfe\x3d\x87\xa6\xf4\x30\x72\xc8\x50\x24\x7f\xdc\x07\x5f\xf9\x69\xa0\x12\x54\x8f\x0d\xf9\xee\x54\xd6\x71\x14\x7b\x28\x76\x8a\x9f\x02\xf9\x9e\xf1\xc9\x1b\x8e\x98\xa3\xde\x85\xf8\x78\xf2\x85\xa9\x60\x61\x40\xdf\xf9\x4c\xd6\x45\xfe\x03\x50\x47\x9e\x7e\x22\xba\x30\x2a\xcd\xeb\x24\x09\x5a\xa2\xc3\x27\xdf\xcc\xaf\x7e\xf5\x87\x44\x1a\xbc\x4a\x80\x0e\x9f\xcc\xc8\x25\xfc\xf2\xe7\x36\xfd\x91\xa6\x33\x56\xf8\xf0\x4a\x78\xff\xf3\x0f\xe9\x6f\x8f\x8f\xa2\x52\x3d\xe9\x38\x57\x6e\x66\x8b\x24\x78\x20\x1a\x04\xba\x81\x24\x0b\xeb\x1b\xa0\x04\xb6\x23\x65\x66\xe4\x61\x64\xef\x61\xf4\xea\x38\x6c\x5c\x6c\x95\xec\x2b\x99\x88\x2a\xe7\xb1\x94\xa0\x30\x01\xfc\x5a\x5e\x12\xfc\x94\x8e\xec\xcb\xd4\x3c\x4f\x8c\xd2\xbc\x5a\x66\x31\x1a\xf7\xe0\x8e\x69\x39\x76\xf1\x3b\x4b\x95\x92\xfe\x04\x17\x40\x35\x21\x8f\x96\x9c\x18\x6d\x57\x9e\xa8\xe8\x16\x39\xf6\xf8\xd9\x68\x3c\xb8\x40\x48\xc7\xc6\x52\x1e\x66\x48\x6e\x6c\x73\xe2\xf6\x17\x3c\x3d\x77\x6b\xaf\xf7\xf3\x6f\xb7\xec\x7c\x53\x44\xd9\xf5\xde\xc8\x6b\xd9\xa1\x73\xe4\x72\x7e\xe4\xe7\x5e\xc9\x96\xe4\x83\x1b\xfb\x12\x36\x92\x96\x8b\xcd\x4e\xd6\xbb\xe5\x52\x2e\xa6\x4b\x5a\x6e\x70\x5a\xd3\x0c\x69\xb1\x59\xd7\xab\x4d\x16\x1c\xf0\xa4\xf5\x65\x52\xb5\x22\x97\xe8\xdb\x58\x1c\x5a\x40\x5d\xc1\x81\x54\xd3\xb2\x03\x67\x46\x2b\xc9\x27\x60\x87\x8e\x42\xe8\x19\x44\x9c\x18\x90\xdb\xff\x37\x11\xff\x31\xb6\x8a\xda\x9a\xcf\xa4\x85\xd2\x69\x12\x89\xe0\x44\x3e\xf8\xc9\xa0\x9c\xf0\x5d\xae\xf6\xe9\x0a\xa8\xb1\x73\xbe\x7b\x54\x1d\xc8\x77\xe5\xf9\x11\xa7\xed\x31\x0a\x3f\x88\x11\xfc\x82\x0d\xa0\x86\xa4\x1e\xb4\x27\x01\x79\x8e\xf1\x32\x21\xf1\x47\x30\x57\x91\x36\x4c\x7e\x9d\xb4\x6a\xd5\x51\xb8\xc3\xdd\x91\x92\x5f\xe6\xf3\xa0\xb8\x55\xd1\x95\xf3\x91\xf1\xa8\x73\x01\x69\x55\xcd\xe9\x3b\xb9\x96\x1b\x59\xaf\xd6\x0b\x5a\x2e\x48\x4e\x6f\xe6\x78\x53\xad\xeb\xd5\x1c\x31\x43\x66\xab\x76\x23\xc7\xe1\x4c\x8f\x6c\x31\x55\xf0\x2c\xc9\x00\x1e\x94\xae\x4a\xd8\xde\xdd\xa5\x90\xfc\xde\xbb\xa6\x69\xb4\xd8\x81\x26\x0e\xef\x85\xd7\xdb\xbb\xbb\x2b\x78\xef\x3f\x79\x9e\xfb\xfb\x21\x14\x40\xe9\x46\xa4\x9b\xa7\x84\xf8\xa2\x81\x4f\xf7\x5b\x98\x4f\xc3\x7b\x23\x89\x4e\xaf\x80\xf0\x3e\x49\x7a\x99\x6f\x29\xad\x6a\x72\x2c\x70\xe4\xd6\xd8\x12\x7e\x53\xba\xf1\x32\xf8\x88\xba\xc9\xfe\x0d\x00\x00\xff\xff\x4e\x48\x9d\x66\x3e\x09\x00\x00"
func deeplabv3_xception_65_pascal_voc_train_augYmlBytes() ([]byte, error) {
return bindataRead(
_deeplabv3_xception_65_pascal_voc_train_augYml,
"DeepLabv3_Xception_65_PASCAL_VOC_Train_Aug.yml",
)
}
func deeplabv3_xception_65_pascal_voc_train_augYml() (*asset, error) {
bytes, err := deeplabv3_xception_65_pascal_voc_train_augYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "DeepLabv3_Xception_65_PASCAL_VOC_Train_Aug.yml", size: 2366, mode: os.FileMode(436), modTime: time.Unix(1565384448, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _deeplabv3_xception_65_pascal_voc_train_valYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x56\x4b\x6f\xdc\x46\x0c\xbe\xeb\x57\x10\xf0\x21\x09\x60\x4b\xfb\xca\xc2\xab\x43\x81\x74\x8b\xbe\x90\xda\x41\x92\xba\x45\x2f\x03\x6a\x44\x49\x53\x4b\x33\xc2\x0c\xb5\x6b\xe7\xd7\x17\xf3\xd8\x17\x92\x00\x3e\xf4\xb2\x90\x96\x1f\x39\xe4\xc7\x8f\xd4\x68\x1c\xa8\x84\x9f\x88\xc6\xf7\x58\xed\x96\xe2\x6f\x49\x23\x2b\xa3\xc5\xfa\xad\xf8\xf0\xee\xd3\xf6\xdd\x7b\xf1\x70\xbf\x15\x9f\x2d\x2a\x2d\x1e\xb0\x87\x2b\xf0\x2e\x60\x1a\x78\x36\x93\x85\xc1\xd4\xd4\x67\x8d\xc5\x81\xf6\xc6\x3e\x96\x19\x40\x0c\xf9\x99\xb4\x33\xf6\xe7\xde\xec\xe1\x0a\x8e\x76\x68\x8c\x05\xee\x28\xf9\x01\xec\xc8\x3a\x65\x74\x09\xf3\x7c\xbe\xb8\x40\x26\x0b\x48\xa3\xd9\x9f\xce\xd9\x19\x76\x06\x57\x47\x80\xd2\x8d\xb1\x03\x72\x7c\x06\x47\x03\x6a\x56\xf2\x68\x8f\xd6\xcc\xc7\x41\xa5\xc9\x96\x70\x05\xc7\x17\x07\x93\xa3\x1a\xd8\xc0\x48\xd6\x23\x63\x66\x40\x3b\xec\xa7\x10\x33\x03\xc0\xa1\x5e\xaf\x7c\x69\x00\xed\x38\x95\x60\x51\x8d\xd6\xfc\x4b\x92\x0b\x89\x76\xe8\x6f\x38\x14\xdb\xf4\x66\x5f\x06\xec\x8d\x1c\xa7\x00\x97\x2f\x83\xb7\x01\x3e\x8e\x72\xbd\xea\xa9\x7c\x99\x67\x42\x27\xdf\x17\x64\x76\xee\x50\x93\x93\x56\x85\x4e\x97\xf0\x43\x06\xe7\xed\xfa\x74\x20\xf0\x13\xb5\x03\x69\x8e\xcc\x06\x5a\xae\x61\xdf\x29\xd9\x81\x72\x10\x7a\x42\x35\x18\x1d\xfa\xb9\xbd\xdf\xde\xc3\xeb\xad\x19\x06\xa3\xe1\xbe\xf2\x19\xb8\x0c\x7c\x3f\xb6\x46\x33\x3d\xf1\x1b\xa8\x91\xd1\x11\xe7\xf0\xa7\x23\xa8\x89\xc6\x3e\x28\x6e\x44\x27\xb1\x17\x21\xde\x0e\xfb\xd7\xdf\xb5\x88\xc5\x6c\x7e\x2b\x66\x73\x31\x5b\xbd\xc9\x00\x1a\x6b\x86\xf3\xb4\x93\x86\xe1\x8f\xd0\xbf\x7f\x8c\xc9\x33\x4b\x0d\x59\xd2\x92\x9c\xef\xf9\xe9\x2d\xb4\x1b\x47\xdf\xfd\x02\xf6\x54\x39\xc5\xe4\x1f\x89\x65\x9e\x43\xe4\xa6\x52\xba\xbd\x50\xea\x0d\x74\xcc\xa3\x2b\x8b\xa2\x55\xdc\x4d\x55\x2e\xcd\x50\x9c\xe8\x2d\x02\xce\x15\x6c\x89\x8a\x01\x1d\x93\x2d\x2c\x39\x42\x2b\xbb\x22\xd5\xf4\xf2\x28\x55\x6f\xaa\xef\x45\x29\xda\x65\x6d\x64\x44\x8a\x2f\xc6\xe4\x43\x9d\xf5\x4a\x92\x76\x54\xc2\xbb\x11\x65\x47\xf0\x3e\xbe\x5f\xc3\x43\x1a\x82\x45\x18\x99\x04\xf3\xd3\x7b\x2a\x4d\xe9\x71\xe2\xc0\x50\x94\x7e\x7c\x0f\xb9\xf2\xf3\x48\x25\xa8\x01\x5b\xf2\xb3\xa9\xac\xe3\x68\xf6\x50\xec\x15\x3f\x07\xe9\x5d\xa8\xc9\x07\x8e\x98\x83\xdf\x99\xf9\x70\xf2\x59\xa8\x10\x61\x44\x3f\xf7\x4c\xd6\x45\xf5\x03\x50\x4f\x5e\x7c\x22\xa6\x30\x29\xcd\xb7\xc9\x12\xbc\x44\x8f\xcf\x7e\x94\x5f\xfd\xe6\x0f\x89\x32\x78\x95\x00\x3d\x3e\x9b\x89\x4b\xf8\xf5\xaf\x6d\xfa\x47\x9a\xde\x58\xe1\xcb\x2b\xe1\xe3\x2f\x3f\xa6\x7f\x07\x7c\x12\xb5\x1a\x48\xc7\xad\xf2\x76\xbe\x4c\x86\x47\xa2\x51\xa0\x1b\x49\xb2\xb0\x5e\xfe\x25\xb0\x9d\x28\x33\x13\x8f\x13\xfb\x0c\x63\x56\x87\x55\xe3\xe2\xa0\x64\xdf\x60\x22\xba\x9c\x96\x52\x82\xc2\x15\xe0\xb7\x78\x49\xf0\x23\x1d\xd9\xd7\xd4\x5c\x12\xa3\x34\xaf\x57\x59\xac\xc6\x3d\xba\x03\x2d\x87\x19\xfe\x60\xa9\x56\xd2\x9f\xe0\x02\xa8\x21\xe4\xc9\x92\x13\x93\xed\xcb\xa3\x14\xdd\x32\xc7\x01\xbf\x18\x8d\x7b\x17\x04\xe9\xd8\x58\xca\xc3\x06\xc9\x8d\x6d\x8f\xda\xfe\x4a\xa7\xa7\x61\x1d\xf4\x6e\x71\x31\xb1\x02\xa7\xf6\x38\xb2\x8b\x4d\x11\x6d\x37\x3b\x23\x6f\x64\x8f\xce\x91\xcb\xf9\x89\x2f\xb3\x92\x1d\xc9\x47\x37\x0d\x25\x6c\x24\xad\x96\x9b\x4a\x36\xd5\x6a\x25\x97\xb3\x15\xad\x36\x38\x6b\x68\x8e\xb4\xdc\xdc\x36\xeb\x4d\x16\x12\xf0\xa2\xf5\x6d\x52\x8d\x22\x97\xe4\xdb\x5a\x1c\x3b\x40\x5d\xc3\x9e\x54\xdb\xb1\x03\x67\x26\x2b\xc9\x13\x50\xa1\xa3\x50\x7a\x06\x11\x27\x46\xe4\xee\xff\x25\xe2\xfb\x5b\xab\x68\xac\xf9\x42\x5a\x28\x9d\x16\x91\x08\x39\xe4\xa3\x5f\x0c\xca\x09\x3f\xe4\x6a\x97\xf6\x7f\x83\xbd\xf3\xc3\xa3\x9a\xa0\xbd\x6b\x2f\x8f\xb8\x6a\x0f\x45\xf8\x2d\x8c\xe0\x1f\xd8\x00\x6a\x48\xee\xc1\xfb\x2a\x20\x4f\x25\x9e\xf3\x11\xff\x08\xe1\x6a\xd2\x86\xc9\x3f\x27\xaf\x46\xf5\x14\x3e\xe0\xee\xa0\xc8\xaf\xe9\xdc\x2b\xee\x54\x4c\xe5\x74\x64\x3c\xea\xd4\x3f\xac\xde\xce\x67\xb7\xb8\x6e\xe4\xfa\x76\xb1\x92\x1b\x59\xe3\x66\xb6\x99\xe1\x7c\x33\xbf\x9d\x4b\x5c\x67\xc8\x6c\x55\x35\x71\xdc\xcd\xf4\xc4\x16\x53\x03\x4f\x96\x0c\xe0\x51\xe9\xba\x84\xed\xdd\x5d\x2a\xc9\xbf\xfb\xd4\x34\x4d\x16\x7b\xd0\xc4\xe1\xb2\xf0\x7a\x7b\x77\x77\x0d\x1f\xfd\x4f\x9e\xe7\xfe\xf3\x10\xf8\x57\xba\x15\xe9\xb3\x53\x42\xbc\xce\xc0\xc3\xfd\x16\x16\xb3\x70\xd9\x48\xa6\xe3\x15\x20\x5c\x4e\x92\x5f\xe6\x27\x4a\xab\x86\x1c\x0b\x9c\xb8\x33\xb6\x84\xdf\x95\x6e\xbd\x0d\x3e\xa3\x6e\xb3\xff\x02\x00\x00\xff\xff\x3f\x94\x40\xf7\x3b\x09\x00\x00"
func deeplabv3_xception_65_pascal_voc_train_valYmlBytes() ([]byte, error) {
return bindataRead(
_deeplabv3_xception_65_pascal_voc_train_valYml,
"DeepLabv3_Xception_65_PASCAL_VOC_Train_Val.yml",
)
}
func deeplabv3_xception_65_pascal_voc_train_valYml() (*asset, error) {
bytes, err := deeplabv3_xception_65_pascal_voc_train_valYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "DeepLabv3_Xception_65_PASCAL_VOC_Train_Val.yml", size: 2363, mode: os.FileMode(436), modTime: time.Unix(1565384438, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _faster_rcnn_inception_resnet_v2_atrous_cocoYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x4d\x6f\xdb\x38\x13\xbe\xeb\x57\x0c\xe0\x43\x5b\x20\x95\x1c\x3b\xa9\x5d\x1d\x5e\xa0\xaf\x17\xdd\x0f\x2c\x5c\x20\xe8\xee\x1e\x89\x11\x35\x92\xb8\x95\x48\x81\x1c\xc5\x76\x7e\xfd\x82\x1f\x91\x6d\x24\x87\xec\x5e\x0c\x52\xf3\xcc\x70\x9e\x99\x67\x48\x6b\x1c\xa8\x84\xaf\xe8\x98\xac\x78\xd8\xed\xf7\xe2\x57\x2d\x69\x64\x65\xb4\x78\x20\xb7\x27\x16\x8f\x2b\xf1\x85\xad\x99\x9c\xd8\x7d\xdb\x7d\x83\x05\x78\x1f\x30\x0d\x9c\xcc\x64\x61\x30\x35\xf5\x59\x63\x71\xa0\x83\xb1\x3f\xca\x0c\x20\xc6\xfc\x4e\xda\x19\xfb\xb5\x37\x07\x58\xc0\x6c\x87\xc6\x58\xe0\x8e\x92\x1f\xc0\x23\x59\xa7\x8c\x2e\xe1\x36\xbf\x5d\x5d\x21\x93\x05\xa4\xd1\x6c\x51\x69\xce\x2e\xb0\x4b\x58\xcc\x00\xa5\x1b\x63\x07\xe4\xb8\x06\x47\x03\x6a\x56\x72\xb6\x47\x6b\xe6\xe3\xa0\xd2\x64\x4b\x58\xc0\xbc\x71\x30\x39\xaa\x81\x0d\x8c\x64\x3d\x32\x66\x06\xf4\x88\xfd\x14\x62\x66\x00\x38\xd4\x9f\xee\x3c\x35\x80\x76\x9c\x4a\xb0\xa8\x46\x6b\xfe\x26\xc9\x85\x44\x3b\xf4\x1f\x39\x90\x6d\x7a\x73\x28\x03\xf6\xa3\x1c\xa7\x00\x97\x6f\x83\xb7\x01\x3e\x8e\xf2\xd3\x5d\x4f\xe5\xdb\x3c\x13\x3a\xf9\xbe\x21\xb3\x4b\x87\x9a\x9c\xb4\x2a\xf4\xb9\x84\xff\x65\x70\xd9\xae\x6f\x95\xf7\x87\x9f\x88\x49\x86\xa2\x86\x8a\xdc\xc0\xa1\x53\xb2\x03\xe5\x20\xb4\x83\x6a\x30\x3a\xb4\x32\xc8\xe2\xfd\xce\x0c\x83\xd1\xc9\xd9\xf9\x46\xec\x8c\x66\x3a\xf2\x07\xa8\x91\xd1\x11\xe7\x19\xc0\x1f\x8e\xa0\x89\x6a\xb3\x52\x6b\xa1\x66\xb5\x59\x72\x3a\xaa\x0d\xa3\xda\xa4\x91\x46\xac\x96\xb7\x5b\xb1\xbc\x15\xab\x2d\x34\xd6\x0c\x97\x69\xd6\xd7\xf9\xc1\x93\x31\x79\x66\xa9\x21\x4b\x5a\x92\xf3\x5d\x3e\xef\x42\x83\x71\xf4\xfd\x2e\xe0\x40\x95\x53\x4c\x7e\x49\x2c\xf3\x1c\x62\x35\x2a\xa5\xdb\x2b\x6d\x7e\x84\x8e\x79\x74\x65\x51\xb4\x8a\xbb\xa9\xca\xa5\x19\x8a\x73\x41\x8b\x80\x73\x45\xd5\x9b\xaa\x18\x02\xa9\xc2\x92\x23\xb4\xb2\x2b\x4c\xa8\x83\x98\x93\x2c\xda\x75\x6d\x64\x31\xef\x45\x70\x16\x3e\xe9\xa1\xce\x7a\x25\x49\x3b\x2a\xe1\xcb\x88\xb2\x23\xf8\x3d\xee\x6f\xe0\xcf\xa4\xe1\x55\x50\x7c\x82\xf9\xe1\x3b\xe7\xa9\xf4\x38\x71\xa0\x1b\xeb\x10\xf7\x21\x7d\x3e\x8d\x54\x82\x1a\xb0\x25\x3f\x5a\xca\x3a\x8e\x66\x0f\xc5\x5e\xf1\x29\x28\xe7\x4a\x0c\x3e\x70\xc4\x3c\xfb\x5d\x98\x9f\x4f\xbe\x08\x15\x22\x8c\xe8\xc7\x96\xc9\xba\x28\x5e\x00\xea\x69\x20\xcd\x22\xa6\x30\x29\xcd\xdb\x64\x09\x5e\xa2\xc7\x93\x9f\xc4\x77\xe1\x10\x11\x8b\xfa\x2e\x21\x7a\x3c\x99\x89\x4b\xf8\xe5\xaf\x5d\xfa\x22\x4d\x6f\x6c\x28\x59\x09\x0f\x3f\xff\x3f\x33\x13\x8f\x13\xfb\xb3\x62\xfc\xca\x4c\xba\x56\xba\xad\xcc\x31\x7b\x85\x4f\x84\xcf\x28\xa8\xcc\x11\x16\x80\xaf\x31\x4b\xd0\x99\x50\xf6\x92\xdc\x35\xb5\xa6\x37\xc8\xeb\x55\xb0\x54\xe6\x48\x6e\xa6\x76\xee\x75\xf8\x1e\xd9\x8d\xd6\x54\x58\xa9\x5e\xb1\x7a\x15\xea\xa4\xb1\xcf\x58\xd9\xa3\x73\xaf\xa2\x92\x25\xc2\x1a\x42\x9e\x2c\x39\x31\xd9\xbe\x9c\x25\xeb\xd6\x39\x0e\xf8\x64\x34\x1e\x5c\x10\xae\x63\x63\x29\x0f\xb7\x42\x6e\x6c\x5b\xb8\x93\x76\xc4\xae\xf0\x73\x16\x7e\x44\x8f\x15\xf5\x4e\x84\x39\xc9\xf9\xc8\xd7\xd1\x65\x47\xf2\x87\x9b\x86\x12\x70\xbb\x5e\x62\xd5\x6c\x96\x88\x95\xac\xb6\x9b\xf5\xdd\xe6\x5e\x56\xcd\xfd\x86\xd6\x92\xd6\xdb\x65\x16\x84\xe8\x15\xe9\x46\x92\xaa\x51\xe4\x92\x36\x5b\x8b\x63\x07\xa8\x6b\x38\x90\x6a\x3b\x76\xe0\xcc\x64\x25\x79\xb9\x56\xe8\x28\x50\xc8\x20\xe2\xc4\x88\xdc\xfd\x0b\x42\x69\x1c\x5f\x0e\xe8\x7f\xbb\x70\x8a\xc6\x9a\x27\xf2\x1e\xe9\x12\x11\x21\xab\x7c\xac\x32\x00\xe5\x84\x1f\x73\xf5\x98\x6e\xeb\x06\x7b\xe7\x67\x45\x35\xc0\x76\xa2\x1b\xaf\xa5\x78\x3b\x3e\xd3\xf2\x17\x27\x82\x5f\xb0\x01\xd4\x90\xdc\x83\xf7\x22\x20\xcf\xa4\x2f\x2b\x14\x3f\x84\x70\x35\x69\xc3\xe4\xd7\xc9\xab\x51\x3d\x85\xe7\xd6\x3d\xcb\xf7\x65\x81\x0f\x8a\x3b\x15\x53\x39\x1f\x19\x8f\xba\xe8\xe8\x46\x56\xb8\x59\x37\xb8\xc2\xe6\x33\xe2\xfa\xf3\xdd\xa7\xfb\xed\xf2\x7e\x83\x35\x36\xcb\x66\x55\x67\xc8\x6c\x55\x35\x71\xbc\x57\xe9\xc8\x16\x53\x4b\xcf\x96\x0c\xe0\x87\xd2\x75\x09\xbb\xfd\x3e\x51\xf2\x7b\x9f\x9a\xa6\xc9\x62\x0f\x9a\x38\x3c\xed\xef\x77\xfb\xfd\x0d\x3c\xf8\x9f\x3c\xcf\x3f\xf8\x31\xf6\x4f\x8a\xd2\xad\x48\x6f\x45\x09\xe9\xcf\x46\xda\xcf\xaf\x74\xf8\xff\x90\xc0\x19\xc0\x80\x5a\x35\xe4\x58\xe0\xc4\x9d\xb1\x25\xfc\xa6\x74\xeb\x6d\xf0\x1d\x75\x9b\xfd\x13\x00\x00\xff\xff\xf1\x89\xc8\x38\xdf\x08\x00\x00"
func faster_rcnn_inception_resnet_v2_atrous_cocoYmlBytes() ([]byte, error) {
return bindataRead(
_faster_rcnn_inception_resnet_v2_atrous_cocoYml,
"Faster_RCNN_Inception_ResNet_v2_Atrous_COCO.yml",
)
}
func faster_rcnn_inception_resnet_v2_atrous_cocoYml() (*asset, error) {
bytes, err := faster_rcnn_inception_resnet_v2_atrous_cocoYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "Faster_RCNN_Inception_ResNet_v2_Atrous_COCO.yml", size: 2271, mode: os.FileMode(436), modTime: time.Unix(1563315105, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _faster_rcnn_inception_resnet_v2_atrous_lowproposals_cocoYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x56\x4b\x8f\xdc\x36\x0c\xbe\xfb\x57\x10\xd8\x43\x12\x60\x63\xcf\x63\x1f\x13\x1f\x0a\xa4\x53\xa4\x0f\x04\x13\x60\x91\xb6\x47\x81\x96\x69\x5b\x8d\x2d\x1a\x12\xbd\xb3\x9b\x5f\x5f\x48\xf2\x7a\x66\x91\x3d\x6c\x81\x5e\x06\x92\xf9\x91\xe2\x47\x7e\x94\xc6\xe2\x40\x25\x7c\x42\x2f\xe4\xd4\xdd\xfe\x70\x50\xbf\x5b\x4d\xa3\x18\xb6\xea\x8e\xfc\x81\x44\xdd\x6f\xd4\x47\x71\x3c\x79\xf5\x99\x8f\xa3\xe3\x91\x3d\xf6\x5e\xed\xbf\xec\xbf\xc0\x05\x84\x00\xc0\x0d\x3c\xf2\xe4\x60\xe0\x9a\xfa\xac\x71\x38\xd0\x91\xdd\xb7\x32\x03\x48\x07\x7c\x25\xeb\xd9\x7d\xea\xf9\x08\x17\xb0\xd8\xa1\x61\x07\xd2\xd1\xec\x07\x70\x4f\xce\x1b\xb6\x25\xac\xf3\xf5\xe6\x19\x72\xb6\x80\x66\x2b\x0e\x8d\x95\xec\x0c\xbb\x82\x8b\x05\x60\x6c\xc3\x6e\x40\x49\x6b\xf0\x34\xa0\x15\xa3\x17\x7b\xb2\x66\x21\x0e\x1a\x4b\xae\x84\x0b\x58\x36\x1e\x26\x4f\x35\x08\xc3\x48\x2e\x20\x53\x66\x40\xf7\xd8\x4f\x31\x66\x06\x80\x43\x7d\x73\x15\xa8\x01\xb4\xe3\x54\x82\x43\x33\x3a\xfe\x87\xb4\x14\x1a\xdd\xd0\xbf\x97\x48\xb6\xe9\xf9\x58\x46\xec\x7b\x3d\x4e\x11\xae\x5f\x07\x6f\x23\x7c\x1c\xf5\xcd\x55\x4f\xe5\xeb\x3c\x67\xf4\xec\xfb\x8a\xcc\xce\x1d\x6a\xf2\xda\x99\xd8\xf4\x12\x7e\xca\xe0\xbc\x5d\x5f\xaa\xe0\x0f\xbf\x90\x90\x8e\x45\x8d\x15\xb9\x84\x63\x67\x74\x07\xc6\x43\x6c\x07\xd5\xc0\x36\xb6\x32\xca\xe2\xed\x9e\x87\x81\xed\xec\xec\x43\x23\xf6\x6c\x85\x1e\xe4\x1d\xd4\x28\xe8\x49\xf2\x0c\xe0\x4f\x4f\xd0\x24\xe9\x39\x6d\xad\x32\x8b\xf4\x1c\x79\x9b\xa4\x87\x49\x7a\xfd\xb9\xf4\x34\x6b\x56\x9b\xd5\x7a\xa7\x56\x6b\xb5\xd9\x41\xe3\x78\x38\xcf\xb9\x7e\x9e\x2c\x7c\x67\xce\x33\x47\x0d\x39\xb2\x9a\x7c\x68\xf9\x69\x17\xbb\x8d\x63\x68\x7e\x01\x47\xaa\xbc\x11\x0a\x4b\x12\x9d\xe7\x90\x4a\x53\x19\xdb\x3e\x13\xea\x7b\xe8\x44\x46\x5f\x16\x45\x6b\xa4\x9b\xaa\x5c\xf3\x50\x9c\xaa\x5b\x44\x9c\x2f\xaa\x9e\xab\x62\x88\x0c\x0b\x47\x9e\xd0\xe9\xae\xe0\x58\x14\xb5\x24\x59\xb4\xdb\x9a\x75\xb1\xec\x55\x74\x56\x21\xe9\xa1\xce\x7a\xa3\xc9\x7a\x2a\xe1\xe3\x88\xba\x23\xf8\x9c\xf6\x97\xf0\xd7\x2c\xe8\x4d\x94\xff\x0c\x0b\x93\x78\xca\xd3\xd8\x71\x92\x48\x37\xd5\x21\xed\x63\xfa\xf2\x38\x52\x09\x66\xc0\x96\xc2\x9c\x19\xe7\x25\x99\x03\x14\x7b\x23\x8f\x51\x46\xcf\x94\x11\x02\x27\xcc\x93\xdf\x99\xf9\xe9\xe4\xb3\x50\x31\xc2\x88\x61\x86\x85\x9c\x4f\x4a\x06\xa0\x9e\x06\xb2\xa2\x52\x0a\x93\xb1\xb2\x9b\x2d\xd1\x4b\xf5\xf8\x18\xc6\xf2\x4d\x3c\x44\xa5\xa2\xbe\x99\x11\x3d\x3e\xf2\x24\x25\xfc\xf6\xf7\x7e\xfe\xa2\xb9\x67\x17\x4b\x56\xc2\xdd\xaf\x3f\x67\x3c\xc9\x38\x49\x38\x2b\xc5\xaf\x78\xb2\xb5\xb1\x6d\xc5\x0f\xd9\x0b\x7c\x12\x7c\x41\x41\xc5\x0f\x70\x01\xf8\x12\xb3\x19\xba\x10\xca\x7e\x24\xf7\x9c\x5a\xd3\x33\xca\x76\x13\x2d\x15\x3f\x90\x5f\xa8\x9d\x7a\x1d\xbf\x27\x76\xa3\xe3\x0a\x2b\xd3\x1b\x31\x2f\x42\xbd\x66\xf7\x84\xd5\x3d\x7a\xff\x22\x6a\xb6\x24\x58\x43\x28\x93\x23\xaf\x26\xd7\x97\x8b\x64\xfd\x36\xc7\x01\xbf\xb3\xc5\xa3\x8f\xc2\xf5\xc2\x8e\xf2\x78\x45\xe4\xec\xda\xc2\x3f\x5a\x4f\xe2\x8b\x30\x67\xf1\x47\xf5\x58\x51\xef\x55\x9c\x93\x5c\x1e\xe4\x79\x74\xdd\x91\xfe\xe6\xa7\xa1\x04\xdc\x6d\x57\x58\x35\xb7\x2b\xc4\x4a\x57\xbb\xdb\xed\xd5\xed\xb5\xae\x9a\xeb\x5b\xda\x6a\xda\xee\x56\x59\x14\x62\x50\xa4\x1f\x49\x9b\xc6\x90\x9f\xb5\xd9\x3a\x1c\x3b\x40\x5b\xc3\x91\x4c\xdb\x89\x07\xcf\x93\xd3\x14\xe4\x5a\xa1\xa7\x48\x21\x83\x84\x53\x23\x4a\xf7\x1f\x08\xcd\xe3\xf8\xe3\x80\xfe\x0f\xb7\x4f\xd1\x38\xfe\x4e\xc1\x7d\xbe\x51\x54\x4c\x31\x1f\xab\x0c\xc0\x78\x15\x66\xde\xdc\xcf\xf7\x78\x83\xbd\x0f\x83\x63\x1a\x10\x37\xd1\x65\x10\x56\xba\x37\x9f\x38\x86\x2b\x15\x21\x2c\x84\x01\x2d\xcc\xee\xd1\xfb\x22\x22\x4f\x15\x38\x2f\x57\xfa\x10\xc3\xd5\x64\x59\x28\xac\x67\xaf\xc6\xf4\x14\x1f\x62\xff\xa4\xe5\x1f\xab\x7d\x34\xd2\x99\x94\xca\xe9\xc8\x74\xd4\xa9\xbd\xd7\xd7\xbb\xfa\xf6\x03\x55\xcd\x87\xea\xe6\x76\x7d\x73\xd5\x5c\xad\x37\x7a\x77\xb5\xbe\xf9\xb0\xc2\x0a\x77\x75\x86\x22\xce\x54\x93\xa4\x4b\x96\x1e\xc4\xe1\xdc\xdf\x93\x25\x03\xf8\x66\x6c\x5d\xc2\xfe\x70\x98\x29\x85\x7d\x48\xcd\xd2\xe4\xb0\x07\x4b\x12\x1f\xfd\xb7\xfb\xc3\xe1\x12\xee\xc2\x4f\x9e\xe7\xef\xc2\x4c\x87\xc7\xc6\xd8\x56\xcd\xaf\x48\x09\xf3\xdf\x90\x79\xbf\xbc\xdf\xf1\x9f\xc5\x0c\xce\x00\x06\xb4\xa6\x21\x2f\x0a\x27\xe9\xd8\x95\xf0\x87\xb1\x6d\xb0\xc1\x57\xb4\x6d\xf6\x6f\x00\x00\x00\xff\xff\x54\x0d\x59\x41\x06\x09\x00\x00"
func faster_rcnn_inception_resnet_v2_atrous_lowproposals_cocoYmlBytes() ([]byte, error) {
return bindataRead(
_faster_rcnn_inception_resnet_v2_atrous_lowproposals_cocoYml,
"Faster_RCNN_Inception_ResNet_v2_Atrous_Lowproposals_COCO.yml",
)
}
func faster_rcnn_inception_resnet_v2_atrous_lowproposals_cocoYml() (*asset, error) {
bytes, err := faster_rcnn_inception_resnet_v2_atrous_lowproposals_cocoYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "Faster_RCNN_Inception_ResNet_v2_Atrous_Lowproposals_COCO.yml", size: 2310, mode: os.FileMode(436), modTime: time.Unix(1563315105, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _faster_rcnn_inception_v2_cocoYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x4d\x6f\xe3\x38\x0f\xbe\xfb\x57\x10\xc8\x61\x66\x80\x8e\x9d\x8f\x4e\x9a\xfa\xf0\x02\xef\x66\x31\xfb\x81\x45\x0a\x14\xb3\xbb\x47\x83\x96\x69\x5b\x5b\x5b\x34\x24\xba\x49\xfa\xeb\x17\x92\xd5\x7c\xa0\x3d\x74\x2f\x81\x64\x3e\xa4\xf8\x90\x0f\xa5\x18\xec\x29\x87\xef\xe8\x84\x6c\xf1\xb8\xdd\xed\x8a\xdf\x8c\xa2\x41\x34\x9b\xe2\x79\x59\x6c\x1f\xb6\x0f\x30\x03\x8f\x02\xae\xe1\xc8\xa3\x85\x9e\x2b\xea\x92\xda\x62\x4f\x7b\xb6\x4f\x79\x02\x30\x45\xf9\x41\xc6\xb1\xfd\xde\xf1\x1e\x66\x70\xb2\x43\xcd\x16\xa4\xa5\xe8\x07\xf0\x4c\xd6\x69\x36\x39\x2c\xd2\xc5\xf2\x0a\x19\x2d\xa0\xd8\x88\x45\x6d\x24\xb9\xc0\xce\x61\x76\x02\x68\x53\xb3\xed\x51\xa6\x35\x38\xea\xd1\x88\x56\x27\xfb\x64\x4d\x7c\x1c\xd4\x86\x6c\x0e\x33\x38\x6d\x1c\x8c\x8e\x2a\x10\x86\x81\xac\x47\x4e\x99\x01\x3d\x63\x37\x86\x98\x09\x00\xf6\xd5\xfa\xd6\x53\x03\x68\x86\x31\x07\x8b\x7a\xb0\xfc\x0f\x29\xc9\x14\xda\xbe\xfb\x2a\x81\x6c\xdd\xf1\x3e\x0f\xd8\xaf\x6a\x18\x03\x5c\x7d\x0c\xde\x04\xf8\x30\xa8\xf5\x6d\x47\xf9\xc7\x3c\x23\x3a\xfa\x7e\x20\xb3\x4b\x87\x8a\x9c\xb2\x3a\x74\x36\x87\xff\x25\x70\xd9\xae\x87\xd2\xfb\xc3\xcf\x24\xa4\x42\x51\x43\x45\x6e\x60\xdf\x6a\xd5\x82\x76\x10\xda\x41\x15\xb0\x09\xad\x0c\xb2\xf8\xbc\xe5\xbe\x67\x13\x9d\x5d\x02\xbe\x15\x5b\x36\x42\x07\xf9\x02\x15\x0a\x3a\x92\x14\xfe\x74\x04\xf5\xa4\x2f\xab\x8c\x29\xf4\xa5\xbe\x14\x2b\x2e\x96\xf3\xc5\xa6\x98\x2f\x8a\xe5\x06\x6a\xcb\xfd\x45\x62\x09\x40\x75\x9d\x13\xbc\x30\xa7\x89\xa5\x9a\x2c\x19\x45\xce\x77\xf6\xbc\x0b\x4d\xc5\xc1\xf7\x38\x83\x3d\x95\x4e\x0b\xf9\x25\x89\x4a\x53\x98\x2a\x50\x6a\xd3\x5c\xe9\xf1\x2b\xb4\x22\x83\xcb\xb3\xac\xd1\xd2\x8e\x65\xaa\xb8\xcf\xce\x45\xcc\x02\xce\x65\x65\xc7\x65\xd6\x07\x22\x99\x25\x47\x68\x55\x9b\x71\xe0\x5e\x9c\x92\xcc\x9a\x55\xc5\x2a\x3b\xed\x8b\xe0\x5c\xf8\xa4\xfb\x2a\xe9\xb4\x22\xe3\x28\x87\xff\x0f\xa8\x5a\x82\x3f\xa6\xfd\x0d\xfc\x15\x75\xbb\x0c\x2a\x8f\x30\x3f\x70\xe7\x3c\xb5\x19\x46\x09\x74\xa7\x3a\x4c\xfb\x90\xbe\x1c\x07\xca\x41\xf7\xd8\x90\x1f\x27\x6d\x9d\x4c\x66\x0f\xc5\x4e\xcb\x31\xa8\xe5\x4a\x00\x3e\xf0\x84\x79\xf5\xbb\x30\xbf\x9e\x7c\x11\x2a\x44\x18\xd0\x8f\xaa\x90\x75\x93\x60\x01\xa8\xa3\x9e\x8c\x14\x53\x0a\xa3\x36\xb2\x89\x96\xe0\x55\x74\x78\xf4\xd3\xf7\x29\x1c\x52\x4c\x45\xfd\x14\x11\x1d\x1e\x79\x94\x1c\x7e\xfd\x7b\x1b\xbf\x28\xee\xd8\x86\x92\xe5\xf0\xf8\xcb\x4f\x09\x8f\x32\x8c\xe2\xcf\x9a\xe2\x97\x3c\x9a\x4a\x9b\xa6\xe4\x43\xf2\x0e\x9f\x09\x7e\x42\x41\xc9\x07\x98\x01\xbe\xc7\x2c\x42\x4f\x84\x92\xb7\xe4\xae\xa9\xd5\x1d\xa3\xac\x96\xc1\x52\xf2\x81\xdc\x2b\xb5\x73\xab\xc3\xe7\xa9\x4e\x96\x4b\x2c\x75\xa7\x45\xbf\x07\x74\x8a\x6d\x44\xaa\x0e\x9d\x7b\x0f\x13\x0d\x01\x54\x13\xca\x68\xc9\x15\xa3\xed\xf2\x93\x58\xdd\x2a\xc5\x1e\x5f\xd8\xe0\xde\x05\xc9\x3a\x61\x4b\x69\xb8\x03\x52\xb6\x4d\xe6\x8e\xc6\x91\xb8\xcc\xcf\x58\xf8\x29\x3a\x2c\xa9\x73\x45\x98\x90\x54\x0e\x72\x1d\x5d\xb5\xa4\x9e\xdc\xd8\xe7\x80\x9b\xd5\x1c\xcb\xfa\x6e\x8e\x58\xaa\x72\x73\xb7\xba\xbd\xfb\xa6\xca\xfa\xdb\x1d\xad\x14\xad\x36\xf3\x24\x48\xd0\x6b\xd1\x0d\xa4\x74\xad\xc9\x45\x55\x36\x16\x87\x16\xd0\x54\xb0\x27\xdd\xb4\xe2\xc0\xf1\x68\x55\x20\x52\xa2\xa3\x40\x21\x81\x09\x57\x0c\x28\xed\x7f\x20\x14\x07\xf1\xed\x68\x7e\xf4\x7a\xc9\x6a\xcb\x2f\xe4\x31\xf1\xc2\x28\x42\x1e\xe9\x50\xfa\xcb\xcb\x15\x7e\xa4\xf5\x73\xbc\x8d\x6b\xec\x9c\x9f\x0b\x5d\x83\xd8\x91\x6e\xbc\x6e\xa6\xdb\xef\x95\x88\xbf\x18\x11\xfc\x42\x18\xd0\x40\x74\x0f\xde\xb3\x80\x3c\xd3\xbc\xac\xc9\xf4\x21\x84\xab\xc8\xb0\x90\x5f\x47\xaf\x5a\x77\x14\x9e\x53\xf7\x2a\xd5\xb7\x25\xdd\x6b\x69\xf5\x94\xca\xf9\xc8\xe9\xa8\x73\x0f\x17\xf5\xe2\x7e\xbe\x5c\xae\x97\x6a\xb1\x56\xcb\xea\x1e\x55\x79\x5f\xaa\xdb\x7a\x83\x1b\xb5\x5c\xaf\xeb\x04\x45\xac\x2e\x47\x99\xee\x50\x3a\x88\xc5\xd8\xc4\xb3\x25\x01\x78\xd2\xa6\xca\x61\xbb\xdb\x45\x4a\x7e\xef\x53\x33\x34\x5a\xec\xc0\x90\x84\xa7\xfb\xf3\x76\xb7\xbb\x81\x47\xff\x93\xa6\xe9\x17\x3f\xb2\xfe\xc9\xd0\xa6\x29\xe2\x4b\x90\x43\xfc\x33\x11\xf7\xa7\x57\x38\xfc\x3f\x88\xe0\x04\xa0\x47\xa3\x6b\x72\x52\xe0\x28\x2d\xdb\x1c\x7e\xd7\xa6\xf1\x36\xf8\x81\xa6\x49\xfe\x0d\x00\x00\xff\xff\xc4\x19\x85\x48\xb1\x08\x00\x00"
func faster_rcnn_inception_v2_cocoYmlBytes() ([]byte, error) {
return bindataRead(
_faster_rcnn_inception_v2_cocoYml,
"Faster_RCNN_Inception_v2_COCO.yml",
)
}
func faster_rcnn_inception_v2_cocoYml() (*asset, error) {
bytes, err := faster_rcnn_inception_v2_cocoYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "Faster_RCNN_Inception_v2_COCO.yml", size: 2225, mode: os.FileMode(436), modTime: time.Unix(1563315105, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _faster_rcnn_nas_cocoYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x5b\x6f\xe3\x36\x13\x7d\xd7\xaf\x18\xc0\x0f\xbb\x0b\x64\x25\x5f\x92\xd8\xab\x87\x0f\xd8\xcf\xc5\xb6\x28\x0a\x2f\x90\x6e\xdb\x47\x61\x48\x8d\x24\x36\x12\x29\x90\xa3\xd8\xce\xaf\x2f\x78\x89\x2f\x48\x80\xa6\x2f\x06\xa9\x39\x33\x9c\x33\x73\x86\xb4\xc6\x81\x4a\xf8\x86\x8e\xc9\x56\x0f\xdb\xdd\xae\xda\x7d\xfd\xbd\xda\x7e\xdf\x7e\x87\x19\x78\x23\x98\x06\x8e\x66\xb2\x30\x98\x9a\xfa\xac\xb1\x38\xd0\xde\xd8\xc7\x32\x03\x88\xce\x3f\x48\x3b\x63\xbf\xf5\x66\x0f\x33\x38\xd9\xa1\x31\x16\xb8\xa3\xe4\x07\xf0\x44\xd6\x29\xa3\x4b\x58\xe4\x8b\xe5\x15\x32\x59\x40\x1a\xcd\x16\x95\xe6\xec\x02\x3b\x87\xd9\x09\xa0\x74\x63\xec\x80\x1c\xd7\xe0\x68\x40\xcd\x4a\x9e\xec\xd1\x9a\xf9\x38\xa8\x34\xd9\x12\x66\x70\xda\x38\x98\x1c\xd5\xc0\x06\x46\xb2\x1e\x19\x33\x03\x7a\xc2\x7e\x0a\x31\x33\x00\x1c\xea\xfb\x5b\x4f\x0d\xa0\x1d\xa7\x12\x2c\xaa\xd1\x9a\xbf\x49\x72\x21\xd1\x0e\xfd\x67\x0e\x64\x9b\xde\xec\xcb\x80\xfd\x2c\xc7\x29\xc0\xe5\xfb\xe0\x6d\x80\x8f\xa3\xbc\xbf\xed\xa9\x7c\x9f\x67\x42\x27\xdf\x77\x64\x76\xe9\x50\x93\x93\x56\x8d\x1c\xca\xf9\xbf\x0c\x2e\xdb\xf5\x5d\x78\x7f\xf8\x89\x98\x64\x28\x6a\xa8\xc8\x0d\xec\x3b\x25\x3b\x50\x0e\x42\x3b\xa8\x06\xa3\x43\x2b\x83\x2c\x3e\x6e\xcd\x30\x18\x9d\x9c\x9d\x6f\xc4\xd6\x68\xa6\x03\x7f\x82\x1a\x19\x1d\x71\x9e\x01\xfc\xe1\x08\x9a\x28\x2b\x2b\xb5\xae\x34\xba\x4a\x1a\x69\xaa\xe5\x7c\xb1\xa9\xe6\x8b\x6a\xb9\x81\xc6\x9a\xe1\x32\x9f\xfa\x3a\x11\x78\x36\x26\xcf\x2c\x35\x64\x49\x4b\x72\xbe\x9d\xe7\x5d\xe8\x24\x8e\xbe\xb1\x05\xec\x49\x38\xc5\xe4\x97\xc4\x32\xcf\x21\xd2\x16\x4a\xb7\x57\x22\xfc\x0c\x1d\xf3\xe8\xca\xa2\x68\x15\x77\x93\xc8\xa5\x19\x8a\x73\xe5\x8a\x80\x73\x85\xe8\x8d\x28\x86\x90\x7d\x61\xc9\x11\x5a\xd9\x15\x26\x10\xae\x4e\x49\x16\xed\xaa\x36\xb2\x38\xed\xab\xe0\x5c\xf9\xa4\x87\x3a\xeb\x95\x24\xed\xa8\x84\xaf\x23\xca\x8e\xe0\xb7\xb8\xbf\x81\x3f\x93\x58\x97\x41\xda\x09\xe6\xa7\xec\x9c\xa7\xd2\xe3\xc4\x81\x6e\xac\x43\xdc\x87\xf4\xf9\x38\x52\x09\x6a\xc0\x96\xfc\x0c\x29\xeb\x38\x9a\x3d\x14\x7b\xc5\xc7\x20\x91\xab\xae\xfb\xc0\x11\xf3\xe2\x77\x61\x7e\x39\xf9\x22\x54\x88\x30\xa2\x9f\x4f\x26\xeb\xa2\x4a\x01\xa8\xa7\x81\x34\x57\x31\x85\x49\x69\xde\x24\x4b\xf0\xaa\x7a\x3c\xfa\x91\xfb\x10\x0e\xa9\x62\x51\x3f\x24\x44\x8f\x47\x33\x71\x09\xbf\xfc\xb5\x4d\x5f\xa4\xe9\x8d\x0d\x25\x2b\xe1\xe1\xe7\xff\x67\x66\xe2\x71\x62\x7f\x56\x8c\x2f\xcc\xa4\x6b\xa5\x5b\x61\x0e\xd9\x1b\x7c\x22\xfc\x84\x02\x61\x0e\x30\x03\x7c\x8b\x59\x82\x9e\x08\x65\xaf\xc9\x5d\x53\x6b\x7a\x83\xbc\x5a\x06\x8b\x30\x07\x72\x27\x6a\xe7\x5e\x87\xef\x91\xdd\x68\x8d\x40\xa1\x7a\xc5\xea\x4d\xa8\x93\xc6\xbe\x60\x65\x8f\xce\xbd\x89\x4a\x96\x08\x6b\x08\x79\xb2\xe4\xaa\xc9\xf6\xe5\x49\xb2\x6e\x95\xe3\x80\xcf\x46\xe3\xde\x05\xe1\x3a\x36\x96\xf2\x30\xfe\xb9\xb1\x6d\xe1\x8e\xda\x11\xbb\xc2\xcf\x59\xf8\xa9\x7a\x14\xd4\xbb\x2a\xcc\x49\xce\x07\xbe\x8e\x2e\x3b\x92\x8f\x6e\x1a\x4a\xc0\xcd\x6a\x8e\xa2\x59\xcf\x11\x85\x14\x9b\xf5\xea\x76\x7d\x27\x45\x73\xb7\xa6\x95\xa4\xd5\x66\x9e\x05\x21\x7a\x45\xba\x91\xa4\x6a\x14\xb9\xa4\xcd\xd6\xe2\xd8\x01\xea\x1a\xf6\xa4\xda\x8e\x1d\x38\x33\x59\x49\x5e\xae\x02\x1d\x05\x0a\x19\x44\x5c\x35\x22\x77\xff\x81\x50\x1a\xc7\xd7\x03\xfa\x2f\x37\x4b\xd1\x58\xf3\x4c\xba\x52\x3a\xdd\x16\x55\x38\x3e\x1f\x45\x06\xa0\x5c\xe5\xe7\x59\x3d\xa5\xfb\xb7\xc1\xde\xf9\xa1\x50\x0d\xb0\x9d\xe8\xc6\x8b\x26\xde\x77\x2f\xf9\xfb\xab\x10\xc1\x2f\xd8\x00\x6a\x48\xee\xc1\x7b\x16\x90\x67\x76\x97\xa5\x88\x1f\x42\xb8\x9a\xb4\x61\xf2\xeb\xe4\xd5\xa8\x9e\xc2\x03\xea\x5e\x74\xfa\xba\x92\x7b\xc5\x9d\x8a\xa9\x9c\x8f\x8c\x47\x9d\x5b\xb7\x22\xf1\x65\xd9\x7c\xf9\xb2\xac\xef\xd6\x9b\x45\x7d\xbf\x10\x8b\x06\x17\xf3\xfb\xb5\xa4\x5b\xb1\x9a\xdf\x65\xc8\x6c\x95\x98\x38\x5e\xa0\x74\x60\x8b\xa9\x77\x67\x4b\x06\xf0\xa8\x74\x5d\xc2\x76\xb7\x4b\x94\xfc\xde\xa7\xa6\x69\xb2\xd8\x83\x26\x0e\x8f\xf5\xc7\xed\x6e\x77\x03\x0f\xfe\x27\xcf\xf3\x4f\x7e\x5e\xfd\x23\xa1\x74\x5b\xa5\xdb\xbf\x84\xf4\xf7\x21\xed\x4f\xef\x6e\xf8\x47\x90\xc0\x19\xc0\x80\x5a\x35\xe4\xb8\xc2\x89\x3b\x63\x4b\xf8\x55\xe9\xd6\xdb\xe0\x07\xea\x36\xfb\x27\x00\x00\xff\xff\xfb\x07\xbd\x07\x9a\x08\x00\x00"
func faster_rcnn_nas_cocoYmlBytes() ([]byte, error) {
return bindataRead(
_faster_rcnn_nas_cocoYml,
"Faster_RCNN_NAS_COCO.yml",
)
}
func faster_rcnn_nas_cocoYml() (*asset, error) {
bytes, err := faster_rcnn_nas_cocoYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "Faster_RCNN_NAS_COCO.yml", size: 2202, mode: os.FileMode(436), modTime: time.Unix(1563315105, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _faster_rcnn_nas_lowproposals_cocoYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x4d\x8f\xdc\x36\x0c\xbd\xfb\x57\x10\xd8\x43\x12\x60\x63\xcf\x8e\xf7\x63\xe0\x43\x81\x74\x8a\xb4\x28\x82\x09\x90\xa6\xed\xd1\xa0\x65\xda\x56\x23\x8b\x86\x44\x67\x66\xf2\xeb\x0b\xc9\xda\xf9\x40\xf6\x90\x5c\x06\x92\xf9\x48\xf1\x91\x8f\xd2\x58\x1c\xa9\x82\xf7\xe8\x85\x5c\xfd\x69\xbb\xdb\xd5\xbb\x77\x7f\xd5\x1f\x78\x3f\x39\x9e\xd8\xa3\xf1\xf5\xf6\xe3\xf6\x23\xdc\x40\x40\x02\x77\x70\xe4\xd9\xc1\xc8\x2d\x99\xac\x73\x38\xd2\x9e\xdd\x97\x2a\x03\x58\x22\x7d\x26\xeb\xd9\xbd\x37\xbc\x87\x1b\x38\xd9\xa1\x63\x07\x32\x50\xf2\x03\xf8\x4a\xce\x6b\xb6\x15\xdc\xe5\x77\xeb\x2b\x64\xb2\x80\x62\x2b\x0e\xb5\x95\xec\x02\xbb\x82\x9b\x13\x40\xdb\x8e\xdd\x88\xb2\xac\xc1\xd3\x88\x56\xb4\x3a\xd9\x17\x6b\x16\xe2\xa0\xb6\xe4\x2a\xb8\x81\xd3\xc6\xc3\xec\xa9\x05\x61\x98\xc8\x05\xe4\x92\x19\xd0\x57\x34\x73\x8c\x99\x01\xe0\xd8\x3e\xde\x07\x6a\x00\xfd\x34\x57\xe0\x50\x4f\x8e\xff\x23\x25\x85\x42\x37\x9a\xb7\x12\xc9\x76\x86\xf7\x55\xc4\xbe\x55\xd3\x1c\xe1\xea\xc7\xe0\x7d\x84\x4f\x93\x7a\xbc\x37\x54\xfd\x98\x67\x42\x27\xdf\x1f\xc8\xec\xd2\xa1\x25\xaf\x9c\x9e\x24\x96\xf3\x97\x0c\x2e\xdb\xf5\xb1\x09\xfe\xf0\x1b\x09\xa9\x58\xd4\x58\x91\x5b\xd8\x0f\x5a\x0d\xa0\x3d\xc4\x76\x50\x0b\x6c\x63\x2b\xa3\x2c\x5e\x6f\x79\x1c\xd9\x26\x67\x9f\x41\x68\xc5\x96\xad\xd0\x41\xde\x40\x8b\x82\x9e\x24\x87\xbf\x3d\x41\xb7\x68\xcc\x29\x6b\x6b\x8b\xbe\x36\x97\x1a\x53\xac\xb8\x5e\xaf\xee\x36\xf5\xea\xae\x5e\x6f\xa0\x73\x3c\x5e\x24\x97\x01\xb4\xd7\x79\xc1\x37\xe6\x3c\x73\xd4\x91\x23\xab\xc8\x87\xee\x9e\x77\xb1\xb1\x38\x85\x3e\x17\xb0\xa7\xc6\x6b\xa1\xb0\x24\x51\x79\x0e\x4b\x15\x1a\x6d\xfb\x2b\x4d\xbe\x85\x41\x64\xf2\x55\x51\xf4\x5a\x86\xb9\xc9\x15\x8f\xc5\xb9\x90\x45\xc4\xf9\xa2\x31\xdc\x14\x63\x24\x53\x38\xf2\x84\x4e\x0d\x05\x47\xfe\xf5\x29\xc9\xa2\x2f\x5b\x56\xc5\x69\x5f\x47\xe7\x3a\x24\x3d\xb6\x99\xd1\x8a\xac\xa7\x0a\xde\x4d\xa8\x06\x82\x0f\xcb\xfe\x16\xfe\x49\xda\x5d\x47\xa5\x27\x58\x18\xba\x73\x9e\xda\x4e\xb3\x44\xba\x4b\x1d\x96\x7d\x4c\x5f\x8e\x13\x55\xa0\x47\xec\x29\x8c\x94\x76\x5e\x16\x73\x80\xa2\xd1\x72\x8c\x8a\xb9\x12\x41\x08\xbc\x60\x9e\xfd\x2e\xcc\xcf\x27\x5f\x84\x8a\x11\x26\x0c\xe3\x2a\xe4\xfc\x22\x5a\x00\x32\x34\x92\x95\x7a\x49\x61\xd6\x56\x36\xc9\x12\xbd\x6a\x83\xc7\x30\x81\xaf\xe2\x21\xf5\x52\xd4\x57\x09\x61\xf0\xc8\xb3\x54\xf0\xc7\xbf\xdb\xf4\x45\xb1\x61\x17\x4b\x56\xc1\xa7\xdf\x7f\xcd\x78\x96\x69\x96\x70\xd6\x12\xbf\xe1\xd9\xb6\xda\xf6\x0d\x1f\xb2\x17\xf8\x2c\xf0\x13\x0a\x1a\x3e\xc0\x0d\xe0\x4b\xcc\x12\xf4\x44\x28\xfb\x9e\xdc\x35\xb5\xce\x30\x4a\xb9\x8e\x96\x86\x0f\xe4\x9f\xa9\x9d\x5b\x1d\x3f\x2f\x75\x72\xdc\x60\xa3\x8d\x16\xfd\x12\xd0\x2b\x76\x09\xa9\x0c\x7a\xff\x12\x26\x19\x22\xa8\x23\x94\xd9\x91\xaf\x67\x67\xaa\x93\x58\x7d\x99\xe3\x88\xdf\xd8\xe2\xde\x47\xc9\x7a\x61\x47\x79\xbc\x07\x72\x76\x7d\xe1\x8f\xd6\x93\xf8\x22\xcc\x58\xfc\xa9\x0d\x36\x64\x7c\x1d\x27\x24\x97\x83\x5c\x47\x57\x03\xa9\x2f\x7e\x1e\x2b\xc0\x4d\xb9\xc2\xa6\x7b\x5a\x21\x36\xaa\xd9\x3c\x95\xf7\x4f\x0f\xaa\xe9\x1e\x9e\xa8\x54\x54\x6e\x56\x59\x94\x60\xd0\xa2\x9f\x48\xe9\x4e\x93\x4f\xaa\xec\x1d\x4e\x03\xa0\x6d\x61\x4f\xba\x1f\xc4\x83\xe7\xd9\xa9\x48\xa4\x41\x4f\x91\x42\x06\x0b\xae\x9e\x50\x86\x9f\x20\x94\x06\xf1\xfb\xd1\xfc\x99\x2b\xa6\xe8\x1c\x7f\x23\x5b\x6b\x9b\x2e\x8d\x3a\xe6\x92\x4f\x4d\xb8\xc4\x7c\x1d\xc6\x5a\x7f\x4d\xb7\x72\x87\xc6\x87\xd9\xd0\x1d\x88\x9b\xe9\x36\x68\x67\xb9\x05\x9f\xc9\x84\x0b\x12\x21\x2c\x84\x01\x2d\x24\xf7\xe8\x7d\x13\x91\x67\xaa\x97\x75\x59\x3e\xc4\x70\x2d\x59\x16\x0a\xeb\xe4\xd5\x69\x43\xf1\x59\xf5\xcf\x72\xfd\xbe\xac\x7b\x2d\x83\x5e\x52\x39\x1f\xb9\x1c\x75\xee\x63\xb9\x6e\x1f\x9f\x56\xcd\xfd\xea\xfe\xfe\x0e\xcb\x87\x4d\xbb\x2a\xb1\x2c\xdb\xb2\x59\xb7\x9b\x87\xb6\x7c\xcc\x50\xc4\xe9\x66\x96\xe5\x1e\xa5\x83\x38\x4c\x8d\x3c\x5b\x32\x80\x2f\xda\xb6\x15\x6c\x77\xbb\x44\x29\xec\x43\x6a\x96\x66\x87\x06\x2c\x49\x7c\xc2\x5f\x6f\x77\xbb\x5b\xf8\x14\x7e\xf2\x3c\x7f\x13\xc6\x36\x3c\x1d\xda\xf6\x75\x7a\x11\x2a\x48\x7f\x2a\xd2\xfe\xf4\x1a\xc7\xff\x09\x09\x9c\x01\x8c\x68\x75\x47\x5e\x6a\x9c\x65\x60\x57\xc1\x9f\xda\xf6\xc1\x06\x9f\xd1\xf6\xd9\xff\x01\x00\x00\xff\xff\x32\x9b\x59\x3e\xbd\x08\x00\x00"
func faster_rcnn_nas_lowproposals_cocoYmlBytes() ([]byte, error) {
return bindataRead(
_faster_rcnn_nas_lowproposals_cocoYml,
"Faster_RCNN_NAS_Lowproposals_COCO.yml",
)
}
func faster_rcnn_nas_lowproposals_cocoYml() (*asset, error) {
bytes, err := faster_rcnn_nas_lowproposals_cocoYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "Faster_RCNN_NAS_Lowproposals_COCO.yml", size: 2237, mode: os.FileMode(436), modTime: time.Unix(1563315105, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _faster_rcnn_resnet101_cocoYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x4d\x8f\xe3\x36\x0f\xbe\xfb\x57\x10\xc8\x61\x77\x81\x59\x3b\x89\x67\x37\x19\x1f\x5e\xe0\x6d\x8a\x6d\x51\x14\x59\x60\xd0\x8f\xa3\x41\xc9\xb4\xad\xae\x2d\x19\x12\x3d\x49\xe6\xd7\x17\xfa\x98\x7c\x60\xe6\x30\xbd\x04\x92\xf9\x90\xe2\x43\x3e\x94\xa2\x71\xa4\x0a\xbe\xa1\x63\xb2\xf5\xe3\x6e\xbf\xaf\x1f\xc9\xed\x89\x57\xcb\x55\xbd\xfb\xbe\xfb\x0e\x0b\xf0\x10\x30\x2d\x9c\xcc\x6c\x61\x34\x0d\x0d\x59\x6b\x71\xa4\x83\xb1\x3f\xaa\x0c\x20\x86\xf8\x83\xb4\x33\xf6\xdb\x60\x0e\xb0\x80\xb3\x1d\x5a\x63\x81\x7b\x4a\x7e\x00\x4f\x64\x9d\x32\xba\x82\x55\xbe\x5a\xdf\x20\x93\x05\xa4\xd1\x6c\x51\x69\xce\xae\xb0\x4b\x58\x9c\x01\x4a\xb7\xc6\x8e\xc8\x71\x0d\x8e\x46\xd4\xac\xe4\xd9\x1e\xad\x99\x8f\x83\x4a\x93\xad\x60\x01\xe7\x8d\x83\xd9\x51\x03\x6c\x60\x22\xeb\x91\x31\x33\xa0\x27\x1c\xe6\x10\x33\x03\xc0\xb1\xf9\x7a\xef\xa9\x01\x74\xd3\x5c\x81\x45\x35\x59\xf3\x0f\x49\x2e\x24\xda\x71\xf8\xcc\x81\x6c\x3b\x98\x43\x15\xb0\x9f\xe5\x34\x07\xb8\x7c\x1f\xbc\x0b\xf0\x69\x92\x5f\xef\x07\xaa\xde\xe7\x99\xd0\xc9\xf7\x1d\x99\x5d\x3b\x34\xe4\xa4\x55\x13\x87\x72\xfe\x2f\x83\xeb\x76\x7d\x17\xde\x1f\x7e\x26\x26\x19\x8a\x1a\x2a\x72\x07\x87\x5e\xc9\x1e\x94\x83\xd0\x0e\x6a\xc0\xe8\xd0\xca\x20\x8b\x8f\x3b\x33\x8e\x46\x27\x67\xe7\x1b\xb1\x33\x9a\xe9\xc8\x9f\xa0\x41\x46\x47\x9c\x67\x00\x7f\x3a\x82\x36\x8a\xcb\x4a\xad\x6b\x4b\x4e\x47\x71\x49\x23\x4d\xbd\x5e\xae\xb6\xf5\x72\x55\xaf\xb7\xd0\x5a\x33\x5e\x67\xd5\xdc\xa6\x03\xcf\xc6\xe4\x99\xa5\x96\x2c\x69\x49\xce\x37\xf5\xb2\x0b\xfd\xc4\xc9\xb7\xb7\x80\x03\x09\xa7\x98\xfc\x92\x58\xe6\x39\x44\xf2\x42\xe9\xee\x46\x8a\x9f\xa1\x67\x9e\x5c\x55\x14\x9d\xe2\x7e\x16\xb9\x34\x63\x71\xa9\x5f\x11\x70\xae\x10\x83\x11\xc5\x18\x38\x14\x96\x1c\xa1\x95\x7d\x61\x02\xed\xfa\x9c\x64\xd1\x95\x8d\x91\xc5\x79\x5f\x07\xe7\xda\x27\x3d\x36\xd9\xa0\x24\x69\x47\x15\xfc\x7f\x42\xd9\x13\xfc\x1e\xf7\x77\xf0\x57\x92\xec\x3a\x08\x3c\xc1\xfc\xac\x5d\xf2\x54\x7a\x9a\x39\xd0\x8d\x75\x88\xfb\x90\x3e\x9f\x26\xaa\x40\x8d\xd8\x91\x9f\x24\x65\x1d\x47\xb3\x87\xe2\xa0\xf8\x14\x84\x72\xd3\x7b\x1f\x38\x62\x5e\xfc\xae\xcc\x2f\x27\x5f\x85\x0a\x11\x26\xf4\x53\xca\x64\x5d\xd4\x2a\x00\x0d\x34\x92\xe6\x3a\xa6\x30\x2b\xcd\xdb\x64\x09\x5e\xf5\x80\x27\x3f\x78\x1f\xc2\x21\x75\x2c\xea\x87\x84\x18\xf0\x64\x66\xae\xe0\xd7\xbf\x77\xe9\x8b\x34\x83\xb1\xa1\x64\x15\x3c\xfe\xf2\x53\x66\x66\x9e\x66\xf6\x67\xc5\xf8\xc2\xcc\xba\x51\xba\x13\xe6\x98\xbd\xc1\x27\xc2\xcf\x28\x10\xe6\x08\x0b\xc0\xb7\x98\x25\xe8\x99\x50\xf6\x9a\xdc\x2d\xb5\x76\x30\xc8\xe5\x3a\x58\x84\x39\x92\x3b\x53\xbb\xf4\x3a\x7c\x8f\xec\x26\x6b\x04\x0a\x35\x28\x56\x6f\x42\x9d\x34\xf6\x05\x2b\x07\x74\xee\x4d\x54\xb2\x44\x58\x4b\xc8\xb3\x25\x57\xcf\x76\xa8\xce\x92\x75\x65\x8e\x23\x3e\x1b\x8d\x07\x17\x84\xeb\xd8\x58\xca\xc3\x25\x90\x1b\xdb\x15\xee\xa4\x1d\xb1\x2b\xfc\x9c\x85\x9f\x7a\x40\x41\x83\xab\xc3\x9c\xe4\x7c\xe4\xdb\xe8\xb2\x27\xf9\xc3\xcd\x63\x05\xb8\x2d\x97\x28\xda\xcd\x12\x51\x48\xb1\xdd\x94\xf7\x9b\x2f\x52\xb4\x5f\x36\x54\x4a\x2a\xb7\xcb\x2c\x08\xd1\x2b\xd2\x4d\x24\x55\xab\xc8\x25\x6d\x76\x16\xa7\x1e\x50\x37\x70\x20\xd5\xf5\xec\xc0\x99\xd9\x4a\xf2\x72\x15\xe8\x28\x50\xc8\x20\xe2\xea\x09\xb9\xff\x0f\x84\xd2\x38\xbe\x1e\xd0\x77\xdd\x2f\x45\x6b\xcd\x33\xe9\x5a\xe9\x74\x67\xd4\x21\x89\x7c\x12\x19\x80\x72\xb5\x9f\x6a\xf5\x94\xee\xe2\x16\x07\xe7\x47\x43\xb5\xc0\x76\xa6\x3b\x2f\x9d\x78\xf7\xbd\xb0\xf0\xd7\x22\x82\x5f\xb0\x01\xd4\x90\xdc\x83\xf7\x22\x20\x2f\x1c\xaf\x0b\x12\x3f\x84\x70\x0d\x69\xc3\xe4\xd7\xc9\xab\x55\x03\x85\xc7\xd4\xbd\xa8\xf5\x75\x3d\x0f\x8a\x7b\x15\x53\xb9\x1c\x19\x8f\xba\x34\x50\x0a\xd1\x94\xf7\x0f\xe5\x6a\xbb\xfd\xb2\xc2\xa6\x2c\xf1\x61\xbd\x79\xd8\x34\x62\x5d\xca\x87\x87\xcd\x3a\x43\x66\xab\xc4\xcc\xf1\x1a\xa5\x23\x5b\x4c\x1d\xbc\x58\x32\x80\x1f\x4a\x37\x15\xec\xf6\xfb\x44\xc9\xef\x7d\x6a\x9a\x66\x8b\x03\x68\xe2\xf0\x70\x7f\xdc\xed\xf7\x77\xf0\xe8\x7f\xf2\x3c\xff\xe4\xa7\xd6\x3f\x18\x4a\x77\x75\x7a\x09\x2a\x48\x7f\x25\xd2\xfe\xfc\x06\x87\x7f\x07\x09\x9c\x01\x8c\xa8\x55\x4b\x8e\x6b\x9c\xb9\x37\xb6\x82\xdf\x94\xee\x82\xed\xdf\x00\x00\x00\xff\xff\xf5\x9d\x6c\xfb\xa7\x08\x00\x00"
func faster_rcnn_resnet101_cocoYmlBytes() ([]byte, error) {
return bindataRead(
_faster_rcnn_resnet101_cocoYml,
"Faster_RCNN_ResNet101_COCO.yml",
)
}
func faster_rcnn_resnet101_cocoYml() (*asset, error) {
bytes, err := faster_rcnn_resnet101_cocoYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "Faster_RCNN_ResNet101_COCO.yml", size: 2215, mode: os.FileMode(436), modTime: time.Unix(1563315105, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _faster_rcnn_resnet101_lowproposals_cocoYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x4d\x8f\xdb\x36\x10\xbd\xeb\x57\x0c\xb0\x87\x24\xc0\x46\xb2\xd7\xfb\xe1\xe8\x50\xa0\x75\x91\x16\x45\xe0\x00\x8b\xb4\x3d\x0a\x23\x6a\x24\xb1\xa1\x38\x02\x39\x8a\x77\xf3\xeb\x0b\x7e\xac\xed\x45\xf6\xb0\xb9\x18\xa4\xe6\xcd\x70\xde\xcc\x1b\xd2\x16\x27\xaa\xe1\x23\x7a\x21\xd7\xdc\xef\xf6\xfb\xe6\x9e\xfc\x9e\x64\xbd\x5a\x37\x9f\xf8\x30\x3b\x9e\xd9\xa3\xf1\xcd\xee\xf3\xee\x33\x5c\x40\xc0\x03\xf7\xf0\xc8\x8b\x83\x89\x3b\x32\x45\xef\x70\xa2\x03\xbb\xaf\x75\x01\x90\xe2\x7d\x21\xeb\xd9\x7d\x34\x7c\x80\x0b\x38\xda\xa1\x67\x07\x32\x52\xf6\x03\xf8\x46\xce\x6b\xb6\x35\xac\xcb\xf5\xd5\x33\x64\xb6\x80\x62\x2b\x0e\xb5\x95\xe2\x0c\xbb\x82\x8b\x23\x40\xdb\x9e\xdd\x84\x92\xd6\xe0\x69\x42\x2b\x5a\x1d\xed\xc9\x5a\x84\x38\xa8\x2d\xb9\x1a\x2e\xe0\xb8\xf1\xb0\x78\xea\x40\x18\x66\x72\x01\x99\x32\x03\xfa\x86\x66\x89\x31\x0b\x00\x9c\xba\xdb\xeb\x40\x0d\x60\x98\x97\x1a\x1c\xea\xd9\xf1\x7f\xa4\xa4\x52\xe8\x26\xf3\x5e\x22\xd9\xde\xf0\xa1\x8e\xd8\xf7\x6a\x5e\x22\x5c\xbd\x0e\x3e\x44\xf8\x3c\xab\xdb\x6b\x43\xf5\xeb\x3c\x33\x3a\xfb\xbe\x22\xb3\x73\x87\x8e\xbc\x72\x7a\x96\x58\xce\x5f\x0a\x38\x6f\xd7\xe7\x36\xf8\xc3\xef\x24\xa4\x62\x51\x63\x45\x2e\xe1\x30\x6a\x35\x82\xf6\x10\xdb\x41\x1d\xb0\x8d\xad\x8c\xb2\x78\xbb\xe3\x69\x62\x9b\x9d\x7d\x68\xc4\x8e\xad\xd0\x83\xbc\x83\x0e\x05\x3d\x49\x59\x00\xfc\xed\x09\xfa\xa4\x34\xa7\xac\x6d\x1c\x79\x9b\x94\x66\xce\x95\xa6\x58\x71\x73\xb5\x5a\x6f\x9b\xd5\xba\xb9\xda\x42\xef\x78\x3a\x4f\xb1\x7b\x9e\x1b\x7c\x67\x2e\x0b\x47\x3d\x39\xb2\x8a\x7c\xe8\xf0\x69\x17\x9b\x8b\x73\xe8\x75\x05\x07\x6a\xbd\x16\x0a\x4b\x12\x55\x96\x90\x2a\xd1\x6a\x3b\x3c\xd3\xe5\x7b\x18\x45\x66\x5f\x57\xd5\xa0\x65\x5c\xda\x52\xf1\x54\x9d\x8a\x59\x45\x9c\xaf\x5a\xc3\x6d\x35\x45\x42\x95\x23\x4f\xe8\xd4\x58\x71\xac\x41\x73\x4c\xb2\x1a\x36\x1d\xab\xea\xb8\x6f\xa2\x73\x13\x92\x9e\xba\xc2\x68\x45\xd6\x53\x0d\xbf\xce\xa8\x46\x82\x4f\x69\x7f\x09\xff\x64\xfd\x5e\x45\xb5\x67\x58\x18\xbc\x53\x9e\xda\xce\x8b\x44\xba\xa9\x0e\x69\x1f\xd3\x97\xc7\x99\x6a\xd0\x13\x0e\x14\xc6\x4a\x3b\x2f\xc9\x1c\xa0\x68\xb4\x3c\x46\xd5\x3c\x13\x42\x08\x9c\x30\x4f\x7e\x67\xe6\xa7\x93\xcf\x42\xc5\x08\x33\x86\x91\x15\x72\x3e\x09\x17\x80\x0c\x4d\x64\xa5\x49\x29\x2c\xda\xca\x36\x5b\xa2\x57\x63\xf0\x31\x4c\xe1\x9b\x78\x48\x93\x8a\xfa\x26\x23\x0c\x3e\xf2\x22\x35\xfc\xf9\xef\x2e\x7f\x51\x6c\xd8\xc5\x92\xd5\x70\xff\xc7\x6f\x05\x2f\x32\x2f\x12\xce\x4a\xf1\x5b\x5e\x6c\xa7\xed\xd0\xf2\x43\xf1\x02\x9f\x04\x3f\xa2\xa0\xe5\x07\xb8\x00\x7c\x89\x59\x86\x1e\x09\x15\x3f\x92\x7b\x4e\xad\x37\x8c\xb2\xb9\x8a\x96\x96\x1f\xc8\x1f\xa9\x9d\x7a\x1d\xbf\x27\x76\xb3\xe3\x16\x5b\x6d\xb4\xe8\x17\xa1\x5e\xb1\x7b\xc2\x2a\x83\xde\xbf\x88\xca\x96\x04\xeb\x09\x65\x71\xe4\x9b\xc5\x99\xfa\x28\x59\xbf\x29\x71\xc2\xef\x6c\xf1\xe0\xa3\x70\xbd\xb0\xa3\x32\xde\x08\x25\xbb\xa1\xf2\x8f\xd6\x93\xf8\x2a\xcc\x59\xfc\x69\x0c\xb6\x64\x7c\x13\xe7\xa4\x94\x07\x79\x1e\x5d\x8d\xa4\xbe\xfa\x65\xaa\x01\xb7\x9b\x15\xb6\xfd\xdd\x0a\xb1\x55\xed\xf6\x6e\x73\x7d\x77\xa3\xda\xfe\xe6\x8e\x36\x8a\x36\xdb\x55\x11\x85\x18\x14\xe9\x67\x52\xba\xd7\xe4\xb3\x36\x07\x87\xf3\x08\x68\x3b\x38\x90\x1e\x46\xf1\xe0\x79\x71\x8a\x82\x5c\x5b\xf4\x14\x29\x14\x90\x70\xcd\x8c\x32\xfe\x04\xa1\x3c\x8e\x3f\x0e\xe8\xcf\x5f\x36\x55\xef\xf8\x3b\xd9\x46\xdb\x7c\x81\x34\x31\xa3\x72\x6e\x0b\x00\xed\x9b\x30\xe2\xfa\x5b\xbe\xa5\x7b\x34\x3e\xcc\x89\xee\x41\xdc\x42\x97\x41\x47\xe9\x56\x7c\xa2\x14\x2e\x4c\x84\xb0\x10\x06\xb4\x90\xdd\xa3\xf7\x45\x44\x9e\x08\x9f\x57\x27\x7d\x88\xe1\x3a\xb2\x2c\x14\xd6\xd9\xab\xd7\x86\xe2\x33\xeb\x9f\xa4\xfb\x63\x71\x0f\x5a\x46\x9d\x52\x39\x1d\x99\x8e\x3a\x75\x93\xb6\x4a\x6d\xae\xd7\xed\x75\xd7\x76\x74\xa7\xfa\x9b\xdb\x9b\x55\xdf\xdd\x5e\x6f\x57\x1f\xb6\x1f\x3a\xb5\x2a\x50\xc4\xe9\x76\x91\x74\xa7\xd2\x83\x38\xcc\xed\x3c\x59\x0a\x80\xaf\xda\x76\x35\xec\xf6\xfb\x4c\x29\xec\x43\x6a\x96\x16\x87\x06\x2c\x49\x7c\xd2\xdf\xee\xf6\xfb\x4b\xb8\x0f\x3f\x65\x59\xbe\x0b\x23\x1c\x9e\x12\x6d\x87\x26\xbf\x11\x35\xe4\x3f\x19\x79\x7f\x7c\x9d\xe3\xff\x86\x0c\x2e\x00\x26\xb4\xba\x27\x2f\x0d\x2e\x32\xb2\xab\xe1\x2f\x6d\x87\x60\x83\x2f\x68\x87\xe2\xff\x00\x00\x00\xff\xff\xdc\x91\xff\x37\xd3\x08\x00\x00"
func faster_rcnn_resnet101_lowproposals_cocoYmlBytes() ([]byte, error) {
return bindataRead(
_faster_rcnn_resnet101_lowproposals_cocoYml,
"Faster_RCNN_ResNet101_Lowproposals_COCO.yml",
)
}
func faster_rcnn_resnet101_lowproposals_cocoYml() (*asset, error) {
bytes, err := faster_rcnn_resnet101_lowproposals_cocoYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "Faster_RCNN_ResNet101_Lowproposals_COCO.yml", size: 2259, mode: os.FileMode(436), modTime: time.Unix(1563315105, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _faster_rcnn_resnet50_cocoYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x4b\x6f\xeb\x38\x0f\xdd\xfb\x57\x10\xc8\xe2\xde\x0b\xf4\xda\x69\x5e\x0d\xbc\xf8\x80\x6f\x32\xb8\x33\x8b\x8b\x14\x28\xe6\xb1\x34\x28\x99\xb6\x35\xb5\x25\x43\xa2\x9b\xa4\xbf\x7e\xa0\x47\xf3\x40\xbb\xe8\x6c\x02\xc9\x3c\xa4\x78\xc8\x43\x29\x1a\x07\x2a\xe1\x07\x3a\x26\x5b\x3d\xed\xf6\xfb\xea\x89\xdc\x9e\x78\x3d\xaf\x76\x8f\xbb\x47\x98\x81\x47\x80\x69\xe0\x64\x26\x0b\x83\xa9\xa9\xcf\x1a\x8b\x03\x1d\x8c\x7d\x2e\x33\x80\x18\xe1\x0f\xd2\xce\xd8\x1f\xbd\x39\xc0\x0c\xce\x76\x68\x8c\x05\xee\x28\xf9\x01\xbc\x90\x75\xca\xe8\x12\xee\xf3\xfb\xc5\x0d\x32\x59\x40\x1a\xcd\x16\x95\xe6\xec\x0a\x3b\x87\xd9\x19\xa0\x74\x63\xec\x80\x1c\xd7\xe0\x68\x40\xcd\x4a\x9e\xed\xd1\x9a\xf9\x38\xa8\x34\xd9\x12\x66\x70\xde\x38\x98\x1c\xd5\xc0\x06\x46\xb2\x1e\x19\x33\x03\x7a\xc1\x7e\x0a\x31\x33\x00\x1c\xea\xcd\xca\x53\x03\x68\xc7\xa9\x04\x8b\x6a\xb4\xe6\x1f\x92\x5c\x48\xb4\x43\xff\x9d\x03\xd9\xa6\x37\x87\x32\x60\xbf\xcb\x71\x0a\x70\xf9\x39\x78\x1b\xe0\xe3\x28\x37\xab\x9e\xca\xcf\x79\x26\x74\xf2\xfd\x44\x66\xd7\x0e\x35\x39\x69\xd5\xc8\xa1\x9c\xff\xcb\xe0\xba\x5d\x8f\xc2\xfb\xc3\xaf\xc4\x24\x43\x51\x43\x45\xee\xe0\xd0\x29\xd9\x81\x72\x10\xda\x41\x35\x18\x1d\x5a\x19\x64\xf1\x75\x67\x86\xc1\xe8\xe4\xec\x7c\x23\x76\x46\x33\x1d\xf9\x1b\xd4\xc8\xe8\x88\xf3\x0c\xe0\x4f\x47\xd0\x44\x6d\x59\xa9\x75\x65\xc9\xe9\xa0\x2d\x69\xa4\xa9\x16\xf3\xfb\x6d\x35\xbf\xaf\x16\x5b\x68\xac\x19\xae\x93\xaa\x6f\xb3\x81\x57\x63\xf2\xcc\x52\x43\x96\xb4\x24\xe7\x7b\x7a\xd9\x85\x76\xe2\xe8\xbb\x5b\xc0\x81\x84\x53\x4c\x7e\x49\x2c\xf3\x1c\x22\x77\xa1\x74\x7b\xa3\xc4\xef\xd0\x31\x8f\xae\x2c\x8a\x56\x71\x37\x89\x5c\x9a\xa1\xb8\x94\xaf\x08\x38\x57\x88\xde\x88\x62\x08\x14\x0a\x4b\x8e\xd0\xca\xae\x30\x81\x75\x75\x4e\xb2\x68\x97\xb5\x91\xc5\x79\x5f\x05\xe7\xca\x27\x3d\xd4\x59\xaf\x24\x69\x47\x25\xfc\x7f\x44\xd9\x11\xfc\x8c\xfb\x3b\xf8\x2b\x29\x76\x11\xf4\x9d\x60\x7e\xd4\x2e\x79\x2a\x3d\x4e\x1c\xe8\xc6\x3a\xc4\x7d\x48\x9f\x4f\x23\x95\xa0\x06\x6c\xc9\x0f\x92\xb2\x8e\xa3\xd9\x43\xb1\x57\x7c\x0a\x3a\xb9\x69\xbd\x0f\x1c\x31\x6f\x7e\x57\xe6\xb7\x93\xaf\x42\x85\x08\x23\xfa\x21\x65\xb2\x2e\x4a\x15\x80\x7a\x1a\x48\x73\x15\x53\x98\x94\xe6\x6d\xb2\x04\xaf\xaa\xc7\x93\x9f\xbb\x2f\xe1\x90\x2a\x16\xf5\x4b\x42\xf4\x78\x32\x13\x97\xf0\xfb\xdf\xbb\xf4\x45\x9a\xde\xd8\x50\xb2\x12\x9e\x7e\xfb\x25\x33\x13\x8f\x13\xfb\xb3\x62\x7c\x61\x26\x5d\x2b\xdd\x0a\x73\xcc\x3e\xe0\x13\xe1\x67\x14\x08\x73\x84\x19\xe0\x47\xcc\x12\xf4\x4c\x28\x7b\x4f\xee\x96\x5a\xd3\x1b\xe4\xe5\x22\x58\x84\x39\x92\x3b\x53\xbb\xf4\x3a\x7c\x8f\xec\x46\x6b\x04\x0a\xd5\x2b\x56\x1f\x42\x9d\x34\xf6\x0d\x2b\x7b\x74\xee\x43\x54\xb2\x44\x58\x43\xc8\x93\x25\x57\x4d\xb6\x2f\xcf\x92\x75\xcb\x1c\x07\x7c\x35\x1a\x0f\x2e\x08\xd7\xb1\xb1\x94\x87\x3b\x20\x37\xb6\x2d\xdc\x49\x3b\x62\x57\xf8\x39\x0b\x3f\x55\x8f\x82\x7a\x57\x85\x39\xc9\xf9\xc8\xb7\xd1\x65\x47\xf2\xd9\x4d\x43\x09\xb8\x5d\xce\x51\x34\x0f\x73\x44\x21\xc5\xf6\x61\xb9\x7a\x58\x4b\xd1\xac\x1f\x68\x29\x69\xb9\x9d\x67\x41\x88\x5e\x91\x6e\x24\xa9\x1a\x45\x2e\x69\xb3\xb5\x38\x76\x80\xba\x86\x03\xa9\xb6\x63\x07\xce\x4c\x56\x92\x97\xab\x40\x47\x81\x42\x06\x11\x57\x8d\xc8\xdd\x7f\x20\x94\xc6\xf1\xfd\x80\x7e\xe6\x7a\x29\x1a\x6b\x5e\x49\x57\x4a\xa7\x2b\xa3\x0a\x39\xe4\xa3\xc8\x00\x94\xab\xfc\x50\xab\x97\x74\x13\x37\xd8\x3b\x3f\x19\xaa\x01\xb6\x13\xdd\x79\xe5\xc4\x9b\xef\x8d\x84\xbf\x14\x11\xfc\x82\x0d\xa0\x86\xe4\x1e\xbc\x67\x01\x79\xa1\x78\x5d\x8f\xf8\x21\x84\xab\x49\x1b\x26\xbf\x4e\x5e\x8d\xea\x29\x3c\xa5\xee\x4d\xac\xef\xcb\x79\x50\xdc\xa9\x98\xca\xe5\xc8\x78\xd4\xa5\x7f\x5b\xb1\xa1\x9a\xc4\xfd\x6a\xb9\xde\x6c\x9a\xed\x72\x4e\xcb\xf5\xc3\x66\xbd\x5a\x6e\xc5\x6a\xbd\x68\x9a\x0c\x99\xad\x12\x13\xc7\x5b\x94\x8e\x6c\x31\x35\xf0\x62\xc9\x00\x9e\x95\xae\x4b\xd8\xed\xf7\x89\x92\xdf\xfb\xd4\x34\x4d\x16\x7b\xd0\xc4\xe1\xd9\xfe\xba\xdb\xef\xef\xe0\xc9\xff\xe4\x79\xfe\xcd\x0f\xad\x7f\x2e\x94\x6e\xab\xf4\x0e\x94\x90\xfe\x48\xa4\xfd\xf9\x05\x0e\xff\x0d\x12\x38\x03\x18\x50\xab\x86\x1c\x57\x38\x71\x67\x6c\x09\xbb\x8e\x74\x0b\x3f\x55\xf6\x6f\x00\x00\x00\xff\xff\xef\x31\x60\xc1\xa4\x08\x00\x00"
func faster_rcnn_resnet50_cocoYmlBytes() ([]byte, error) {
return bindataRead(
_faster_rcnn_resnet50_cocoYml,
"Faster_RCNN_ResNet50_COCO.yml",
)
}
func faster_rcnn_resnet50_cocoYml() (*asset, error) {
bytes, err := faster_rcnn_resnet50_cocoYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "Faster_RCNN_ResNet50_COCO.yml", size: 2212, mode: os.FileMode(436), modTime: time.Unix(1563315105, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _faster_rcnn_resnet50_lowproposals_cocoYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x4d\x8f\xdb\x36\x10\xbd\xeb\x57\x0c\xb0\x87\x24\xc0\x46\xf2\xda\xfb\xe1\xe8\x50\xa0\x75\x91\x16\x45\xe0\x00\x8b\xb4\x3d\x0a\x23\x6a\x24\xb1\xa1\x38\x02\x39\x8a\xed\xfc\xfa\x82\x14\xfd\x85\xec\x61\x73\x31\x48\xcd\x9b\xe1\xbc\x99\x37\xa4\x2d\x0e\x54\xc2\x47\xf4\x42\xae\x7a\xde\x6c\xb7\xd5\x33\x79\x4b\xf2\xb0\xa8\x3e\xf1\x6e\x74\x3c\xb2\x47\xe3\xab\xcd\xe7\xcd\x67\xb8\x81\x00\x07\x6e\xe1\xc0\x93\x83\x81\x1b\x32\x59\xeb\x70\xa0\x1d\xbb\xaf\x65\x06\x30\x87\xfb\x42\xd6\xb3\xfb\x68\x78\x07\x37\x70\xb2\x43\xcb\x0e\xa4\xa7\xe4\x07\xf0\x8d\x9c\xd7\x6c\x4b\xb8\xcb\xef\x96\x57\xc8\x64\x01\xc5\x56\x1c\x6a\x2b\xd9\x05\x76\x01\x37\x27\x80\xb6\x2d\xbb\x01\x65\x5e\x83\xa7\x01\xad\x68\x75\xb2\xcf\xd6\x2c\xc4\x41\x6d\xc9\x95\x70\x03\xa7\x8d\x87\xc9\x53\x03\xc2\x30\x92\x0b\xc8\x39\x33\xa0\x6f\x68\xa6\x18\x33\x03\xc0\xa1\x79\xbc\x0f\xd4\x00\xba\x71\x2a\xc1\xa1\x1e\x1d\xff\x47\x4a\x0a\x85\x6e\x30\xef\x25\x92\x6d\x0d\xef\xca\x88\x7d\xaf\xc6\x29\xc2\xd5\xeb\xe0\x5d\x84\x8f\xa3\x7a\xbc\x37\x54\xbe\xce\x33\xa1\x93\xef\x2b\x32\xbb\x74\x68\xc8\x2b\xa7\x47\x89\xe5\xfc\x25\x83\xcb\x76\x7d\xae\x83\x3f\xfc\x4e\x42\x2a\x16\x35\x56\xe4\x16\x76\xbd\x56\x3d\x68\x0f\xb1\x1d\xd4\x00\xdb\xd8\xca\x28\x8b\xb7\x1b\x1e\x06\xb6\xc9\xd9\x67\x10\x5a\xb1\x61\x2b\xb4\x97\x77\xd0\xa0\xa0\x27\xc9\xe1\x6f\x4f\xd0\xce\x42\x73\xca\xda\xca\x1d\x85\x66\x2e\x85\xa6\x58\x71\xb5\x5c\xdc\xad\xab\xc5\x5d\xb5\x5c\x43\xeb\x78\xb8\xce\xb1\xb9\x4e\x0e\xbe\x33\xe7\x99\xa3\x96\x1c\x59\x45\x3e\xb4\xf8\xbc\x8b\xdd\xc5\x31\x34\xbb\x80\x1d\xd5\x5e\x0b\x85\x25\x89\xca\x73\x98\x4b\x51\x6b\xdb\x5d\x09\xf3\x3d\xf4\x22\xa3\x2f\x8b\xa2\xd3\xd2\x4f\x75\xae\x78\x28\xce\xd5\x2c\x22\xce\x17\xb5\xe1\xba\x18\x22\xa3\xc2\x91\x27\x74\xaa\x2f\x38\x16\xa1\x3a\x25\x59\x74\xab\x86\x55\x71\xda\x57\xd1\xb9\x0a\x49\x0f\x4d\x66\xb4\x22\xeb\xa9\x84\x5f\x47\x54\x3d\xc1\xa7\x79\x7f\x0b\xff\x24\x01\x2f\xa3\xdc\x13\x2c\x4c\xde\x39\x4f\x6d\xc7\x49\x22\xdd\xb9\x0e\xf3\x3e\xa6\x2f\x87\x91\x4a\xd0\x03\x76\x14\xe6\x4a\x3b\x2f\xb3\x39\x40\xd1\x68\x39\x44\xd9\x5c\x29\x21\x04\x9e\x31\x47\xbf\x0b\xf3\xf1\xe4\x8b\x50\x31\xc2\x88\x61\x66\x85\x9c\x9f\x95\x0b\x40\x86\x06\xb2\x52\xcd\x29\x4c\xda\xca\x3a\x59\xa2\x57\x65\xf0\x10\xc6\xf0\x4d\x3c\xa4\x9a\x8b\xfa\x26\x21\x0c\x1e\x78\x92\x12\xfe\xfc\x77\x93\xbe\x28\x36\xec\x62\xc9\x4a\x78\xfe\xe3\xb7\x8c\x27\x19\x27\x09\x67\xcd\xf1\x6b\x9e\x6c\xa3\x6d\x57\xf3\x3e\x7b\x81\xcf\x0c\x3f\xa1\xa0\xe6\x3d\xdc\x00\xbe\xc4\x2c\x41\x4f\x84\xb2\x1f\xc9\x5d\x53\x6b\x0d\xa3\xac\x96\xd1\x52\xf3\x9e\xfc\x91\xda\xb9\xd5\xf1\xf3\x5c\x27\xc7\x35\xd6\xda\x68\xd1\x2f\x01\xbd\x62\x97\x90\xca\xa0\xf7\x2f\x61\x92\x21\x82\x5a\x42\x99\x1c\xf9\x6a\x72\xa6\x3c\x89\xd5\xaf\x72\x1c\xf0\x3b\x5b\xdc\xf9\x28\x59\x2f\xec\x28\x8f\x97\x41\xce\xae\x2b\xfc\xc1\x7a\x12\x5f\x84\x19\x8b\x3f\x95\xc1\x9a\x8c\xaf\xe2\x84\xe4\xb2\x97\xeb\xe8\xaa\x27\xf5\xd5\x4f\x43\x09\xb8\x5e\x2d\xb0\x6e\x9f\x16\x88\xb5\xaa\xd7\x4f\xab\xfb\xa7\x07\x55\xb7\x0f\x4f\xb4\x52\xb4\x5a\x2f\xb2\x28\xc1\xa0\x45\x3f\x92\xd2\xad\x26\x9f\x54\xd9\x39\x1c\x7b\x40\xdb\xc0\x8e\x74\xd7\x8b\x07\xcf\x93\x53\x91\x48\x8d\x9e\x22\x85\x0c\x66\x5c\x35\xa2\xf4\x3f\x41\x28\x0d\xe2\x8f\xa3\xf9\xd3\xf7\x4c\xd1\x3a\xfe\x4e\xb6\xd2\x36\xdd\x1c\x55\x4c\x28\x1f\xeb\x70\x9d\xf9\x2a\xcc\xb6\xfe\x96\xee\xe7\x16\x8d\x0f\x03\xa2\x5b\x10\x37\xd1\x6d\x10\xd0\x7c\x1f\x1e\x19\x85\xab\x12\x21\x2c\x84\x01\x2d\x24\xf7\xe8\x7d\x13\x91\x67\xbe\x97\xc5\x99\x3f\xc4\x70\x0d\x59\x16\x0a\xeb\xe4\xd5\x6a\x43\xf1\x81\xf5\x47\xcd\xfe\x58\xdb\x9d\x96\x5e\xcf\xa9\x9c\x8f\x9c\x8f\x3a\x37\xb3\x51\xab\x75\xbd\x7e\xfc\xb0\x6c\x9f\x56\xcd\xe3\x87\xf5\x03\x2e\xd5\xe3\x6a\x5d\xdf\xdf\x29\x5c\xb6\x77\x8f\x19\x8a\x38\x5d\x4f\x32\x5f\xa6\xb4\x17\x87\xa9\x9b\x67\x4b\x06\xf0\x55\xdb\xa6\x84\xcd\x76\x9b\x28\x85\x7d\x48\xcd\xd2\xe4\xd0\x80\x25\x89\x8f\xf9\xdb\xcd\x76\x7b\x0b\xcf\xe1\x27\xcf\xf3\x77\x61\x76\xc3\x23\xa2\x6d\x57\xa5\xb7\xa1\x84\xf4\xf7\x22\xed\x4f\xef\x72\xfc\xc7\x90\xc0\x19\xc0\x80\x56\xb7\xe4\xa5\xc2\x49\x7a\x76\x25\xfc\xa5\x6d\x17\x6c\xf0\x05\x6d\x97\xfd\x1f\x00\x00\xff\xff\x2d\x29\x82\x36\xcc\x08\x00\x00"
func faster_rcnn_resnet50_lowproposals_cocoYmlBytes() ([]byte, error) {
return bindataRead(
_faster_rcnn_resnet50_lowproposals_cocoYml,
"Faster_RCNN_ResNet50_Lowproposals_COCO.yml",
)
}
func faster_rcnn_resnet50_lowproposals_cocoYml() (*asset, error) {
bytes, err := faster_rcnn_resnet50_lowproposals_cocoYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "Faster_RCNN_ResNet50_Lowproposals_COCO.yml", size: 2252, mode: os.FileMode(436), modTime: time.Unix(1563315105, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _inception_5hYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\xc1\x6e\xdc\x46\x0c\xbd\xeb\x2b\x08\xf8\x90\x16\xb0\xa5\xd5\xda\x5a\x3b\x3a\xf4\x50\x07\x6d\x02\x04\x3e\x04\x41\x7b\x08\x82\x05\x35\xa2\x56\x6c\x46\x33\xca\x90\xda\xcd\xe6\xeb\x8b\x19\x69\xbd\x1b\x20\x45\x7d\x11\x24\xf2\x91\x7c\xf3\xc8\xa1\x1c\x0e\x54\xc3\x3b\x67\x68\x54\xf6\x6e\x5b\xf5\x59\x17\x70\xa0\x83\x0f\x5f\xea\x0c\x60\xf6\x7f\x24\x27\x3e\xfc\x61\xfd\x21\x03\xd8\x53\x10\xf6\xae\x86\x32\x2f\xd7\xd9\xc5\xd7\x2a\x33\xde\x29\xb2\xa3\x10\x43\x71\x68\x37\x77\xf1\x05\x60\x37\x4e\x35\x04\xe4\x31\xf8\x7f\xc8\x68\x61\x30\x0c\xf6\x46\x53\xd6\xce\xfa\x43\x9d\xb0\x37\x66\x9c\x12\xdc\xbc\x0c\xbe\x4b\xf0\x71\x34\x9b\x3b\x4b\xf5\xcb\x22\x17\xf4\x12\xfb\x02\x66\x97\x01\x2d\x89\x09\x9c\x84\xaa\xe1\xb7\x0c\xe0\x63\xcf\x02\x7b\x0c\x8c\x4e\xc1\x77\xa0\x3d\x9d\xb5\x84\xc1\xb7\x64\x81\x05\x08\x85\x29\x80\x7a\x98\x84\xa0\xf3\x01\xde\x10\x8d\x6f\x02\xe1\x10\x75\x72\x2d\x78\xed\x29\x00\x0f\xb8\x63\xb7\x03\x25\xd3\x3b\xfe\x3a\x91\xe4\x73\x09\x16\x68\xc8\x60\x8c\x66\x05\xb4\xd6\x1f\x24\x15\x63\x37\x4e\x9a\x41\x8a\xa4\x58\xa0\x21\x40\x77\x04\xe1\xef\x74\x9d\x32\x47\x94\x1f\x95\x07\xfe\x4e\xed\x8c\x13\xc0\x40\x80\x56\x3c\x8c\x81\x54\x99\x42\x9e\xc1\x05\xf1\xaa\x4f\xac\xbf\x4e\xbc\x47\x4b\x4e\x63\xe2\xb3\xf7\xaf\x32\xcf\x02\x75\x14\xc8\x19\x92\xa8\xfb\x0d\xf4\xaa\x63\x5d\x14\x18\xbe\xf1\x3e\xf7\x61\x57\x60\x23\x45\x59\x95\xeb\x7c\xb5\xaa\x36\xf7\xcf\x18\xa9\x8b\x62\xc7\xda\x4f\x4d\x6e\xfc\x50\xbc\xdd\xa3\xc8\xcd\xfb\x08\x3e\x8f\xd8\xcd\xc7\x49\x7d\x60\xb4\x52\x34\xd6\x37\xc5\x80\xa2\x14\x0a\x3e\x11\xa8\xfa\x7c\x3c\x66\x96\x0d\x39\xa1\x1a\x26\x17\x48\x34\xb0\x51\x6a\xb3\xab\x59\x11\x89\x8c\xe3\xc9\x53\x0b\xb2\xd9\x16\x99\x5e\x41\xc7\x41\x74\x46\x81\x1e\xc7\xb9\x1d\x67\x68\x24\x1a\xcd\xf5\x2c\x55\x9a\x91\x2b\xb8\x68\xfc\xa9\xcd\x17\x79\x12\xe8\x87\xd9\x78\x6e\xcd\x45\x96\x11\xe3\xbd\x52\x0a\x52\xc3\xd5\x5c\xfa\x6c\x4a\x08\x00\xb2\x34\x90\xd3\xed\xcc\xa0\xb3\x1e\xf5\x76\xbd\xf8\x52\xbe\xad\xc5\x23\x85\x1a\x5e\xa5\xaf\x57\x8b\xcb\xe2\xd1\x4f\x5a\xc3\xdb\xbf\x1f\x17\x8b\xf1\xd6\x87\x6d\x3c\x52\x0d\x1f\xfe\xfc\x7d\xb1\xb6\x3c\x90\x8b\xb7\x55\x6a\xf8\x74\x7b\x0d\xeb\xf5\x5d\x7a\x7c\x5e\xfc\x03\xa1\xab\xe1\x53\x59\xde\x5f\xc3\xe9\xf1\x39\xf3\x93\x8e\x93\xce\xea\xc5\x83\x25\xea\x8b\x0a\xb3\x2f\x83\x45\x33\x63\x51\x84\x3b\x36\x18\x75\x48\x11\xf8\x33\xf1\xe6\xb0\xf3\xf9\xb3\x9f\xe8\xb7\x60\x2c\x36\xa9\x2d\xff\x2f\xdf\x7f\x8b\x37\x06\xdf\x60\xc3\x96\x95\x49\x9e\x25\x9c\x0b\xcc\x1a\x76\x84\x3a\x05\x92\xed\x14\x6c\x7d\x9a\x66\xb9\xcd\x71\xc0\xef\xde\xe1\x41\xd2\xb8\x8a\xfa\x40\x79\x5a\x11\x69\xc8\xe5\xe8\x84\x54\x8a\xd4\x64\x47\xba\x18\xca\xd5\xea\x21\xd7\x6f\xfa\x63\x66\xd3\x93\xf9\x22\xd3\x50\xc3\xba\x69\xd6\xeb\x87\x76\x63\xba\xaa\x42\xba\xa3\xcd\xdd\xea\x75\x57\x55\x9d\x79\x28\x3b\xd3\xd1\x7d\x96\x46\x31\x0a\xde\xa0\xd0\x99\x92\xbc\x84\x53\x8a\x95\xe2\xbc\xc1\x8a\x5d\xc0\xb1\x8f\x12\xa5\x97\xed\x88\xda\xd7\xc0\x17\x1b\x3f\x1f\x9b\x67\xef\x99\x65\x43\xf7\xa5\x59\xb5\xb7\x0d\xbe\x36\xd5\xeb\x6a\xdd\x94\xe5\xa6\xda\x94\xb7\xb7\xd5\xc3\x83\xb9\xaf\x4c\xdc\x3a\xb2\xc5\x60\x7a\xde\x2f\xdb\xb7\x43\x2b\x04\x57\xc0\x1d\x68\x98\xe8\x3a\xf6\xd1\xa5\x66\x9e\x0e\x12\xf7\x0a\x42\x7c\x51\x0f\xe8\x60\x09\x5f\xae\x59\x44\x9e\x49\xa6\xf5\x75\x20\xde\xf5\x2a\xb3\x21\xa5\x6b\xc9\x79\xa5\xf8\xbe\x44\x75\x6c\x29\xfd\xa7\xe4\x34\x5e\x29\xc7\x65\x38\x1c\x58\x7b\x9e\xa9\x9c\x4a\xa2\x6a\xe0\x66\x52\x4a\x03\x45\xdf\x34\x20\x38\xd2\xf8\xe3\x83\xb3\x2f\x03\xf8\xc2\xae\xad\xe1\xf1\xe9\x69\x61\x18\xbf\x63\x25\x47\x53\x40\xfb\x1c\xf3\xcb\xe3\xd3\xd3\x35\x7c\x88\x8f\x3c\xcf\x7f\x8d\x77\x22\x20\x3b\x76\xbb\x6d\x8b\x8a\x42\x5a\xc3\xbb\x38\x28\x4f\xa4\x71\xa5\xcc\xb6\xf8\x47\x68\xa3\x18\x69\x0d\x2d\x01\x19\xc0\x80\x8e\x3b\x12\xdd\xe2\xa4\xbd\x0f\x35\x3c\xf6\xe4\x76\xf0\x9e\xb3\x7f\x03\x00\x00\xff\xff\xde\x97\x4d\xe5\xb2\x07\x00\x00"
func inception_5hYmlBytes() ([]byte, error) {
return bindataRead(
_inception_5hYml,
"Inception_5h.yml",
)
}
func inception_5hYml() (*asset, error) {
bytes, err := inception_5hYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "Inception_5h.yml", size: 1970, mode: os.FileMode(436), modTime: time.Unix(1554919091, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _inception_resnet_v2Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\xdd\x6e\xe3\xc6\x0e\xbe\xd7\x53\x10\xc8\xc5\x9e\x05\x12\xc9\x92\xed\xfc\xe8\xe2\x5c\x9c\x00\xa7\x5d\x20\x0d\x8a\x74\xb1\x2d\xb0\x28\x0c\x7a\x44\x59\xd3\x8c\x66\x04\x92\xb2\x37\xfb\xf4\xc5\x8c\x14\xdb\x0b\xa4\x68\x6e\x24\x0d\xf9\xf1\xef\x13\xc9\xf1\xd8\x53\x0d\x9f\xbc\xa1\x41\x6d\xf0\x9b\x27\x92\x47\xd2\xcd\xbe\xca\x5a\xc6\x9e\x0e\x81\x9f\xeb\x0c\x60\x82\x7d\x26\x2f\x81\xff\xef\xc2\x21\x03\xd8\x13\x8b\x0d\xbe\x86\x32\x2f\xab\xec\xec\xb4\xc8\x4c\xf0\x8a\xd6\x13\x47\x53\xec\x9b\xeb\x55\xfc\x00\xd8\x0d\x63\x0d\x8c\x76\xe0\xf0\x17\x19\x2d\x0c\x72\xef\xae\x34\x79\x6d\x5d\x38\xd4\x09\x7b\x65\x86\x31\xc1\xcd\xfb\xe0\xbb\x04\x1f\x06\x73\xbd\x72\x54\xbf\xcf\x72\x46\xcf\xb6\xef\xc8\xec\xdc\xa0\x21\x31\x6c\x13\x5f\x35\xfc\x37\x83\x13\x7d\x57\x13\x7d\x57\xfb\xea\x12\x10\x4c\xf0\xfb\xe0\xc6\xa8\x40\x07\x9e\x46\x4e\x2f\x8d\xa4\xc2\x7f\xee\x1f\x1f\x3f\x82\x76\xa8\x80\xa6\xb3\xb4\x27\x01\x04\x4f\x07\x10\x45\x25\x08\x2d\x68\x47\x80\xac\x60\x3d\x28\x71\x2f\x51\x86\xc6\x8c\x8c\xe6\x05\x82\x8f\xfa\x18\xfc\xe1\xb7\x2f\x4f\xf7\x60\x7b\xdc\x11\x18\x87\x22\xb6\xb5\x06\x63\x54\xd8\x92\x37\x5d\x8f\xfc\x9c\xbf\x95\x23\xd8\x18\x72\x8f\x6c\x27\x74\x68\x21\x8c\x0c\x84\xec\x2c\xf1\xc9\x02\xbe\x2c\xa1\x0f\x0d\x39\x38\x74\xd6\x74\xb0\x0d\xcc\xe1\x20\x19\x80\x84\x9e\xc0\x36\x84\x02\x2d\x87\x1e\x7e\xb1\x86\x83\x84\x56\x3f\x08\x4c\x61\x60\xc0\x81\x58\x72\xf8\xdc\x11\xb4\xa3\x73\xd0\x90\xa2\x75\xf2\x5a\xe0\xe4\x18\x99\x62\x99\x31\x3c\xf2\x1f\x76\x0f\x03\xd3\xc0\xd6\xeb\x59\xde\xfb\xd5\xe5\x1b\x5c\x03\xfa\x26\x39\xfa\xd4\x0f\x68\x34\xba\x7d\x22\xb1\xcd\x88\x0e\xee\x83\xf7\x64\x22\x58\x22\x5f\x0f\x84\xec\xad\xdf\xe5\x19\x53\x4b\x4c\xde\x90\xc4\x7e\xb9\x82\x4e\x75\xa8\x8b\x02\xf9\x9b\xdd\xe7\x81\x77\x05\x6e\xa5\x28\xd7\x65\x95\x2f\x16\xeb\xeb\x9b\x23\x46\xea\xa2\xd8\x59\xed\xc6\x6d\x6e\x42\x5f\x9c\xfa\xa3\x48\x65\x48\xa1\x4c\x54\xf4\x28\x4a\x5c\x30\x09\x21\x9b\xae\x10\x67\xfb\xcc\x59\x43\x5e\xa8\x86\xd1\x33\x89\xb2\x35\x4a\x4d\x76\x01\xd6\x0f\xa3\x0a\x68\x38\xb1\x91\x4d\xb2\x98\xda\x05\xb4\x96\x45\x27\x14\xe8\xcb\x40\xd0\x06\x3e\x83\xc6\xcc\xa2\xb8\x9e\x1a\x20\x35\xf3\x05\x9c\x75\xe8\x2b\xcf\x67\x7e\x12\xe8\x87\x26\x8e\x80\x29\xc4\xc9\xcb\x80\x71\x01\x28\xb1\xd4\x70\x31\x85\x3e\x89\x12\x02\x80\x1c\xf5\xe4\x75\x33\x65\xd0\xba\x80\xba\xac\x66\x5d\xf2\xb7\x71\xf8\x42\x5c\xc3\x87\x74\xfa\x30\xab\x1c\xbe\x84\x51\x6b\xf8\xf9\xf7\xfb\x59\x62\x82\x0b\xbc\x89\x25\xd5\xf0\xf4\xd3\xff\x66\x69\x63\x7b\xf2\x71\xad\x48\x0d\x5f\x97\x97\x50\xdd\xdd\xa5\xc7\x9f\xb3\xbe\x27\xf4\x35\x7c\x2d\xab\xdb\x4b\x78\x7d\xbc\xea\xc4\xa0\xa3\x3a\x4a\xb2\x30\xea\x30\xea\x44\x67\xac\x34\xd5\x32\xd3\x32\xe9\x32\x98\x49\xfc\x71\x7e\x92\x05\xbe\xc5\xe6\x64\x76\x22\x24\x7b\x83\xd0\x19\xe3\x70\x9b\xfe\xd3\xbf\xf3\xf9\xcf\x6c\x0e\x1c\xb6\xb8\xb5\xce\xaa\x25\x39\x72\x7a\x1c\x85\x27\x12\x4f\xfa\xa5\x2a\x1e\xc2\xce\xaa\x14\xbf\x32\x35\x76\xea\xfb\x89\xf2\x96\x50\x47\x26\xd9\x8c\xec\xea\x63\x27\xcb\x32\xc7\x1e\xbf\x07\x8f\x07\x49\xfd\x2c\x1a\x98\xf2\xb4\xfb\xd2\x14\xc8\x8b\x17\x52\x29\x52\x53\x78\xd2\x59\x50\xe6\xfa\x4d\x7f\xf4\x6b\x3a\x32\xcf\x32\xf6\x35\x5c\x9b\xc5\x7a\x71\xbb\xbc\xbb\x2b\xab\xc5\x4d\x43\xb8\x36\xcb\x9b\xb6\x6a\xaa\x9b\x72\x51\xae\x5a\x6c\xb2\xd4\xb7\xf1\x67\x6c\x51\xe8\x94\xd0\x7b\xf2\x79\x1d\xb2\xd3\xd8\xed\x18\x87\x4e\x8a\x0c\x20\x7d\x6d\x06\xd4\xae\x06\x7b\xbc\xce\x38\x31\xb3\xd9\x57\x9b\x96\xc3\x77\xf2\xf9\xb0\x3d\x62\x4f\x39\x13\x5d\x63\xb3\x68\x9a\x66\x79\x7b\xb7\x5d\x56\xeb\xdb\x65\xd5\xac\xcc\xaa\x2c\x97\xe5\x62\x59\x96\xb7\x19\x80\x95\x4d\x9c\x65\xbb\x9f\x6f\x98\x16\x9d\x10\x5c\x80\x6d\x41\x79\xa4\xcb\xf8\xc7\xd3\x46\x3e\x96\x35\x6d\xd7\xf8\xa1\x01\xd0\xc3\x6c\x3e\x4f\x68\x44\x9e\x52\x4e\x4b\xec\x40\x76\xd7\xa9\x4c\x82\xe4\xae\x21\x1f\x94\xe6\x3d\x3f\x2d\x03\x47\xe9\x2e\x3e\xae\xcf\xe4\xe3\xdc\x1c\x0e\x56\x3b\xeb\xe7\xcb\x63\x0a\x89\xaa\x6c\xb7\xa3\x52\x6a\x3d\xfa\xa6\x8c\xc7\x7b\xe8\xa4\xcb\x00\x9e\xad\x6f\x6a\xb8\x7f\x7c\x9c\x33\x8c\xe7\x18\xe9\x8d\xbb\xeb\x12\x9e\xe2\x23\xcf\xf3\x8f\x71\x7a\x18\x6d\x5c\xad\x9b\x06\x15\x85\xb4\x86\x4f\xb1\x67\xe2\x7e\xbe\x80\x59\x06\xa3\x50\x13\xc9\x48\x1b\x6c\x36\xc8\x00\x7a\xf4\xb6\x25\xd1\x0d\x8e\xda\x05\xae\xe1\xbe\x23\xbf\x83\x07\x1b\xfd\x86\xa1\xac\xe1\x76\x91\xaf\xa6\xc3\xba\x86\xbb\x75\xbe\xcc\xfe\x0e\x00\x00\xff\xff\x73\xb8\xb7\x47\xb7\x08\x00\x00"
func inception_resnet_v2YmlBytes() ([]byte, error) {
return bindataRead(
_inception_resnet_v2Yml,
"Inception_ResNet_v2.yml",
)
}
func inception_resnet_v2Yml() (*asset, error) {
bytes, err := inception_resnet_v2YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "Inception_ResNet_v2.yml", size: 2231, mode: os.FileMode(436), modTime: time.Unix(1555245193, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _inception_v1Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\xcf\x6f\xdc\xb8\x0e\xbe\xfb\xaf\x20\x30\x87\xb6\x40\x62\x8f\x9d\xf9\x15\x1d\xde\xe1\x05\x78\x7d\x05\xb2\xc1\x22\x2d\xba\x87\x62\x31\xa0\x65\xda\xd6\x56\x96\x0c\x89\xce\x34\xf9\xeb\x17\x92\x3d\xf6\x04\xed\x62\x73\x31\x2c\xf2\x23\x45\x7d\xfc\x44\xdb\x60\x47\x02\x3e\x19\x49\x3d\x2b\x6b\x8e\x4f\x39\xac\x20\x18\xc1\xd6\xf0\x6c\x07\x07\x9d\xad\x48\x27\xb5\xc3\x8e\x4e\xd6\x7d\x17\x09\xc0\x18\xf4\x85\x8c\xb7\xee\x7f\xda\x9e\x60\x05\xb3\x1f\x6a\xeb\x80\x5b\x9a\xe2\x00\x9e\xc8\x79\x65\x8d\x80\x3c\xcd\x8b\x57\xc8\xc9\x03\xd2\x1a\x76\xa8\x0c\x27\x17\xd8\x35\xac\x66\x80\x32\xb5\x75\x1d\xf2\xf8\x0e\x9e\x3a\x34\xac\xe4\xec\x1f\xbd\x49\xc8\x83\xca\x90\x13\xb0\x82\x79\xe1\x61\xf0\x54\x01\x5b\xe8\xc9\x05\xe4\x58\x19\xf4\x8e\x2a\x25\x43\xce\x04\x60\x05\xdd\xa0\x59\xf5\x9a\xa0\xd7\xc8\x01\xe6\x41\xa2\x81\x92\xc0\xf7\x24\x55\xad\xa8\x4a\x00\xb0\xab\x76\x9b\x40\x01\x40\xd3\x0f\x02\x1c\xaa\xde\xd9\xbf\x48\x72\x26\xd1\x75\xfa\x9a\x23\x29\xb5\xb6\x27\x11\xb1\xd7\xb2\x1f\x22\x5c\xbe\x0d\xde\x44\x78\xdf\xcb\xdd\x46\x93\x78\x5b\xe4\x84\x9e\x62\xdf\x50\xd9\x65\x40\x45\x5e\x3a\x15\x9b\x2f\xe0\x3f\x09\x2c\x5a\x80\xa7\x1c\xd0\xc9\x56\x31\x49\x1e\x1c\x5d\x81\xea\x7a\x4d\x1d\x19\xa6\x2a\xf4\x21\x74\xf9\xa4\x8c\x51\xa6\x81\x4f\xf7\x9f\xbf\x3e\xde\x41\xb1\xce\x37\xe0\x87\xb2\x53\x3e\x76\xe6\xa3\xb5\xcd\x3d\x3d\x10\xa7\x31\x33\x5b\x57\x0d\x72\x8c\xfe\x68\x43\x5c\x45\xd4\x93\x83\x93\xe2\x36\xb4\xec\xc9\xea\x21\xec\xed\xaf\xe0\xf3\x0b\x35\x54\x3d\x03\x31\xa0\x4e\xe1\x7d\x48\xfd\x21\x01\xf8\xd2\x2a\x3f\xb5\x50\x79\xa8\x9d\xed\x2e\x95\xf8\x5b\x70\x78\xf8\xac\x55\x07\xef\xd5\x85\xac\x8f\xc5\x3a\xdf\x1d\xd7\x87\x63\x71\x48\x19\x5d\xda\xbc\x7c\x48\x13\x47\x35\x39\x32\x92\x7c\x90\xcc\xb2\x8a\x6a\xc1\x3e\x88\x27\x83\x13\x95\x5e\x31\x85\x57\x62\x99\xa6\x30\x52\x56\x86\xf2\x2f\x85\x7e\x0d\x2d\x73\x2f\xb2\x0c\xdd\x0f\xf5\x94\x5a\xd7\x64\x58\xfa\x2c\xdf\xe6\x45\xba\x5e\x6f\x77\xfb\x19\xe3\x45\x96\x35\x8a\xdb\xa1\x4c\xa5\xed\xb2\xa5\x33\x59\xcc\xe5\x33\x76\x44\x59\x87\x9e\xc9\x65\x8e\x3c\x85\x36\x64\x5e\xab\x2e\x59\x81\x56\x92\x8c\x8f\xf7\x73\xd9\x7d\x32\x0a\x18\x8c\x23\xcf\x4e\x49\xa6\x2a\x59\x81\x32\xfd\xc0\xf1\x38\x0b\x76\xb4\x89\xa8\xfa\x5a\x39\xcf\x23\x0a\xf8\xb9\xa7\x9f\x6e\xef\x75\x34\x0b\x50\x1d\x36\x14\xd5\xb5\x82\x0b\xc9\x9c\xab\xb8\xc8\x13\x41\xaf\x54\x15\x00\xe3\x16\x4b\x96\x1e\xc3\x18\x60\x72\x91\xf9\xb8\xf5\x62\x8a\x08\x00\x1a\xc5\x76\x1c\x2b\xa8\xb5\x45\xbe\x29\x26\x5f\xcc\x77\xd4\xf8\x1c\x6e\xfb\xbb\xb8\x7a\x37\xb9\x34\x3e\xdb\x81\x05\xfc\xff\x8f\xbb\xc9\x22\xad\xb6\xee\x18\x8e\x24\xe0\xf1\xe3\x7f\x27\x6b\xa5\x3a\x32\x41\xa5\x5e\xc0\xb7\x9b\x2b\x28\x8a\x4d\x7c\xfc\x39\xf9\x3b\x42\x23\xe0\x5b\x5e\x1c\xae\xe0\xfc\x38\xfb\xbc\x44\x4d\x22\x58\x12\x3b\x70\x3f\xf0\x48\x67\x38\x69\x3c\xcb\x44\xcb\xe8\x4b\x60\x22\x51\x6a\xf4\x5e\xd5\x4a\xe2\x3c\x76\xf0\x57\x6c\x8e\x61\x0b\x21\xc9\x2f\x08\x9d\x30\x1a\xcb\xd8\xa7\x7f\xe7\xf3\x9f\xd9\xec\x9d\x2d\xb1\x54\x5a\xb1\x22\x3f\x73\x3a\xcf\x81\xaf\x79\x76\x6f\x1b\xc5\x3e\xfb\x7d\x1e\x99\x3e\x7b\x24\xdf\x62\x4f\xc7\x7c\xa4\xbd\x26\x0c\x33\xc2\x1f\x07\xa7\xc5\x2c\x72\x7f\x93\x62\x87\x2f\xd6\xe0\xc9\x47\xa9\x7b\xb6\x8e\xd2\x38\x90\xe2\x05\xf1\xcf\xc6\x13\xfb\x2c\x0a\xc3\x10\x4f\x86\x3c\xe5\x1f\xfc\x3a\xaf\x6c\x49\x7e\xf7\x43\x27\x60\x27\xd7\xdb\xf5\xe1\xe6\xf6\x36\x2f\xd6\xfb\x8a\x70\x2b\x6f\xf6\x75\x51\x15\xfb\x7c\x9d\x6f\x6a\xac\x92\xa8\xdd\x40\xc3\x79\x72\x9f\xe7\x45\xe3\xb0\x6f\x01\x4d\x05\x27\x52\x4d\xcb\x1e\x1c\x79\x3b\x38\x49\x81\xa2\x12\x3d\x2d\xe5\xbf\xa5\xfa\xf3\x6d\x5d\xee\x6f\xdc\xc1\x67\x09\x8c\x7b\x1d\x7b\xe4\x56\xc0\xab\x39\x54\x3b\xfb\x42\x26\xed\xcb\x19\xb4\x1c\xad\xc2\x6d\xbe\xd9\xc8\xed\xb6\x2a\xea\x72\xb3\x97\x75\x95\x97\x87\x35\xe5\xfb\x7d\x71\xb3\x2e\x76\xb7\x09\x80\xf2\xc7\x38\x94\x9f\xa6\xaf\x43\x8d\xda\x13\xac\x40\xd5\xc0\x6e\xa0\xab\x20\x8e\x71\x34\x9f\xcf\x13\xc6\x24\x42\x78\x61\x0b\x68\x60\x0a\x9f\x2e\x73\x40\x2e\xb5\x5e\x92\x33\x1a\x62\xba\x8a\x8c\x65\x0a\xef\x53\x54\xad\x34\xc5\xdf\x00\x7f\xd6\xec\xcf\xdc\x86\x99\x3e\x7d\x25\xce\x5b\x22\xb3\x53\xe5\xc0\xe3\xbc\xa5\x1f\xec\x10\x0c\x71\xfc\x1b\x58\x7c\x09\xc0\x77\x65\x2a\x01\x77\x0f\x0f\x53\x85\x61\x1d\x76\x32\x34\x38\xd4\x73\xcc\xfb\xbb\x87\x87\x2b\x78\x0c\x8f\x34\x4d\xc3\xd7\x21\xfe\x48\x28\xd3\x1c\x2b\x64\xf4\xc4\x02\x3e\x05\x69\x3d\x10\x87\xc1\x35\xda\xe6\x1f\x82\x38\xec\xa6\x80\x04\xa0\x43\xa3\x6a\xf2\x7c\xc4\x81\x5b\xeb\x04\xdc\xb5\x64\x1a\xb8\x57\x21\xaf\xed\x73\x01\xbb\xdb\xf4\x30\x2e\xb6\x02\x0e\xb7\xe9\x2e\xf9\x3b\x00\x00\xff\xff\x0e\x5b\xb8\xb2\x40\x09\x00\x00"
func inception_v1YmlBytes() ([]byte, error) {
return bindataRead(
_inception_v1Yml,
"Inception_v1.yml",
)
}
func inception_v1Yml() (*asset, error) {
bytes, err := inception_v1YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "Inception_v1.yml", size: 2368, mode: os.FileMode(436), modTime: time.Unix(1555245193, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _inception_v2Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\x4d\x6f\xe4\x36\x0c\xbd\xfb\x57\x10\xc8\x61\x77\x81\xc4\x1e\x7b\xbe\x75\xe8\xa1\x29\xb6\x5d\xa0\xcd\x16\xdb\x45\x7b\x58\x14\x06\x47\xa6\xc6\x6a\x64\xc9\x90\xe8\x99\x24\xbf\xbe\x90\xec\xf9\x08\xb0\x45\x73\x31\x24\xf2\x3d\x8a\x7a\x24\x65\x8b\x1d\x09\xf8\x64\x25\xf5\xac\x9d\xad\x0f\x55\xa6\x3c\x76\x74\x74\xfe\x51\x64\x00\xa3\xff\x2b\xd9\xe0\xfc\x47\xe3\x8e\x19\xc0\x81\x7c\xd0\xce\x0a\x28\xf3\xb2\xca\xae\x76\xb3\x4c\x3a\xcb\xa8\x2d\xf9\x48\xc5\xae\x59\x2d\xe2\x02\x60\xdf\x0f\x02\x3c\xea\xde\xbb\x7f\x48\x72\x21\xd1\x77\xe6\x8e\x53\x54\x65\xdc\x51\x24\xec\x9d\xec\x87\x04\x97\x6f\x83\xef\x13\xbc\xef\xe5\x6a\x61\x48\xbc\x8d\x39\xa1\x27\xee\x1b\x32\xbb\x26\x34\x14\xa4\xd7\x49\x28\x01\x3f\x64\x70\xd1\xed\xee\x50\x81\xb6\xec\x5d\x33\x48\x6a\xe0\x23\x4a\x76\x5e\xbf\x60\xf4\xbd\x57\xd3\x8e\x40\x3a\x7b\x70\x66\x88\xd6\x10\xf1\x0e\x42\x87\xc6\x90\x7f\xe5\xf9\x00\x68\x1b\x08\xae\x23\xe8\xb4\x75\x1e\x64\x8b\x76\x4f\x23\xe1\xea\xc8\x32\xcf\x00\xbe\xb6\x3a\x40\xe7\x1a\x32\xa0\x03\x28\xef\xba\xab\x6a\xc1\x6f\xd1\x11\xe0\x0f\xa3\x3b\x78\xaf\xaf\xaa\x5c\x57\xb3\x72\x55\xcf\x36\x75\xb5\xc9\x19\x7d\xbe\x7f\xf9\x90\x67\x9e\x14\x79\xb2\x92\x42\x54\xf3\x0e\x5a\xe6\x5e\x14\x05\xfa\x27\x7d\xc8\x9d\xdf\x17\xb8\x0b\x45\xb9\x2c\xab\x7c\x36\x5b\xae\xd6\x67\x4c\x10\x45\xb1\xd7\xdc\x0e\xbb\x5c\xba\xae\xb8\xa8\x57\xa4\xc4\x42\xc1\x9e\xa8\xe8\x30\x30\xf9\xc2\x53\x20\xf4\xb2\x2d\x82\xd1\x5d\x66\xb4\x24\x1b\x62\x8b\x7d\xfe\xe9\x73\xa6\x6d\x3f\x70\x3a\xfc\x06\x94\xf6\x81\x21\x59\x80\x9f\x7b\x02\xe5\x3c\x70\x4b\xe3\x65\xd3\xd9\xd1\x2c\x40\x77\xb8\xa7\x54\xcc\x1b\xb8\xaa\x10\x38\x95\xe0\x57\x71\x12\xe8\x55\x11\x23\x60\x3c\xe2\x12\xa5\xc7\x38\x00\x4c\x3e\x08\xb8\x19\x8f\xbe\x98\x12\x02\x80\x0c\x75\x64\xb9\x1e\x33\x50\xc6\x21\xcf\xab\xc9\x97\xe2\xd5\x06\x9f\xc9\x0b\x78\x97\x76\xef\x26\x97\xc1\x67\x37\xb0\x80\x5f\xfe\xba\x9f\x2c\xd2\x19\xe7\xeb\x78\x25\x01\x5f\x7e\xfe\x71\xb2\x36\xba\x23\x1b\xc7\x2a\x08\xf8\x36\xbf\x85\xaa\x5a\xa4\xcf\xdf\x93\xbf\x23\xb4\x02\xbe\x95\xd5\xe6\x16\x4e\x9f\x93\x2f\x48\x34\x24\xa2\x25\x73\x03\xf7\x03\x8f\x72\xc6\x9b\xa6\xbb\x4c\xb2\x8c\xbe\x0c\x26\x11\xa5\xc1\x10\xb4\xd2\x32\xb5\x6c\x62\xe0\xf7\xd4\x1c\x69\x17\x41\xb2\xef\x08\x3a\x61\x0c\xee\x52\x9d\xfe\x5f\xcf\xff\x56\xb3\xf7\x6e\x87\x3b\x6d\x34\x6b\x0a\x67\x4d\xcf\x33\xf0\x67\x55\xfc\xee\xa9\xd1\x32\xcd\x4d\xf1\x85\x42\x8b\x3d\xd5\xe5\xa8\xb7\x22\xe4\xc1\x53\xa8\x07\x6f\xc4\xb9\x51\xc3\x3c\xc7\x0e\x5f\x9c\xc5\x63\x48\xed\x1a\xd8\x79\xca\xd3\xe0\xa7\x26\x0f\xcf\x36\x10\x87\x22\x75\x84\x25\x9e\x0c\x65\xce\x4f\xfc\x3a\xae\x6c\x49\x3e\x86\xa1\x13\xb0\x92\xb3\xe5\x6c\x33\xdf\x6e\xcb\x6a\xb6\x6e\x08\x97\x72\xbe\x56\x55\x53\xad\xcb\x59\xb9\x50\xd8\x64\xa9\x69\x63\x25\x76\x18\xe8\x92\xd0\x5b\xf2\x39\xcd\xd0\x65\xaa\xf6\x1e\xfb\x36\x14\x19\x40\x5a\xd5\x3d\x72\x2b\xe0\xd5\x78\x2b\xef\x5e\xc8\xe6\xfd\xee\x0c\xba\x24\xab\xe6\xcb\xb5\x5c\x2e\x56\x8b\x4d\xb9\xd9\xae\xd6\xdb\xdd\x52\x96\xa8\xca\x46\xcd\x17\x9b\x66\x23\x55\x06\xa0\x43\x1d\x67\x54\x1f\xa6\x77\x55\xa1\x09\x04\x37\xa0\x15\xb0\x1f\xe8\x36\xd6\xd9\xa6\x62\x9f\xee\x13\x5f\x1f\x84\xb8\x60\x07\x68\x61\xa2\x4f\x73\x19\x91\x97\x5c\xd3\xfb\x76\x24\xbd\x6f\x39\x8c\x86\x14\xae\x21\xeb\x98\xe2\x7a\x62\x29\x6d\x28\xfd\x81\xc2\xa9\xfd\x52\x8c\x6b\x3a\x1c\x35\xb7\x7a\x4c\xe5\x74\x24\x32\x7b\xbd\x1b\x98\x52\xc3\xd1\x13\x7b\x04\x4b\x1c\x7f\x69\x70\xf1\x65\x00\x8f\xda\x36\x02\xee\x1f\x1e\xa6\x0c\xe3\x3e\x9e\x64\x69\xf0\x68\xce\x9c\xf7\xf7\x0f\x0f\xb7\xf0\x25\x7e\xf2\x3c\xff\x10\x67\xc6\xa3\xb6\xda\xee\xeb\x06\x19\x03\xb1\x80\x4f\xb1\x59\x1e\x88\xe3\x1b\x34\xda\x60\x08\xd4\x44\x31\xd2\xbb\x35\x11\x32\x80\x0e\xad\x56\x14\xb8\xc6\x81\x5b\xe7\x05\xdc\xb7\x64\xf7\xf0\xab\x8e\x71\x5d\x5f\x0a\x58\xcf\xf3\xed\xb8\x59\x0a\xd8\x96\xf9\xe6\xdf\x00\x00\x00\xff\xff\xaa\x34\x8b\xbf\xa5\x07\x00\x00"
func inception_v2YmlBytes() ([]byte, error) {
return bindataRead(
_inception_v2Yml,
"Inception_v2.yml",
)
}
func inception_v2Yml() (*asset, error) {
bytes, err := inception_v2YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "Inception_v2.yml", size: 1957, mode: os.FileMode(436), modTime: time.Unix(1555245193, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _inception_v3Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\xcd\x6e\xe4\x36\x0c\xbe\xfb\x29\x08\xe4\xb0\xbb\x40\xe2\xdf\x64\x7e\x74\xe8\x61\x03\xb4\x5d\xa0\x1d\x14\xe9\xa2\x3d\x2c\x0a\x83\x23\xd3\x63\x35\xb2\x64\x48\x74\x26\xc9\xd3\x17\x92\x3d\xe3\x09\xb0\xc5\xe6\x62\x88\xe4\x47\x8a\xfc\x48\xca\x06\x7b\x12\xf0\xc5\x48\x1a\x58\x59\x53\x3f\x55\x49\xeb\xb0\xa7\xa3\x75\x8f\x22\x01\x98\xec\x5f\xc9\x78\xeb\x7e\xd6\xf6\x98\x00\x3c\x91\xf3\xca\x1a\x01\x45\x5a\x94\xc9\x85\x94\x27\xd2\x1a\x46\x65\xc8\x05\x57\xec\x9b\xd5\x6d\x38\x00\x1c\x86\x51\x80\x43\x35\x38\xfb\x2f\x49\xce\x24\xba\x5e\xdf\x70\x8c\xda\x6a\x7b\x14\x11\x7b\x23\x87\x31\xc2\xe5\xfb\xe0\x87\x08\x1f\x06\xb9\xba\xd5\x24\xde\xe7\x39\xa3\x67\xdf\x77\x64\x76\xe9\xd0\x90\x97\x4e\x45\xa2\x04\xfc\x14\xa8\x40\xa7\xd0\x30\xd8\x76\xa1\xf0\xe6\xa9\x84\x63\xa7\x64\x07\xd8\x34\x1e\x3e\xef\x6e\x70\x7c\x56\x5a\xa1\x7b\x49\x13\x80\xaf\x9d\xf2\xd0\xdb\x86\x34\x28\x0f\xad\xb3\xfd\x05\xbb\xf0\x7b\x30\x78\xf8\x53\xab\x1e\x3e\xaa\x8b\xae\xd4\x65\x5e\xac\xea\x7c\x53\x97\x9b\x94\xd1\xa5\x87\xd7\x4f\x69\xe2\xa8\x25\x47\x46\x92\x0f\xd5\xdf\x40\xc7\x3c\x88\x2c\x43\xf7\xac\x9e\x52\xeb\x0e\x19\xee\x7d\x56\xdc\x15\x65\x9a\xe7\x77\xab\xf5\x19\xe3\x45\x96\x1d\x14\x77\xe3\x3e\x95\xb6\xcf\x96\x6a\xb3\x98\x98\xcf\xd8\x11\x65\x3d\x7a\x26\x97\x39\xf2\x84\x4e\x76\x99\xd7\xaa\x4f\xb4\x92\x64\x3c\x09\x18\x8d\x23\xcf\x4e\x49\xa6\x26\xb9\x02\x65\x86\x91\x3d\xb0\x05\xee\x68\xaa\x2f\x99\x74\x21\xb5\x2b\x68\x95\xf3\x3c\xa1\x80\x5f\x06\x82\xd6\xba\x0b\x68\xc8\x2c\xa8\x05\xa8\x1e\x0f\x14\x5b\x73\x05\x17\x7c\x07\x8a\x03\xfc\x22\x4e\x04\xbd\x69\x49\x00\x4c\x57\x2c\x51\x06\x0c\xe3\xcc\xe4\xbc\x80\xab\xe9\xea\x45\x15\x11\x00\xa4\xa9\x27\xc3\xf5\x94\x41\xab\x2d\x72\x55\xce\xb6\x18\xaf\xd6\xf8\x42\x4e\xc0\x87\x28\x7d\x98\x4d\x1a\x5f\xec\xc8\x02\x7e\xfd\xfb\x7e\xd6\x48\xab\xad\xab\x43\x49\x02\x1e\x7e\xf9\x3c\x6b\x1b\xd5\x93\x09\x4b\xe2\x05\x7c\xab\xae\xa1\xdc\x6e\xe3\xe7\x9f\xd9\xde\x13\x1a\x01\xdf\x8a\x72\x73\x0d\xa7\xcf\xc9\xe6\x25\x6a\x12\x41\x93\xd8\x91\x87\x91\x27\x3a\x43\xa5\xb1\x96\x99\x96\xc9\x96\xc0\x4c\xa2\xd4\xe8\xbd\x6a\x95\xc4\x40\x4c\xf4\xc0\xef\xb1\x39\xb9\x2d\x84\x24\xdf\x21\x74\xc6\x68\xdc\xc7\x3e\xfd\x98\xcf\xff\x67\x73\x70\x76\x8f\x7b\xa5\x15\x2b\xf2\x67\x4e\xcf\x9b\xf3\x57\x95\xfd\xe1\xa8\x51\x32\x08\x3e\x7b\x20\xdf\xe1\x40\x75\x31\xf1\xdd\x12\xf2\xe8\xc8\xd7\xa3\xd3\xe2\x3c\xc6\xbe\x4a\xb1\xc7\x57\x6b\xf0\xe8\xe3\x30\x7b\xb6\x8e\xd2\xb8\xc6\x71\x05\xfc\x8b\xf1\xc4\x3e\x8b\x13\x61\x88\x67\x45\x91\xf2\x33\xbf\x8d\x2b\x3b\x92\x8f\x7e\xec\x05\xac\x64\x7e\x97\x6f\xaa\xed\xb6\x28\xf3\x75\x43\x78\x27\xab\x75\x5b\x36\xe5\xba\xc8\x8b\xdb\x16\x9b\x24\x0e\x6d\xe8\xc4\x1e\x3d\x2d\x09\xbd\x27\x9f\xd3\x86\x2d\x3b\x77\x70\x38\x74\x3e\x4b\x00\xe2\xa9\x1e\x90\x3b\x01\x6f\x96\xbf\x75\xf6\x95\x4c\x3a\xec\xcf\xa0\x25\xd9\xaa\xdc\xb4\xab\x4d\x5b\xad\x91\x72\x59\x6c\xf2\x62\x5b\xd0\x76\x25\xb7\xfb\x75\x85\x9b\xa2\x0a\x5b\xa0\x7c\x1d\x36\x58\x3d\xcd\xaf\x64\x8b\xda\x13\x5c\x81\x6a\x81\xdd\x48\xd7\xa1\xcf\x26\x36\xfb\x54\x4f\x78\x9b\x10\xc2\x81\x2d\xa0\x81\xd9\x7d\xde\xcb\x80\x5c\x72\x05\x34\x0d\x1c\x49\x1d\x3a\xf6\x93\x22\x86\x6b\xc8\x58\xa6\x70\x9e\xbd\x5a\xa5\x29\xfe\x4f\xfc\x69\xfc\x62\x8c\x4b\x77\x38\x2a\xee\xd4\x94\xca\xe9\x4a\x64\x76\x6a\x3f\x32\xc5\x81\xa3\x67\x76\x08\x86\x38\xfc\xa0\x60\xb1\x25\x00\x8f\xca\x34\x02\xee\x77\xbb\x39\xc3\x20\x87\x9b\x0c\x8d\x0e\xf5\xd9\xe7\xe3\xfd\x6e\x77\x0d\x0f\xe1\x93\xa6\xe9\xa7\xb0\x33\x0e\x95\x51\xe6\x50\x37\xc8\xe8\x89\x05\x7c\x09\xc3\xb2\x23\x0e\x6f\xd0\xa4\x83\xd1\x53\x13\xc8\x88\xef\xd6\xec\x90\x00\xf4\x68\x54\x4b\x9e\x6b\x1c\xb9\xb3\x4e\xc0\x7d\x47\xe6\x00\xbf\xa9\x10\xd7\x0e\x85\x80\xf5\x26\xcd\x27\xe1\x4e\xc0\xb6\x4a\xb7\xc9\x7f\x01\x00\x00\xff\xff\x46\xcc\xa8\xdc\x74\x07\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: 1908, mode: os.FileMode(436), modTime: time.Unix(1555245193, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _inception_v4Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\x4d\x6f\xe4\x36\x0c\xbd\xfb\x57\x10\xc8\x61\x77\x81\xac\xbf\x26\x33\x93\xd1\xa1\x87\x06\x68\xbb\xc0\x36\x28\xb6\x8b\xf6\xb0\x28\x0c\x8e\x4c\xdb\x6a\x6c\xc9\x10\xe9\x4c\x92\x5f\x5f\x48\xf6\x7c\x04\xdd\xa2\xb9\x18\x12\xf9\x48\x91\x6f\x1e\x39\x16\x07\x52\xf0\xc9\x6a\x1a\xc5\x38\x5b\x3d\xde\x24\x8d\xc7\x81\x0e\xce\x3f\xa8\x04\x60\xf6\x7f\x25\xcb\xce\xff\xd4\xbb\x43\x02\xf0\x48\x9e\x8d\xb3\x0a\x8a\xb4\x28\x93\x8b\x5b\x9e\x68\x67\x05\x8d\x25\x1f\x42\x71\xa8\x37\x37\xe1\x00\xd0\x8e\x93\x02\x8f\x66\xf4\xee\x6f\xd2\x92\x69\xf4\x43\xff\x51\x62\xd6\xa6\x77\x07\x15\xb1\x1f\xf5\x38\x45\xb8\x7e\x1b\xbc\x8d\xf0\x71\xd4\x9b\x9b\x9e\xd4\xdb\x22\x17\xf4\x12\xfb\x86\xca\x2e\x03\x6a\x62\xed\x4d\x24\x4a\xc1\x0f\x09\xc0\xd7\xce\x30\x0c\xae\xa6\x1e\x0c\x43\xe3\xdd\x70\x41\x15\xfc\x1a\x1c\x0c\xbf\xf7\x66\x80\xf7\xe6\x82\xe2\xaa\xcc\x8b\x4d\x95\xef\xaa\x7c\x97\x0a\xfa\xb4\x7d\xf9\x90\x26\x9e\x1a\xf2\x64\x35\x71\x68\xe5\x23\x74\x22\xa3\xca\x32\xf4\x4f\xe6\x31\x75\xbe\xcd\x70\xcf\x59\xb1\x2e\xca\x34\xcf\xd7\x9b\xed\x09\xc3\x2a\xcb\x5a\x23\xdd\xb4\x4f\xb5\x1b\xb2\x73\xe9\x59\x2c\x8c\x33\xf1\x44\xd9\x80\x2c\xe4\x33\x4f\x4c\xe8\x75\x97\x71\x6f\x86\xa4\x37\x9a\x2c\x93\x82\xc9\x7a\x62\xf1\x46\x0b\xd5\xc9\x15\x18\x3b\x4e\xc2\x20\x0e\xa4\xa3\xb9\xbf\x64\xb6\x85\xd2\xae\xa0\x31\x9e\x65\x46\x81\x3c\x8f\x04\x8d\xf3\x17\xd0\x50\x59\x30\x2b\x30\x03\xb6\x14\x79\xbe\x82\x0b\xf2\xc0\x35\x11\x7e\x91\x27\x82\x5e\xf1\x1b\x00\xf3\x13\xe7\x2c\x23\x06\x6d\x0a\x79\x56\x70\x35\x3f\x7d\x36\x45\x04\x00\xf5\x34\x90\x95\x6a\xae\xa0\xe9\x1d\xca\xaa\x5c\x7c\x31\x5f\xd5\xe3\x33\x79\x05\xef\xe2\xed\xdd\xe2\xea\xf1\xd9\x4d\xa2\xe0\x97\x3f\xef\x16\x8b\x76\xbd\xf3\x55\x68\x49\xc1\x97\x9f\x7f\x5c\xac\xb5\x19\xc8\x06\xc5\xb3\x82\x6f\xab\x6b\x28\x77\xbb\xf8\xf9\x6b\xf1\x0f\x84\x56\xc1\xb7\xa2\xbc\xbd\x86\xe3\xe7\xe8\x63\x8d\x3d\xa9\x60\x49\xdc\x24\xe3\x24\x33\x9d\xa1\xd3\xd8\xcb\x42\xcb\xec\x4b\x60\x21\x51\xf7\xc8\x6c\x1a\xa3\x31\x10\x13\x23\xf0\x7b\x6c\xce\x61\x67\x42\x92\xef\x10\xba\x60\x7a\xdc\xc7\xdf\xe9\xff\xf9\xfc\x6f\x36\x47\xef\xf6\xb8\x37\xbd\x11\x43\x7c\xe2\xf4\xb4\x49\xfe\xb8\xc9\x3e\xbb\xd6\x08\x67\xbf\x79\xaa\x8d\x0e\x36\x9e\xc9\x6e\x08\x65\xf2\xc4\xd5\xe4\x7b\x75\xd2\x30\xaf\x52\x1c\xf0\xc5\x59\x3c\x70\x54\x32\x8b\xf3\x94\xc6\x81\x8c\xfa\xe7\x67\xcb\x24\x9c\x45\x39\x58\x92\xc5\x50\xa4\xf2\x24\xaf\xf3\xea\x8e\xf4\x03\x4f\x83\x82\x8d\xce\xd7\xf9\xed\x6a\xb7\x2b\xca\x7c\x5b\x13\xae\xf5\x6a\xdb\x94\x75\xb9\x2d\xf2\xe2\xa6\xc1\x3a\x89\x8a\x0d\xcd\xf3\x48\xda\x34\x86\x8e\xf3\xdc\x7a\x1c\x3b\x40\x5b\xc3\x81\x4c\xdb\x09\x83\x27\x76\x93\xd7\x14\x88\xd9\x23\xd3\xb9\xfc\xb7\x54\x7f\x1c\xc6\xf3\x78\xc6\x17\x38\x4b\x60\x7e\xab\x1a\x51\x3a\x05\xaf\xf6\x44\xe3\xdd\x0b\xd9\x74\xdc\x9f\x40\xe7\xd6\x56\xab\xb2\xdc\xeb\x42\xe3\xb6\xd9\x69\xbd\x5d\xaf\x68\xa3\xb7\xb9\x2e\x8b\xed\x76\x55\xec\x50\x27\x00\x86\xab\x30\xec\xe6\x71\xd9\x8e\x0d\xf6\x4c\x70\x05\xa6\x01\xf1\x13\x5d\x07\x49\xd8\xa8\x8b\x63\x3f\x61\x8d\x21\x84\x83\x38\x40\x0b\x4b\xf8\x32\xc2\x01\x79\xae\xf5\x92\x9c\xd9\x10\xd3\xd5\x64\x9d\x50\x38\x2f\x51\x8d\xe9\x29\xfe\x8f\xf0\x51\xa9\xff\xe6\xf6\x60\xa4\x33\x73\x29\xc7\x27\x51\xc4\x9b\xfd\x24\x14\xb5\x49\x4f\xe2\x11\x2c\x49\xf8\x63\x82\xb3\x2f\x01\x78\x30\xb6\x56\x70\x77\x7f\xbf\x54\x18\xee\xe1\x25\x4b\x93\xc7\xfe\x14\xf3\xfe\xee\xfe\xfe\x1a\xbe\x84\x4f\x9a\xa6\x1f\xc2\x78\x79\x34\xd6\xd8\xb6\xaa\x51\x90\x49\x14\x7c\x0a\xd2\xba\x27\x09\xeb\x6a\xb6\xc1\xc4\x54\x07\x32\xe2\x8a\x5b\x02\x12\x80\x01\xad\x69\x88\xa5\xc2\x49\x3a\xe7\x15\xdc\x75\x64\x5b\xf8\x6c\x42\x5e\x37\x16\x0a\x6e\xf3\xb4\x9c\x2f\x6b\x05\xbb\x75\x5a\x26\xff\x04\x00\x00\xff\xff\x5e\xee\xa1\x89\x6c\x07\x00\x00"
func inception_v4YmlBytes() ([]byte, error) {
return bindataRead(
_inception_v4Yml,
"Inception_v4.yml",
)
}
func inception_v4Yml() (*asset, error) {
bytes, err := inception_v4YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "Inception_v4.yml", size: 1900, mode: os.FileMode(436), modTime: time.Unix(1555245193, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _mlperf_mobilenet_v1Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\x4b\x6f\xe3\x38\x0c\xbe\xfb\x57\x10\xc8\x61\x76\x81\x8e\x5f\x49\x93\x54\x87\x3d\x6c\x81\x7d\x00\x33\xc5\x60\xb0\x8f\xc3\x60\x61\x30\x12\x15\x6b\x6b\x4b\x86\x44\x37\x6d\x7f\xfd\x42\xb2\xd3\x24\xd8\x16\xd3\x8b\x21\x91\x1f\x3f\x91\x9f\x48\xd9\x62\x4f\x02\x3e\x7f\xfa\x42\x5e\x37\x9f\xdd\xce\x74\x64\x89\x9b\x87\x2a\xd3\x1e\x7b\x3a\x38\x7f\x2f\x32\x80\x09\xf6\x07\xd9\xe0\xfc\x2f\x9d\x3b\x64\x00\x0f\xe4\x83\x71\x56\x40\x95\x57\x75\x76\xb6\x2b\x33\xe9\x2c\xa3\xb1\xe4\x63\x28\xf6\x6a\xbd\x8a\x0b\x80\xfd\x30\x0a\xf0\x68\x06\xef\xfe\x25\xc9\x85\x44\xdf\x77\x1f\x39\xb1\xea\xce\x1d\x44\xc2\x7e\x94\xc3\x98\xe0\xf2\x7d\xf0\x7d\x82\x0f\x83\x5c\xaf\x3a\x12\xef\x8b\x9c\xd1\x73\xec\x3b\x32\x3b\x0f\x50\x14\xa4\x37\x03\xa7\x7a\x7f\xca\xe0\x35\xf9\x9a\x2a\x2f\x9b\xba\x5e\xe5\x19\xc0\x9f\x81\xa0\x3f\xf7\xd5\x65\xb5\x6d\xca\x6d\x53\xd6\x45\xff\x5a\x0c\xef\x9f\x41\x7b\xd7\x9f\x09\x0e\x8a\x98\x64\x3c\x12\x7a\xa7\xa8\x83\x67\xe7\xf2\xcc\x93\x26\x4f\x56\x52\x88\x75\x7f\x84\x96\x79\x08\xa2\x28\xd0\x3f\x9a\x87\xdc\xf9\x7d\x31\x28\x5d\x54\x9b\x72\x95\x97\xab\xed\xba\xca\x07\xa5\x2f\x80\x7b\xc3\xed\xb8\xcb\xa5\xeb\x8b\xbe\x1b\xc8\xeb\xc2\xd8\x99\xb2\x60\x4f\x54\xf4\x18\x98\x7c\xf1\x50\xe6\xd7\x85\xec\x30\x04\xa3\x8d\xc4\x98\x47\x83\x56\x35\x2f\x59\x7d\x87\x95\x3d\x1a\x6b\xec\xfe\x82\xd4\xf4\xb8\xa7\xe6\x92\xf5\x2d\x9e\xd3\x55\x14\xa9\xfe\x50\xec\x3a\xb7\x3b\x32\x79\x0a\x84\x5e\xb6\x45\xe8\x4c\x5f\x58\xe2\x70\x21\x6c\xde\xab\xac\x33\x92\x6c\x20\x01\xa3\xf5\x14\xd8\x1b\xc9\xa4\xb2\x05\x18\x3b\x8c\x1c\x80\x1d\x70\x4b\x93\xb6\xd9\x64\x8b\x92\x2e\x40\x1b\x1f\x78\x42\x01\x3f\x0d\x04\xda\xf9\x33\x68\x4c\x37\x9a\x05\xa4\x6a\x52\x33\x2d\xe0\xac\x43\xc0\xe9\x04\x3f\xe3\x49\xa0\x8b\x26\x8a\x80\xe9\x88\x13\xcb\x80\x71\x00\x99\x7c\x10\xb0\x98\x8e\x3e\x99\x12\x02\x80\x3a\xea\xc9\x72\x33\x65\xa0\x3b\x87\xbc\xac\x67\x5f\xe2\x6b\x3a\x7c\x22\x2f\xe0\x43\xda\x7d\x98\x5d\x1d\x3e\xb9\x91\x05\xfc\xf6\xf7\xed\x6c\x91\xae\x73\xbe\x89\x25\x09\xf8\xfa\xeb\xcf\xb3\x55\x99\x9e\x6c\x1c\xeb\x20\xe0\xdb\xf2\x0a\xea\x7a\x95\x3e\xff\xcc\xfe\x9e\xd0\x0a\xf8\x56\xd5\xdb\x2b\x38\x7e\x8e\xbe\x20\xb1\x23\x11\x2d\x99\x1b\x79\x18\x79\x92\x33\x56\x9a\x6a\x99\x65\x99\x7c\x19\xcc\x22\xfe\xaf\x19\x16\x80\xaf\xa9\x39\x85\x9d\x04\xc9\x5e\x11\x74\xc6\x74\xb8\x4b\xf7\xf4\x7d\x3d\xdf\x56\x73\xf0\x6e\x87\x3b\xd3\x19\x36\x14\x8e\x9a\xbe\x8c\xfb\x5f\x55\xf1\xc5\x93\x32\x69\x10\x42\xf1\x95\x42\x8b\x03\x35\x55\x0a\xd5\x84\x3c\x7a\x0a\xcd\xe8\x3b\xf1\xd2\xd9\x61\x99\x63\x8f\xcf\xce\xe2\x21\xa4\xfe\x0e\xec\x3c\xe5\xe9\xd9\x49\x73\x1b\x9e\x6c\x88\x6d\x9c\xfa\xc1\x12\xcf\x86\x2a\xe7\x47\xbe\xe4\x95\x2d\xc9\xfb\x30\xf6\x02\xd6\xb2\xbc\x2e\xb7\xcb\x9b\x9b\xaa\x2e\x37\x8a\xf0\x5a\x2e\x37\xba\x56\xf5\xa6\x2a\xab\x95\x46\x95\xa5\x96\x8d\xf7\xb0\xc3\x40\x97\x09\x3d\x93\x75\xca\xa5\xa3\x3d\x49\xe7\x55\x51\xd7\x9b\x6a\x75\xb3\x2d\xb4\xe9\x28\xbc\xf9\x4e\x65\x00\x7b\x8f\x43\xdb\x0c\xc8\xad\x80\xd7\x60\x8d\xf6\xee\x99\x6c\x3e\xec\x5e\xc0\xa7\x9c\xd5\xb5\x5e\xdf\x48\xd2\xdb\x0a\xd5\x16\xf5\x6e\xb9\xbc\x56\x37\x9b\x7a\x83\xd5\x46\xae\xd6\x35\x66\x00\x26\x34\x71\xb6\xcd\xc3\xfc\xb8\xb3\x1f\x09\x16\x60\x74\x5a\x5d\xc5\xbb\xb6\xe9\xc2\x8f\x55\x81\x09\x80\x10\x17\xec\x00\x2d\xcc\xd1\xf3\x6c\x46\xe4\x29\x65\x40\xab\xe0\x40\x66\xdf\x72\x98\x0c\x89\x4e\x91\x75\x4c\x71\x3d\x47\x45\x15\xd2\x5f\x30\x1c\x5b\x30\x71\x9c\x87\xc3\xc1\x70\x6b\xa6\x54\x8e\x47\x22\xb3\x37\xbb\x91\x29\x35\x1d\x3d\xb2\x47\xb0\xc4\xf1\xb7\x0a\x27\x5f\x06\x70\x6f\xac\x12\x70\x7b\x77\x37\x67\x18\xf7\xf1\x24\x4b\xa3\xc7\xee\x25\xe6\x87\xdb\xbb\xbb\x2b\xf8\x1a\x3f\x79\x9e\xff\x18\xe7\x66\x7e\x59\x1b\x85\x8c\x81\x58\xc0\xef\xb1\x65\xee\x88\xe3\x3b\x34\xd9\x60\x0c\xa4\xa2\x18\xe9\xed\x9a\x03\x32\x80\x1e\xad\xd1\x14\xb8\xc1\x91\x5b\xe7\x05\xdc\xb6\x64\xf7\xf0\xc9\x44\x5e\x37\x54\x02\x36\x55\x5e\x2f\xb3\xff\x02\x00\x00\xff\xff\xb4\x02\xfd\x65\x25\x08\x00\x00"
func mlperf_mobilenet_v1YmlBytes() ([]byte, error) {
return bindataRead(
_mlperf_mobilenet_v1Yml,
"MLPerf_Mobilenet_v1.yml",
)
}
func mlperf_mobilenet_v1Yml() (*asset, error) {
bytes, err := mlperf_mobilenet_v1YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "MLPerf_Mobilenet_v1.yml", size: 2085, mode: os.FileMode(436), modTime: time.Unix(1563580544, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _mlperf_resnet50_v15Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\x4d\x6f\xe3\x36\x10\xbd\xeb\x57\x0c\x90\xc3\xb6\xc0\xae\x3e\x2c\x5b\xce\xf2\xd0\x43\x03\xf4\x03\xd8\x1a\x45\x50\xa0\x87\xa2\x10\x46\xe4\xd0\x62\x23\x91\x02\x39\x8a\x93\xfd\xf5\x05\x29\x25\xb6\x8b\x14\x9b\x8b\x21\x0e\xdf\x3c\xbe\x79\x9c\xa1\x2d\x8e\x24\xe0\xb7\x2f\xbf\x93\xd7\xed\x3d\x85\x03\xf1\xae\x6c\x1f\xab\x7c\x97\x69\x8f\x23\x9d\x9c\x7f\x10\x19\xc0\x82\xfb\x83\x6c\x70\xfe\xa7\xc1\x9d\x32\x80\x47\xf2\xc1\x38\x2b\xa0\xca\xab\x4d\x76\xb1\x2a\x33\xe9\x2c\xa3\xb1\xe4\x63\x2a\x8e\xaa\xd9\xc6\x0f\x80\xe3\x34\x0b\xf0\x68\x26\xef\xfe\x21\xc9\x85\x44\x3f\x0e\x9f\x38\xb1\xea\xc1\x9d\x44\xc2\x7e\x92\xd3\x9c\xe0\xf2\x7d\xf0\x63\x82\x4f\x93\x6c\xb6\x03\x89\xf7\x65\xae\xe8\x35\xf7\x1d\xca\x2e\x13\x14\x05\xe9\xcd\xc4\xa9\xde\x1f\x32\x78\xd3\xbf\x3c\xf3\xa4\xc9\x93\x95\x14\xa2\xa8\x4f\xd0\x33\x4f\x41\x14\x05\xfa\x27\xf3\x98\x3b\x7f\x2c\x26\xa5\x8b\x6a\x57\x6d\xf2\xb2\xae\x6f\x77\xf9\xa4\xf4\x15\xf0\x68\xb8\x9f\xbb\x5c\xba\xb1\x18\x87\x89\xbc\x2e\x8c\x5d\x29\x0b\xf6\x44\xc5\x88\x81\xc9\x17\x8f\x65\xbe\x2b\xe4\x80\x21\x18\x6d\x24\x46\x5d\x2d\x5a\xd5\x2a\x62\x92\x71\xf5\x0d\x56\xf6\x68\xac\xb1\xc7\x2b\x52\x33\xe2\x91\xda\x6b\xd6\x6c\x30\x92\x6c\x20\x01\xb3\xf5\x14\xd8\x1b\xc9\xa4\xb2\x1b\x30\x76\x9a\x39\x00\x3b\xe0\x9e\x60\x74\x8a\x86\x6c\x89\xc5\xd2\x6f\x40\x1b\x1f\x78\x41\x01\x3f\x4f\x04\xda\xf9\x0b\x68\x94\x17\xc3\x02\xd2\xa9\xe9\x46\x6e\xe0\xc2\x66\x70\x3a\xc1\x2f\x78\x12\xe8\xea\x26\x22\x60\x39\xe2\xcc\x32\x61\xec\x62\x26\x1f\x04\xdc\x2c\x47\x9f\x43\x09\x01\x40\x03\x8d\x64\xb9\x5d\x14\xe8\xc1\x21\xd7\x9b\x75\x2f\xf1\xb5\x03\x3e\x93\x17\xf0\x61\x59\x2d\x5d\xf1\x61\x45\x0c\xf8\xec\x66\x16\xf0\xcb\x9f\x77\x6b\x44\xba\xc1\xf9\x36\x56\x26\xe0\xfe\xe7\x1f\xd7\xa8\x32\x23\xd9\x38\x22\x41\xc0\x5f\xf5\x47\xd8\x6c\xb6\xe9\xe7\xef\x2c\x73\x33\x4f\x33\x2f\x4e\xc5\x22\x92\xcc\xb5\xe2\x65\x2f\x83\xd5\x9f\xff\xdc\x47\xcc\xc0\xb7\x8c\x5a\xd2\xce\xb5\x66\x6f\x78\xb5\x62\x06\xec\xd2\x15\x7c\xdb\xaa\xff\x37\x6a\xf2\xae\xc3\xce\x0c\x86\x0d\x85\x57\xbb\x82\xd3\x3c\xe2\xd3\x95\x61\x9a\x90\x67\x4f\xa1\x9d\xfd\x20\x5e\x7b\x32\xd4\x39\x8e\xf8\xd5\x59\x3c\x85\xd4\x99\x81\x9d\xa7\x3c\x4d\x61\x9a\x94\xf0\x6c\x03\x71\x58\xba\xd2\x12\xaf\x81\xaa\x2c\xab\x9c\x9f\xf8\x9a\x5a\xf6\x24\x1f\xc2\x3c\x0a\xa8\x10\x65\xb9\xaf\x36\x7b\xdc\xa9\xa6\xfb\xdc\x35\xf5\x56\xed\x69\x5b\x37\x9b\x86\x48\x97\xbb\x2c\xf5\x5f\x74\xbe\xc3\x40\xd7\x9a\xbe\x92\x75\xca\xa5\xd3\x3d\x49\xe7\x55\xb1\xd9\xd5\xbb\xdb\x7d\x5d\x68\x33\x50\x28\x32\x80\xa3\xc7\xa9\x6f\x27\xe4\x5e\x80\xa7\x60\x5f\x86\x7f\xea\x5e\x37\xcf\x5a\xf6\xdd\xe7\x2d\x6e\x14\x96\x3b\xa5\xea\x52\x37\xb2\x44\xbd\xa9\x71\xdb\x74\xb2\xbc\xbd\xbd\x6d\x32\x00\x13\x5a\xf4\xb2\x37\x8f\xeb\x33\xa6\x71\x08\x04\x37\x60\x34\xb0\x9f\xe9\x63\xbc\x36\x9b\xee\xee\x45\x2e\x98\x00\x08\xf1\x83\x1d\xa0\x85\x35\x7d\x9d\xa0\x88\x3c\x6b\x04\xb4\x0a\x4e\x64\x8e\x3d\x87\x25\x90\xe8\x14\x59\xc7\x14\xbf\xd7\xac\x58\x5e\x7a\xf0\xc3\x4b\x37\x25\x8e\xcb\x74\x38\x19\xee\xcd\x22\xe5\xe5\x48\x64\xf6\xa6\x9b\x99\x52\xff\xd0\x13\x7b\x04\x4b\x1c\xff\x41\xe0\xbc\x97\x01\x3c\x18\xab\x04\xdc\x1d\x0e\xab\xc2\xb8\x8e\x27\x59\x9a\x3d\x0e\xaf\x39\xdf\xdd\x1d\x0e\x1f\xe1\x3e\xfe\xe4\x79\xfe\x7d\x1c\x81\xf5\x9d\x6a\x15\x32\x06\x62\x01\xbf\xc6\x76\x38\x10\xc7\xd7\x62\x89\xc1\x1c\x48\x45\x33\xd2\x0b\xb3\x26\x64\x00\x23\x5a\xa3\x29\x70\x8b\x33\xf7\xce\x0b\xb8\xeb\xc9\x1e\xe1\x8b\x89\xbc\x6e\xaa\x04\xec\x9b\xbc\x6a\xb2\x7f\x03\x00\x00\xff\xff\x1b\x3a\x3c\x7d\x11\x07\x00\x00"
func mlperf_resnet50_v15YmlBytes() ([]byte, error) {
return bindataRead(
_mlperf_resnet50_v15Yml,
"MLPerf_ResNet50_v1.5.yml",
)
}
func mlperf_resnet50_v15Yml() (*asset, error) {
bytes, err := mlperf_resnet50_v15YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "MLPerf_ResNet50_v1.5.yml", size: 1809, mode: os.FileMode(436), modTime: time.Unix(1563915498, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _mlperf_ssd_mobilenet_v1_300x300Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x4d\x8f\xdb\x36\x13\xbe\xeb\x57\x0c\xb0\x87\xbc\x2f\xb0\x91\x64\x6b\x13\x7b\x75\x28\x90\xba\x68\x7b\x48\x36\x41\xd2\x8f\x43\x51\x10\x23\x6a\x24\xb1\xa1\x48\x81\x1c\xad\xed\xfc\xfa\x82\xa4\xfc\xb1\xc8\x16\x4d\x2f\x86\xc8\x79\x66\x38\xcf\xcc\x33\xa4\x0d\x8e\x54\xc3\xbb\xb7\x1f\xc8\x75\xe2\xd3\xa7\x1f\xc4\x3b\xdb\x28\x4d\x0f\xc4\xe2\x71\x25\xaa\xb2\x3c\x54\x65\x09\x37\x10\x70\x60\x3b\x38\xda\xd9\xc1\x68\x5b\xd2\x59\xe7\x70\xa4\xbd\x75\x9f\xeb\x0c\x20\xc5\xf9\x85\x8c\xb7\xee\x47\x6d\xf7\x70\x03\x67\x3b\x74\xd6\x01\x0f\xb4\xf8\x01\x3c\x92\xf3\xca\x9a\x1a\x56\xf9\x6a\xfd\x04\xb9\x58\x40\x5a\xc3\x0e\x95\xe1\xec\x0a\x1b\xf2\x38\x01\x94\xe9\xac\x1b\x91\xd3\x37\x78\x1a\xd1\xb0\x92\x67\x7b\xb2\x66\x21\x0e\x2a\x43\xae\x86\x1b\x38\x2f\x3c\xcc\x9e\x5a\x60\x0b\x13\xb9\x80\x4c\x99\x01\x3d\xa2\x9e\x63\xcc\x0c\x00\xc7\xf6\xf5\x5d\xa0\x06\xd0\x4f\x73\x0d\x0e\xd5\xe4\xec\x5f\x24\xb9\x90\xe8\x46\xfd\x92\x23\xd9\x4e\xdb\x7d\x1d\xb1\x2f\xe5\x34\x47\xb8\xfc\x36\x78\x1f\xe1\xd3\x24\x5f\xdf\x69\xaa\xbf\xcd\x73\x41\x2f\xbe\xdf\x90\xd9\xb5\x43\x4b\x5e\x3a\x35\x71\x2c\xe7\x77\x19\x3c\xdf\xf6\xa5\xe7\x79\x06\xf0\xab\x27\xf0\xbe\x15\x63\x34\x9a\xa4\x09\x69\xa5\x15\xeb\x72\xb5\x15\xe5\x4a\xac\xb7\xd0\x39\x3b\x5e\x37\xbe\x25\x26\x19\xfb\x92\x8a\xfa\xc5\xda\x3c\x73\xd4\x91\x23\x23\xc9\x87\x46\x5c\x56\xb1\x07\x38\x85\x96\x14\xb0\xa7\xc6\x2b\xa6\xf0\x49\x2c\xf3\x1c\x52\xc2\x8d\x32\xfd\x13\xf9\xbc\x84\x81\x79\xf2\x75\x51\xf4\x8a\x87\xb9\xc9\xa5\x1d\x8b\x51\x87\x5e\x16\xca\x2c\xa1\x0b\x76\x44\xc5\x88\x9e\xc9\x15\x8f\x65\xfe\xaa\x90\x1a\xbd\x57\x9d\x92\xb1\xc3\x02\x4d\x2b\xce\xb9\xfe\x53\xd4\x4b\x25\x8b\x78\xba\x2f\x1a\x6d\x9b\x53\x58\x47\x9e\xd0\xc9\xa1\xb0\x4d\xa8\xfe\x25\x5c\xd1\x57\xad\x95\xc5\x79\x2d\xa2\xb3\x08\xa5\x18\xdb\x4c\x2b\x49\xc6\x53\x0d\x6f\x26\x94\x03\xc1\xdb\xb4\xbe\x85\xdf\x16\xf1\xae\xa3\xd4\x17\x58\x98\xba\x0b\x7b\x65\xa6\x99\x63\x11\x53\x75\xd3\x3a\xa6\xcf\xc7\x89\x6a\x50\x23\xf6\x14\x66\x4a\x39\xcf\xc9\x1c\xa0\xa8\x15\x1f\xa3\x64\x9e\xa8\x20\x04\x4e\x98\x93\xdf\x95\xf9\x74\xf2\x55\xa8\x18\x61\xc2\x30\xaf\x4c\xce\x27\xd5\x02\x90\xa6\x91\x0c\x8b\x94\xc2\xac\x0c\x6f\x17\x4b\xf4\x12\x1a\x8f\x61\x04\x5f\xc4\x43\x44\x2a\xea\x8b\x05\xa1\xf1\x68\x67\xae\xe1\xe7\xdf\x77\xcb\x8e\xb4\xda\xba\x58\xb2\x1a\x3e\xfe\xf4\xfd\xb2\xdb\xaa\x91\x4c\x28\x8f\xaf\xe1\x8f\xea\x16\xaa\xb2\x8c\x3f\x7f\x66\x76\xe6\x69\xe6\x90\x4b\x3a\xbf\xb1\xb3\x69\x95\xe9\x1b\x7b\xc8\x9e\xe1\x9b\xe0\x67\x14\x34\xf6\x00\x37\x80\xcf\x31\x5f\xa0\x67\xc2\xd9\xd7\xe4\x9f\x52\xef\xb4\x45\xae\xd6\xd1\xd2\xd8\x03\xf9\x33\xf5\x8b\x16\xe2\x7e\x62\x3f\x39\xdb\x60\xa3\xb4\x62\xf5\x2c\xd4\x4b\xeb\x4e\xd8\x28\xdf\x67\x51\x8b\x25\xc1\x3a\x42\x9e\x1d\x79\x31\x3b\x5d\x9f\x25\xed\xab\x1c\x47\xfc\x62\x0d\xee\x7d\x14\xb6\x67\xeb\x28\x8f\xd7\x45\x6e\x5d\x5f\xf8\xa3\xf1\xc4\xbe\x08\xd3\x1d\x7f\x84\xc6\x86\xb4\x17\x71\x3a\x73\x3e\xf0\xd3\xe8\x72\x20\xf9\xd9\xcf\x63\x0d\xb8\xad\x4a\x6c\xba\x4d\x89\xd8\xc8\x66\xbb\xa9\xee\x36\xaf\x64\xd3\xbd\xda\x50\x25\xa9\xda\x96\x59\x14\x6a\x50\xac\x9f\x48\xaa\x4e\x91\x5f\xb4\xdb\x3b\x9c\x06\x40\xd3\xc2\x9e\x54\x3f\xb0\x07\x6f\x67\x27\x29\xc8\xb9\x41\x4f\x91\x42\x06\x09\x27\x26\xe4\xe1\x3f\x10\x5a\xc6\xf5\xeb\x01\xfe\xb7\x0b\xad\xe8\x9c\xfd\x42\x46\x9c\x6f\x12\x11\xcf\xcf\xa7\x26\x03\x50\x5e\x84\x81\x57\x8f\xcb\x85\xdd\xa1\xf6\x61\x6a\x54\x07\xec\x66\xba\x0d\xaa\x31\x51\x3a\x27\x02\xa0\x3c\x20\x84\x0f\xb6\x80\x06\x16\xf7\xe8\x7d\x13\x91\x17\x7a\xd7\xb5\x48\x1b\x31\x5c\x4b\xc6\x32\x85\xef\xc5\xab\x53\x9a\xe2\x8b\xeb\x4f\x42\xfd\xba\x94\x7b\xc5\x83\x4a\xa9\x5c\x8e\x4c\x47\x5d\x7a\x27\xef\xdb\xee\xbe\xdc\xe2\x66\x73\x5f\xbe\x5e\x4b\x2a\x4b\x6c\x68\xdb\xdd\x6f\xe9\x0e\x2b\x6a\x56\x19\x32\x3b\xd5\xcc\x9c\xee\x6d\x3a\xb0\xc3\xa5\x79\x17\x4b\x06\xf0\x59\x99\xb6\x86\xdd\xc3\xc3\x42\x29\xac\x43\x6a\x86\x66\x87\x1a\x0c\x71\x7c\xdd\xff\xb7\x7b\x78\xb8\x85\x8f\xe1\x27\xcf\xf3\xff\x87\x81\x0d\x8f\xbc\x32\xbd\x68\x91\xd1\x13\xd7\xb0\x7b\xbf\x7b\x1f\xae\xa1\xb4\x3e\x3f\xd4\xf1\x2f\xc4\x02\xce\x00\x46\x34\xaa\x23\xcf\x02\x67\x1e\xac\xab\x61\x37\x90\xe9\xe1\xad\x0a\xb6\x37\x1f\x6a\x28\xf3\xf5\x3a\xfb\x3b\x00\x00\xff\xff\xe3\x02\x8b\x8e\xdd\x08\x00\x00"
func mlperf_ssd_mobilenet_v1_300x300YmlBytes() ([]byte, error) {
return bindataRead(
_mlperf_ssd_mobilenet_v1_300x300Yml,
"MLPerf_SSD_MobileNet_v1_300x300.yml",
)
}
func mlperf_ssd_mobilenet_v1_300x300Yml() (*asset, error) {
bytes, err := mlperf_ssd_mobilenet_v1_300x300YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "MLPerf_SSD_MobileNet_v1_300x300.yml", size: 2269, mode: os.FileMode(436), modTime: time.Unix(1563581188, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _mlperf_ssd_resnet34_1200x1200Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x55\x51\x8f\xdb\xb6\x0f\x7f\xf7\xa7\x20\x70\x0f\xfd\xff\x81\xab\xed\xd8\xb9\x24\xf5\xc3\x80\x2e\xc3\xb6\x87\xee\x5a\xb4\xc3\xf6\x50\x14\x06\x2d\xd3\xb6\x56\x59\x32\x24\xfa\x92\xf4\xd3\x0f\x92\x9c\xe4\x0e\xbd\x0d\xb7\x17\x59\x34\x7f\xa4\xc8\x1f\x49\x49\xe3\x48\x15\xfc\xf6\xee\x03\xd9\xae\xfe\xf4\xe9\xa7\xfa\x23\xb9\x7b\xe2\x72\x5d\xaf\x8a\x3c\x3f\xfa\x05\x6e\xc0\xa3\xc0\x74\x70\x32\xb3\x85\xd1\xb4\xa4\x92\xce\xe2\x48\x07\x63\xbf\x56\x09\x40\xf4\xf2\x3b\x69\x67\xec\xcf\xca\x1c\xe0\x06\x2e\x7a\xe8\x8c\x05\x1e\x68\xb1\x03\x78\x20\xeb\xa4\xd1\x15\xac\xd2\x55\xf1\x04\xb9\x68\x40\x18\xcd\x16\xa5\xe6\xe4\x11\xd6\xc7\x71\x06\x48\xdd\x19\x3b\x22\xc7\x3d\x38\x1a\x51\xb3\x14\x17\x7d\xd4\x26\xde\x0f\x4a\x4d\xb6\x82\x1b\xb8\x08\x0e\x66\x47\x2d\xb0\x81\x89\xac\x47\xc6\xc8\x80\x1e\x50\xcd\xc1\x67\x02\x80\x63\xbb\x59\xfb\xd4\x00\xfa\x69\xae\xc0\xa2\x9c\xac\xf9\x8b\x04\x67\x02\xed\xa8\x5e\x73\x48\xb6\x53\xe6\x50\x05\xec\x6b\x31\xcd\x01\x2e\x5e\x06\xef\x03\x7c\x9a\xc4\x66\xad\xa8\x7a\x99\xe5\x82\x5e\x6c\x5f\x10\xd9\x63\x83\x96\x9c\xb0\x72\xe2\x40\xe7\x0f\x09\xfc\x7b\xd1\xd3\xc4\x52\x47\x96\xb4\x20\xe7\xd9\xbb\x4a\x81\x38\x9c\x3c\x8f\x19\x1c\xa8\x71\x92\xc9\x6f\x89\x45\x9a\x42\x3c\xa5\x91\xba\x7f\x52\xf3\xd7\x30\x30\x4f\xae\xca\xb2\x5e\xf2\x30\x37\xa9\x30\x63\x36\x2a\x5f\x80\x4c\xea\xc5\x75\xc6\x96\x28\x1b\xd1\x31\xd9\xec\x21\x4f\xef\x32\xa1\xd0\x39\xd9\x49\x11\xca\x52\xa3\x6e\xeb\x96\x98\xc4\x52\xa4\xff\xee\xd5\xf0\x40\xd6\x65\x42\x99\xb9\xcd\x9c\xd4\xbd\xa2\xda\x31\xf6\xb4\xf8\x35\x36\xbb\xd2\x97\x28\x29\x48\x3b\xaa\xe0\xed\x84\x62\x20\x78\x17\xe5\x5b\xf8\x63\xe9\xb3\x22\x74\xe5\x02\xf3\x03\x72\xcd\x59\xea\x69\xe6\x40\x5d\xec\xae\x28\x87\xa0\xf9\x34\x51\x05\x72\xc4\x9e\x7c\xfb\x4b\xeb\x38\xaa\x3d\x14\x95\xe4\x53\xa8\xee\x93\x82\x79\xc7\x11\x73\xb6\x7b\xa4\x3e\x9f\xfc\xc8\x55\xf0\x30\xa1\x1f\x2d\x26\xeb\x62\x83\x01\x90\xa2\x91\x34\xd7\x31\x84\x4e\x19\xe4\xb2\x58\x74\xc1\xae\x56\x78\xf2\xf3\xf2\x2a\x1c\xf3\x6a\x51\x29\x3c\x99\x99\x2b\xf8\xf5\xcf\xfd\xf2\x47\x18\x65\x6c\xed\x53\xab\xe0\xe3\x2f\x3f\x2e\x7f\x5b\x39\x92\xf6\xcc\xb8\x0a\x3e\x97\xb7\xe0\x3b\x29\xae\x5f\x16\xc4\x48\xa8\x2b\xf8\xbc\x2a\xca\x74\xb3\xbb\x85\xd5\x6a\x93\x6e\xfd\x37\x2f\xd3\x37\xeb\x33\xc8\x09\x54\x54\xc1\xe7\x3c\x2d\x8a\x37\xb7\xe0\x3f\xeb\xf8\xb9\xfb\x92\x98\x99\xa7\x99\x7d\x42\x31\x89\xc6\xcc\xba\x95\xba\x6f\xcc\x31\x79\x86\xb4\x08\xbf\xa0\xa0\x31\x47\xb8\x01\x7c\x8e\xbe\x05\x7a\x61\x2d\xf9\x9e\xc1\x7f\xe6\xaf\x31\x47\x72\x17\xf6\x2e\x5d\x5a\x37\x41\x11\x89\x9c\xac\x69\xb0\x91\x4a\xb2\x7c\x16\xeb\x84\xb1\x67\x6c\x68\xfd\x67\x51\x8b\x26\xc2\x3a\x42\x9e\x2d\xb9\x7a\xb6\xaa\xba\x8c\x83\x2b\x53\x1c\xf1\x9b\xd1\x78\x70\x61\x28\x1c\x1b\x4b\x69\xb8\x1f\x52\x63\xfb\xcc\x9d\xb4\x23\x76\x99\x30\xc2\x84\xa5\x56\xd8\x90\x72\x75\x98\xec\x94\x8f\xfc\xd4\xbb\x18\x48\x7c\x75\xf3\x58\x01\xee\xca\x1c\x9b\x6e\x9b\x23\x36\xa2\xd9\x6d\xcb\xf5\xf6\x4e\x34\xdd\xdd\x96\x4a\x41\xe5\x2e\x4f\x42\xbb\xfb\xbe\x77\x13\x09\xd9\x49\x72\xcb\x04\xf4\x16\xa7\x01\x50\xb7\x70\x20\xd9\x0f\xec\xc0\x99\xd9\x0a\xf2\x43\xd1\xa0\xa3\x90\x42\x02\x11\x57\x4f\xc8\xc3\x35\xa1\x6f\xa4\x4d\x6b\x42\xe8\x96\x84\xb1\x6d\x56\x16\x9b\xa2\xd8\xbc\xc9\x3a\xa9\xc8\x65\xce\xb5\xb5\x25\xa7\xc3\x25\x36\xbe\xfd\x50\x17\x79\x5a\xa4\x53\x93\x00\x48\x57\xa3\x15\x83\x7c\x58\x6e\xd9\x0e\x95\xf3\xf3\x23\x3b\x60\x3b\xd3\xad\x2f\xbd\x0e\xf5\x3f\x07\x01\xd2\x01\x82\xdf\xb0\x01\xd4\xb0\x98\x07\xeb\x9b\x80\xbc\x86\xf8\x38\x9f\xf8\x23\xb8\x6b\x49\x1b\x26\xbf\x5f\xac\x7c\x98\xe1\x99\x74\xe7\x6e\xfb\x9e\x8e\x83\xe4\x41\xc6\x50\xae\x47\xc6\xa3\xae\xfc\x17\xbb\x72\xd5\xe4\xb8\xda\xed\xa8\x6b\x9a\xb2\x10\x77\x54\x52\x2e\x36\xa2\xd9\x08\xb1\xdd\xe6\x09\x32\x5b\xd9\xcc\x1c\xef\x6d\x3a\xb2\xc5\xa5\x00\x57\x4d\x02\xf0\x55\xea\xb6\x82\xfd\xfd\xfd\x92\x92\x97\x7d\x68\x9a\x66\x8b\x0a\x34\x71\x78\x92\xff\xb7\xbf\xbf\xbf\x85\x8f\x7e\x49\xd3\xf4\xff\x7e\xea\xfc\xcb\x2c\x75\x5f\xb7\xc8\xe8\x88\x2b\xd8\xbf\xdf\xbf\xf7\x17\x52\x94\x2f\xaf\x6b\x78\xf7\x17\x70\x02\x30\xa2\x96\x1d\x39\xae\x71\xe6\xc1\xd8\x0a\xf6\x03\xe9\x1e\xde\x49\xaf\x7b\xfb\xa1\xf2\xf3\x9d\x27\x7f\x07\x00\x00\xff\xff\xb5\x6e\x26\xa5\x90\x08\x00\x00"
func mlperf_ssd_resnet34_1200x1200YmlBytes() ([]byte, error) {
return bindataRead(
_mlperf_ssd_resnet34_1200x1200Yml,
"MLPerf_SSD_ResNet34_1200x1200.yml",
)
}
func mlperf_ssd_resnet34_1200x1200Yml() (*asset, error) {
bytes, err := mlperf_ssd_resnet34_1200x1200YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "MLPerf_SSD_ResNet34_1200x1200.yml", size: 2192, mode: os.FileMode(436), modTime: time.Unix(1563664013, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _mask_rcnn_inception_resnet_v2_atrous_cocoYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x4d\x6f\xe4\x36\x0c\xbd\xfb\x57\x10\x98\xc3\xee\x02\x59\x7b\x3e\xb2\x99\x59\x1f\x0a\x6c\x07\x68\xbb\x45\x3b\x0b\xa4\xdb\xf6\x28\xd0\x32\x6d\xab\xb1\x25\x43\xa2\x33\x99\xfc\xfa\x42\x1f\xf1\x4c\x90\x1c\xd2\x5e\x0c\xcb\x7c\x94\xf8\xc8\x47\xca\x1a\x07\x2a\xe1\x77\x74\x77\xe2\x76\x7f\x38\x88\xaf\x5a\xd2\xc8\xca\x68\x71\x4b\xee\x40\x2c\xee\xd7\xe2\x0b\x5b\x33\x39\xb1\xff\xb6\xff\x06\x0b\xf0\x1e\x60\x1a\x38\x99\xc9\xc2\x60\x6a\xea\xb3\xc6\xe2\x40\x47\x63\xef\xca\x0c\x20\xee\xf8\x9d\xb4\x33\xf6\xa7\xde\x1c\x61\x01\xb3\x1d\x1a\x63\x81\x3b\x4a\x7e\x00\xf7\x64\x9d\x32\xba\x84\x55\xbe\x5a\x3f\x43\x26\x0b\x48\xa3\xd9\xa2\xd2\x9c\x5d\x60\x97\xb0\x98\x01\x4a\x37\xc6\x0e\xc8\xf1\x1d\x1c\x0d\xa8\x59\xc9\xd9\x1e\xad\x99\xdf\x07\x95\x26\x5b\xc2\x02\xe6\x85\x83\xc9\x51\x0d\x6c\x60\x24\xeb\x91\x31\x32\xa0\x7b\xec\xa7\xb0\x67\x06\x80\x43\x7d\x73\xed\xa9\x01\xb4\xe3\x54\x82\x45\x35\x5a\xf3\x0f\x49\x2e\x24\xda\xa1\xff\xc8\x81\x6c\xd3\x9b\x63\x19\xb0\x1f\xe5\x38\x05\xb8\x7c\x1b\xbc\x0d\xf0\x71\x94\x37\xd7\x3d\x95\x6f\xf3\x4c\xe8\xe4\xfb\x86\xc8\x2e\x1d\x6a\x72\xd2\xaa\x50\xe7\x12\x7e\xc8\xe0\xb2\x5c\x5f\xb5\x63\xd4\x92\xe0\x0f\x6a\x07\xd2\x1c\x33\x1b\xd2\x72\x05\xc7\x4e\xc9\x0e\x94\x83\x50\x13\xaa\xc1\xe8\x50\xcf\xa0\x8d\xf7\x7b\x33\x0c\x46\xc3\xb7\xca\x47\xe0\x7c\x35\xf6\x46\x33\x3d\xf0\x07\xa8\x91\xd1\x11\xe7\x19\xc0\x9f\x8e\x60\xf0\x82\xb3\x52\x6b\xa1\x66\xc1\x59\x72\x3a\x0a\x0e\xa3\xe0\xa4\x91\x46\xac\x97\xab\x9d\x58\xae\xc4\x7a\x07\x8d\x35\xc3\x65\xa4\x35\x31\xc9\x73\x74\xf0\x68\x4c\x9e\x59\x6a\xc8\x92\x96\xe4\x7c\xa1\xcf\xab\x50\x63\x1c\x7d\xc9\x0b\x38\x52\xe5\x14\x93\x7f\x25\x96\x79\x0e\x31\x21\x95\xd2\xed\x33\x79\x7e\x84\x8e\x79\x74\x65\x51\xb4\x8a\xbb\xa9\xca\xa5\x19\x8a\x73\x4e\x8b\x80\x73\x45\xd5\x9b\xaa\x18\xd0\x31\xd9\xc2\x92\x23\xb4\xb2\x2b\x4c\xc8\x82\x98\x83\x2c\xda\x4d\x6d\x64\x31\xaf\x45\x70\x16\x3e\xe8\xa1\xce\x7a\x25\x49\x3b\x2a\xe1\xcb\x88\xb2\x23\xf8\x2d\xae\xaf\xe0\xaf\x24\xe3\x75\x10\x7d\x82\xf9\xfe\x3b\xc7\xa9\xf4\x38\x71\xa0\x1b\xf3\x10\xd7\x21\x7c\x3e\x8d\x54\x82\x1a\xb0\x25\xdf\x5d\xca\x3a\x8e\x66\x0f\xc5\x5e\xf1\x29\x88\xe7\x99\x1e\xfc\xc6\x11\xf3\xe4\x77\x61\x7e\x3a\xf9\x62\xab\xb0\xc3\x88\xbe\x73\x99\xac\x8b\xfa\x05\xa0\x9e\xbc\x7c\x44\x0c\x61\x52\x9a\x77\xc9\x12\xbc\x44\x8f\x27\xdf\x8c\xef\xc2\x21\x22\x26\xf5\x5d\x42\xf4\x78\x32\x13\x97\xf0\xcb\xdf\xfb\xf4\x45\x9a\xde\xd8\x90\xb2\x12\x6e\x7f\xfe\x31\x33\x13\x8f\x13\xfb\xb3\x12\xc5\xa4\x5a\x17\x45\x9b\xbd\xc2\x29\xba\xcc\x48\x48\x50\x58\x00\xbe\xc6\x30\xc1\x67\x62\xd9\x4b\x92\xcf\x29\x36\xbd\x41\xde\xac\x83\xa5\x32\x0f\xe4\x66\x8a\xe7\x9a\x87\xef\x91\xe5\x68\x4d\x85\x95\xea\x15\xab\x57\xa1\x4e\x1a\xfb\x84\x95\x3d\x3a\xf7\x2a\x2a\x59\x22\xcc\x77\xd5\x6b\xa0\xf0\x3d\x42\x1a\x42\x9e\x2c\x39\x31\xd9\xbe\x9c\xd5\xed\x36\x39\x0e\xf8\x68\x34\x1e\x5d\xd0\xb8\x63\x63\x29\x0f\x33\x24\x37\xb6\x2d\xdc\x49\x3b\x62\x57\xf8\x96\x0c\x0f\xd1\x63\x45\xbd\x13\xa1\xa5\x72\x7e\xe0\xe7\xbb\xcb\x8e\xe4\x9d\x9b\x86\x12\x70\xb7\x59\x62\xd5\x6c\x97\x88\x95\xac\x76\xdb\xcd\xf5\xf6\x93\xac\x9a\x4f\x5b\xda\x48\xda\xec\x96\x59\xd0\xac\x17\xaf\x1b\x49\xaa\x46\x91\x4b\x32\x6e\x2d\x8e\x1d\xa0\xae\xe1\x48\xaa\xed\xd8\x81\x33\x93\x95\xe4\x95\x5d\xa1\xa3\x40\x21\x83\x88\x13\x23\x72\xf7\x1f\x08\xa5\xce\x7d\xd9\xcb\xff\x67\x32\x15\x8d\x35\x8f\xe4\x3d\xd2\xb4\x11\x21\xa6\x7c\xac\x32\x00\xe5\x84\x9f\x07\xea\x3e\x4d\xf6\x06\x7b\xe7\x9b\x4a\x35\xc0\x76\xa2\x2b\x2f\xb6\x38\x44\x9f\x48\xf9\xf9\x8a\xe0\x5f\xd8\x00\x6a\x48\xee\xc1\x7b\x11\x90\x67\xca\x97\xf9\x89\x1f\xc2\x76\x35\x69\xc3\xe4\xdf\x93\x57\xa3\x7a\x0a\x57\xb3\x7b\xd2\xf7\xcb\xf4\x1e\x15\x77\x2a\x86\x72\x3e\x32\x1e\x75\xae\xe7\xe7\xba\x5e\x5f\x13\xed\xb6\xab\x9b\x7a\x73\xbd\xdd\x7d\xa6\xa6\x6a\x6e\xaa\x4f\x4b\xb9\x6b\xd6\x44\xab\x0c\x99\xad\xaa\x26\x8e\x03\x98\x1e\xd8\x62\x2a\xe8\xd9\x92\x01\xdc\x29\x5d\x97\xb0\x3f\x1c\x12\x25\xbf\xf6\xa1\x69\x9a\x2c\xf6\xa0\x89\xc3\x6f\xc0\xfb\xfd\xe1\x70\x05\xb7\xfe\x91\xe7\xf9\x07\xdf\xef\xfe\xe6\x51\xba\x15\xe9\x4a\x29\x21\xfd\x98\xa4\xf5\x7c\xa3\x87\x7f\x8d\x04\xce\x7c\x73\x68\xd5\x90\x63\x81\x13\x77\xc6\x96\xf0\xab\xd2\xad\xb7\xc1\x77\xd4\x6d\xf6\x6f\x00\x00\x00\xff\xff\x8d\xb4\xa8\xd6\x09\x09\x00\x00"
func mask_rcnn_inception_resnet_v2_atrous_cocoYmlBytes() ([]byte, error) {
return bindataRead(
_mask_rcnn_inception_resnet_v2_atrous_cocoYml,
"Mask_RCNN_Inception_ResNet_v2_Atrous_COCO.yml",
)
}
func mask_rcnn_inception_resnet_v2_atrous_cocoYml() (*asset, error) {
bytes, err := mask_rcnn_inception_resnet_v2_atrous_cocoYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "Mask_RCNN_Inception_ResNet_v2_Atrous_COCO.yml", size: 2313, mode: os.FileMode(436), modTime: time.Unix(1563315105, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _mask_rcnn_inception_v2_cocoYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x4d\x6f\xe3\x38\x0f\xbe\xfb\x57\x10\xc8\x61\x66\x80\x8e\x9d\xc4\x99\x49\xc6\x87\x17\x78\x37\xc0\xee\x0e\x30\x9b\x02\xdd\xaf\xa3\x41\xcb\xb4\xad\xad\x2c\x19\x12\xdd\x34\xfd\xf5\x0b\x7d\x34\x49\xd1\x1e\xba\x97\xc0\x12\x1f\x4a\x7c\xc8\x87\x54\x34\x8e\x54\xc1\x6f\xe8\xee\xeb\xbb\xfd\xe1\x50\x7f\xd7\x82\x26\x96\x46\xd7\x0f\xeb\x7a\x7f\xbb\xbf\x85\x05\x78\x0c\x98\x0e\x4e\x66\xb6\x30\x9a\x96\x54\xd6\x59\x1c\xe9\x68\xec\x7d\x95\x01\xc4\x33\xfe\x20\xed\x8c\xfd\x59\x99\x23\x2c\xe0\x6c\x87\xce\x58\xe0\x81\x92\x1f\xc0\x03\x59\x27\x8d\xae\x60\x95\xaf\xd6\x2f\x90\xc9\x02\xc2\x68\xb6\x28\x35\x67\x57\xd8\x25\x2c\xce\x00\xa9\x3b\x63\x47\xe4\xf8\x0d\x8e\x46\xd4\x2c\xc5\xd9\x1e\xad\x99\x3f\x07\xa5\x26\x5b\xc1\x02\xce\x0b\x07\xb3\xa3\x16\xd8\xc0\x44\xd6\x23\x63\x64\x40\x0f\xa8\xe6\x70\x66\x06\x80\x63\xfb\x75\xe3\xa9\x01\xf4\xd3\x5c\x81\x45\x39\x59\xf3\x0f\x09\x2e\x04\xda\x51\x7d\xe6\x40\xb6\x53\xe6\x58\x05\xec\x67\x31\xcd\x01\x2e\xde\x07\xef\x03\x7c\x9a\xc4\xd7\x8d\xa2\xea\x7d\x9e\x09\x9d\x7c\xdf\x11\xd9\xb5\x43\x4b\x4e\x58\x19\x2a\x5b\xc1\xff\x32\xb8\x2e\xd7\x77\xed\x18\xb5\x20\xf8\x9d\xfa\x91\x34\xc7\xcc\x86\xb4\xdc\xc0\x71\x90\x62\x00\xe9\x20\xd4\x84\x5a\x30\x3a\xd4\x33\x68\xe3\xe3\xde\x8c\xa3\xd1\x70\xdb\xf8\x08\x9c\xaf\xc6\xde\x68\xa6\x47\xfe\x04\x2d\x32\x3a\xe2\x3c\x03\xf8\xd3\x11\x8c\x5e\x62\x56\x68\x5d\xcb\x6b\x89\x09\x23\x4c\xbd\x5e\xae\x76\xf5\x72\x55\xaf\x77\xd0\x59\x33\x5e\xc7\xd6\x12\x93\xb8\xc4\x03\x4f\xc6\xe4\x99\xa5\x8e\x2c\x69\x41\xce\x97\xf6\xb2\x0a\x55\xc5\xc9\x17\xb9\x80\x23\x35\x4e\x32\xf9\x4f\x62\x91\xe7\x10\x53\xd0\x48\xdd\xbf\x10\xe4\x67\x18\x98\x27\x57\x15\x45\x2f\x79\x98\x9b\x5c\x98\xb1\xb8\x64\xb1\x08\x38\x57\x34\xca\x34\xc5\x88\x8e\xc9\x16\x96\x1c\xa1\x15\x43\x61\x02\xef\xfa\x1c\x64\xd1\x97\xad\x11\xc5\x79\x5d\x07\xe7\xda\x07\x3d\xb6\x99\x92\x82\xb4\xa3\x0a\xfe\x3f\xa1\x18\x08\x7e\xc4\xf5\x0d\xfc\x95\x84\xbb\x0e\x32\x4f\x30\xdf\x71\x97\x38\xa5\x9e\x66\x0e\x74\x63\x1e\xe2\x3a\x84\xcf\xa7\x89\x2a\x90\x23\xf6\xe4\xfb\x49\x5a\xc7\xd1\xec\xa1\xa8\x24\x9f\x82\x5c\x5e\x28\xc0\x1f\x1c\x31\xcf\x7e\x57\xe6\xe7\x9b\xaf\x8e\x0a\x27\x4c\xe8\x7b\x95\xc9\xba\xa8\x58\x00\x52\xe4\x05\x53\xc7\x10\x66\xa9\x79\x97\x2c\xc1\xab\x56\x78\xf2\xed\xf7\x21\x5c\x52\xc7\xa4\x7e\x48\x08\x85\x27\x33\x73\x05\xbf\xfe\xbd\x4f\x3b\xc2\x28\x63\x43\xca\x2a\xb8\xfb\xe5\xa7\xcc\xcc\x3c\xcd\xec\xef\x4a\x14\x93\x4e\x5d\x94\x69\xf6\x06\xa7\xe8\x72\x46\x42\x82\xc2\x02\xf0\x2d\x86\x09\x7e\x26\x96\xbd\x26\xf9\x92\x62\xa7\x0c\x72\xb9\x0e\x96\xc6\x3c\x92\x3b\x53\xbc\xd4\x3c\xec\x47\x96\x93\x35\x0d\x36\x52\x49\x96\x6f\x42\x9d\x30\xf6\x19\x2b\x14\x3a\xf7\x26\x2a\x59\x22\xcc\xf7\xd1\x5b\xa0\xb0\x1f\x21\x1d\x21\xcf\x96\x5c\x3d\x5b\x55\x9d\xd5\xed\xca\x1c\x47\x7c\x32\x1a\x8f\x2e\x68\xdc\xb1\xb1\x94\x87\xa9\x91\x1b\xdb\x17\xee\xa4\x1d\xb1\x2b\x7c\x4b\x86\x9f\x5a\x61\x43\xca\xd5\xa1\xa5\x72\x7e\xe4\x97\xa7\x8b\x81\xc4\xbd\x9b\xc7\x0a\x70\x57\x2e\xb1\xe9\xb6\x4b\xc4\x46\x34\xbb\x6d\xb9\xd9\x7e\x11\x4d\xf7\x65\x4b\xa5\xa0\x72\xb7\xcc\x82\x66\xbd\x78\xdd\x44\x42\x76\x92\x5c\x92\x71\x6f\x71\x1a\x00\x75\x0b\x47\x92\xfd\xc0\x0e\x9c\x99\xad\x20\xaf\xec\x06\x1d\x05\x0a\x19\x44\x5c\x3d\x21\x0f\xff\x81\x50\xea\xdc\xd7\xbd\xfc\xbe\x59\x54\x74\xd6\x3c\x91\xc7\xa4\xf9\x52\x87\x28\xf2\xa9\xc9\x00\xa4\xab\xfd\x04\x90\x0f\x69\x7a\x77\xa8\x9c\x6f\x23\xd9\x01\xdb\x99\x6e\xbc\xbc\xe2\xa0\x7c\xa6\xe1\x67\x28\x82\xff\x60\x03\xa8\x21\xb9\x07\xef\x45\x40\x5e\x48\x5e\x67\x24\x6e\x84\xe3\x5a\xd2\x86\xc9\x7f\x27\xaf\x4e\x2a\x0a\xcf\xaf\x7b\x56\xf4\xeb\x84\x1e\x25\x0f\x32\x86\x72\xb9\x32\x5e\x75\xa9\x60\xb3\xd9\xd2\x66\x53\x36\xe5\xaa\xc4\xed\xf2\x1b\x6d\x44\xf9\x4d\xac\x04\x12\x62\x49\xa2\x29\x33\x64\xb6\xb2\x99\x39\x8e\x5c\x7a\x64\x8b\xa9\x84\x17\x4b\x06\x70\x2f\x75\x5b\xc1\xfe\x70\x48\x94\xfc\xda\x87\xa6\x69\xb6\xa8\x40\x13\x87\xa7\xfe\xe3\xfe\x70\xb8\x81\x3b\xff\x93\xe7\xf9\x27\xdf\xe1\xfe\x75\x91\xba\xaf\xd3\xb3\x51\x41\xfa\xf3\x91\xd6\xe7\x57\x3b\xfc\x9f\x48\xe0\xcc\xb7\x83\x96\x1d\x39\xae\x71\xe6\xc1\xd8\x0a\xf6\x03\xe9\x1e\x7e\xc8\xec\xdf\x00\x00\x00\xff\xff\xd7\xd5\xbf\x4b\xda\x08\x00\x00"
func mask_rcnn_inception_v2_cocoYmlBytes() ([]byte, error) {
return bindataRead(
_mask_rcnn_inception_v2_cocoYml,
"Mask_RCNN_Inception_v2_COCO.yml",
)
}
func mask_rcnn_inception_v2_cocoYml() (*asset, error) {
bytes, err := mask_rcnn_inception_v2_cocoYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "Mask_RCNN_Inception_v2_COCO.yml", size: 2266, mode: os.FileMode(436), modTime: time.Unix(1563315105, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _mask_rcnn_resnet101_v2_atrous_cocoYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x4b\x6f\xe3\x36\x10\xbe\xeb\x57\x0c\xe0\xc3\xee\x02\x59\x49\xb6\xf3\x70\x74\x28\xb0\x35\xd0\x17\x5a\x07\x48\xb7\xed\x91\x18\x51\x23\x89\x8d\x44\x0a\xe4\x28\x8e\xf3\xeb\x0b\x3e\x62\x3b\x48\x0e\xe9\xc5\x10\x39\xdf\x90\xf3\xcd\x7c\x33\xb4\xc6\x91\x2a\xf8\x03\xdd\x83\xb8\xdf\xee\x76\xe2\x9e\xdc\x8e\x78\x59\x2e\xc5\xe3\x4a\x7c\x63\x6b\x66\x27\xb6\x77\xdb\x3b\x58\x80\x87\x82\x69\xe1\x60\x66\x0b\xa3\x69\x68\xc8\x5a\x8b\x23\xed\x8d\x7d\xa8\x32\x80\x78\xd4\x77\xd2\xce\xd8\x9f\x06\xb3\x87\x05\x1c\xed\xd0\x1a\x0b\xdc\x53\xf2\x03\x78\x24\xeb\x94\xd1\x15\x2c\xf3\xe5\xea\x15\x32\x59\x40\x1a\xcd\x16\x95\xe6\xec\x0c\x5b\xc2\xe2\x08\x50\xba\x35\x76\x44\x8e\xdf\xe0\x68\x44\xcd\x4a\x1e\xed\xd1\x9a\xf9\x73\x50\x69\xb2\x15\x2c\xe0\xb8\x70\x30\x3b\x6a\x80\x0d\x4c\x64\x3d\x32\x46\x06\xf4\x88\xc3\x1c\xce\xcc\x00\x70\x6c\xae\x2f\x3d\x35\x80\x6e\x9a\x2b\xb0\xa8\x26\x6b\xfe\x25\xc9\x85\x44\x3b\x0e\x5f\x39\x90\x6d\x07\xb3\xaf\x02\xf6\xab\x9c\xe6\x00\x97\x1f\x83\x77\x01\x3e\x4d\xf2\xfa\x72\xa0\xea\x63\x9e\x09\x9d\x7c\x3f\x10\xd9\xb9\x43\x43\x4e\x5a\x35\x71\x48\xe7\x0f\x19\x9c\x97\xeb\x57\xed\x18\xb5\x24\xf8\x93\xba\x91\x34\xc7\xcc\x86\xb4\x5c\xc0\xbe\x57\xb2\x07\xe5\x20\xd4\x84\x1a\x30\x3a\xd4\x33\x68\xe3\xf3\xd6\x8c\xa3\xd1\x70\x57\xfb\x08\x9c\xaf\xc6\xd6\x68\xa6\x27\xfe\x02\x0d\x32\x3a\xe2\x3c\x03\xf8\xcb\x11\x8c\x5e\x69\x56\x6a\x2d\x2c\x39\x1d\x95\x86\x51\x66\xd2\x48\x23\x56\xe5\x72\x23\xca\xa5\x58\x6d\xa0\xb5\x66\x3c\x8f\xaf\x21\x26\x79\x8a\x09\x9e\x8d\xc9\x33\x4b\x2d\x59\xd2\x92\x9c\x2f\xef\x69\x15\x2a\x8b\x93\x2f\x74\x01\x7b\xaa\x9d\x62\xf2\x9f\xc4\x32\xcf\x21\xa6\xa1\x56\xba\x7b\x25\xca\xaf\xd0\x33\x4f\xae\x2a\x8a\x4e\x71\x3f\xd7\xb9\x34\x63\x71\xca\x64\x11\x70\xae\xa8\x07\x53\x17\x23\x3a\x26\x5b\x58\x72\x84\x56\xf6\x85\x09\xdc\xc5\x31\xc8\xa2\x5b\x37\x46\x16\xc7\xb5\x08\xce\xc2\x07\x3d\x36\xd9\xa0\x24\x69\x47\x15\x7c\x9b\x50\xf6\x04\xbf\xc7\xf5\x05\xfc\x9d\xc4\xbb\x0a\x52\x4f\x30\xdf\x75\xa7\x38\x95\x9e\x66\x0e\x74\x63\x1e\xe2\x3a\x84\xcf\x87\x89\x2a\x50\x23\x76\xe4\x7b\x4a\x59\xc7\xd1\xec\xa1\x38\x28\x3e\x04\xc9\xbc\x52\x81\x3f\x38\x62\x5e\xfc\xce\xcc\x2f\x37\x9f\x1d\x15\x4e\x98\xd0\xf7\x2b\x93\x75\x51\xb5\x00\x34\x90\x17\x8d\x88\x21\xcc\x4a\xf3\x26\x59\x82\x97\x18\xf0\xe0\x5b\xf0\x53\xb8\x44\xc4\xa4\x7e\x4a\x88\x01\x0f\x66\xe6\x0a\x7e\xf9\x67\x9b\x76\xa4\x19\x8c\x0d\x29\xab\xe0\xfe\xe7\x1f\x33\x33\xf3\x34\xb3\xbf\x2b\x51\x4c\x5a\x75\x51\xaa\xd9\x3b\x9c\xa2\xcb\x11\x09\x09\x0a\x0b\xc0\xf7\x18\x26\xf8\x91\x58\xf6\x96\xe4\x6b\x8a\xed\x60\x90\xd7\xab\x60\xa9\xcd\x13\xb9\x23\xc5\x53\xcd\xc3\x7e\x64\x39\x59\x53\x63\xad\x06\xc5\xea\x5d\xa8\x93\xc6\xbe\x60\xe5\x80\xce\xbd\x8b\x4a\x96\x08\xf3\xbd\xf4\x1e\x28\xec\x47\x48\x4b\xc8\xb3\x25\x27\x66\x3b\x54\x47\x75\xbb\x75\x8e\x23\x3e\x1b\x8d\x7b\x17\x34\xee\xd8\x58\xca\xc3\xe4\xc8\x8d\xed\x0a\x77\xd0\x8e\xd8\x15\xbe\x25\xc3\x8f\x18\xb0\xa6\xc1\x89\xd0\x52\x39\x3f\xf1\xeb\xd3\x65\x4f\xf2\xc1\xcd\x63\x05\xb8\x59\x97\x58\xb7\x37\x25\x62\x2d\xeb\xcd\xcd\xfa\xf2\xe6\x4a\xd6\xed\xd5\x0d\xad\x25\xad\x37\x65\x16\x34\xeb\xc5\xeb\x26\x92\xaa\x55\xe4\x92\x8c\x3b\x8b\x53\x0f\xa8\x1b\xd8\x93\xea\x7a\x76\xe0\xcc\x6c\x25\x79\x65\xd7\xe8\x28\x50\xc8\x20\xe2\xc4\x84\xdc\xff\x0f\x42\xa9\x73\xdf\xf6\xf2\xc7\xe7\x51\xd1\x5a\xf3\x4c\x5a\x28\x9d\x66\x8c\x08\x91\xe4\x53\x9d\x01\x28\x27\xfc\x14\x50\x8f\x69\x8a\xb7\x38\x38\xdf\x4a\xaa\x05\xb6\x33\x5d\x78\x89\xc5\x81\xf9\x42\xc5\xcf\x52\x04\xff\xc1\x06\x50\x43\x72\x0f\xde\x8b\x80\x3c\x11\x3d\xcf\x4a\xdc\x08\xc7\x35\xa4\x0d\x93\xff\x4e\x5e\xad\x1a\x28\x3c\xc3\xee\x45\xd5\x6f\x93\xba\x57\xdc\xab\x18\xca\xe9\xca\x78\xd5\xa9\x8a\xe5\xa6\x2c\xdb\x4d\x2b\x6f\xe5\x65\xd9\x36\x1b\xbc\x95\xd8\x6e\x6e\x9b\xeb\x72\xd3\xb4\x57\x48\xb7\x19\x32\x5b\x55\xcf\x1c\xc7\x2e\x3d\xb1\xc5\x54\xc6\x93\x25\x03\x78\x50\xba\xa9\x60\xbb\xdb\x25\x4a\x7e\xed\x43\xd3\x34\x5b\x1c\x40\x13\x87\x27\xff\xf3\x76\xb7\xbb\x80\x7b\xff\x93\xe7\xf9\x17\xdf\xe5\xfe\x95\x51\xba\x13\xe9\xf9\xa8\x20\xfd\x09\x49\xeb\xe3\xeb\x1d\xfe\x57\x24\x70\xe6\x5b\x42\xab\x96\x1c\x0b\x9c\xb9\x37\xb6\x82\xdf\x94\xee\xbc\x0d\xbe\xa3\xee\xb2\xff\x02\x00\x00\xff\xff\xe5\x8a\x07\xff\xee\x08\x00\x00"
func mask_rcnn_resnet101_v2_atrous_cocoYmlBytes() ([]byte, error) {
return bindataRead(
_mask_rcnn_resnet101_v2_atrous_cocoYml,
"Mask_RCNN_ResNet101_v2_Atrous_COCO.yml",
)
}
func mask_rcnn_resnet101_v2_atrous_cocoYml() (*asset, error) {
bytes, err := mask_rcnn_resnet101_v2_atrous_cocoYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "Mask_RCNN_ResNet101_v2_Atrous_COCO.yml", size: 2286, mode: os.FileMode(436), modTime: time.Unix(1563315105, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _mask_rcnn_resnet50_v2_atrous_cocoYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x4b\x6f\xe3\x36\x10\xbe\xeb\x57\x0c\xe0\xc3\xee\x02\x59\xc9\xcf\xc4\xd1\xa1\xc0\xd6\x40\x5f\x68\x1d\x20\xdd\xb6\x47\x62\x44\x8d\x24\x36\x12\x29\x90\xa3\x38\xce\xaf\x2f\xf8\x88\xed\x20\x39\xa4\x17\x43\xe4\x7c\x43\xce\x37\xf3\xcd\xd0\x1a\x07\x2a\xe1\x0f\x74\x0f\xe2\x7e\xb7\xdf\x8b\x7b\x72\x7b\xe2\xcd\x5c\x3c\x2e\xc5\x37\xb6\x66\x72\x62\x77\xb7\xbb\x83\x19\x78\x24\x98\x06\x8e\x66\xb2\x30\x98\x9a\xfa\xac\xb1\x38\xd0\xc1\xd8\x87\x32\x03\x88\x27\x7d\x27\xed\x8c\xfd\xa9\x37\x07\x98\xc1\xc9\x0e\x8d\xb1\xc0\x1d\x25\x3f\x80\x47\xb2\x4e\x19\x5d\xc2\x22\x5f\x2c\x5f\x21\x93\x05\xa4\xd1\x6c\x51\x69\xce\x2e\xb0\x73\x98\x9d\x00\x4a\x37\xc6\x0e\xc8\xf1\x1b\x1c\x0d\xa8\x59\xc9\x93\x3d\x5a\x33\x7f\x0e\x2a\x4d\xb6\x84\x19\x9c\x16\x0e\x26\x47\x35\xb0\x81\x91\xac\x47\xc6\xc8\x80\x1e\xb1\x9f\xc2\x99\x19\x00\x0e\xf5\xf5\xda\x53\x03\x68\xc7\xa9\x04\x8b\x6a\xb4\xe6\x5f\x92\x5c\x48\xb4\x43\xff\x95\x03\xd9\xa6\x37\x87\x32\x60\xbf\xca\x71\x0a\x70\xf9\x31\x78\x1b\xe0\xe3\x28\xaf\xd7\x3d\x95\x1f\xf3\x4c\xe8\xe4\xfb\x81\xc8\x2e\x1d\x6a\x72\xd2\xaa\x91\x43\x3a\x7f\xc8\xe0\xb2\x5c\xbf\x6a\xc7\xa8\x25\xc1\x9f\xd4\x0e\xa4\x39\x66\x36\xa4\xe5\x0a\x0e\x9d\x92\x1d\x28\x07\xa1\x26\x54\x83\xd1\xa1\x9e\x41\x1b\x9f\x77\x66\x18\x8c\x86\xbb\xca\x47\xe0\x7c\x35\x76\x46\x33\x3d\xf1\x17\xa8\x91\xd1\x11\xe7\x19\xc0\x5f\x8e\x60\xf0\x42\xb3\x52\x6b\x61\xc9\xe9\x20\x34\x8c\x2a\x93\x46\x1a\xb1\x9c\x2f\xb6\x62\xbe\x10\xcb\x2d\x34\xd6\x0c\x97\xe1\xd5\xc4\x24\xcf\x21\xc1\xb3\x31\x79\x66\xa9\x21\x4b\x5a\x92\xf3\xd5\x3d\xaf\x42\x61\x71\xf4\x75\x2e\xe0\x40\x95\x53\x4c\xfe\x93\x58\xe6\x39\xc4\x2c\x54\x4a\xb7\xaf\x34\xf9\x15\x3a\xe6\xd1\x95\x45\xd1\x2a\xee\xa6\x2a\x97\x66\x28\xce\x89\x2c\x02\xce\x15\x55\x6f\xaa\x62\x40\xc7\x64\x0b\x4b\x8e\xd0\xca\xae\x30\x81\xba\x38\x05\x59\xb4\xab\xda\xc8\xe2\xb4\x16\xc1\x59\xf8\xa0\x87\x3a\xeb\x95\x24\xed\xa8\x84\x6f\x23\xca\x8e\xe0\xf7\xb8\xbe\x82\xbf\x93\x76\x97\x41\xe9\x09\xe6\x9b\xee\x1c\xa7\xd2\xe3\xc4\x81\x6e\xcc\x43\x5c\x87\xf0\xf9\x38\x52\x09\x6a\xc0\x96\x7c\x4b\x29\xeb\x38\x9a\x3d\x14\x7b\xc5\xc7\xa0\x98\x57\x22\xf0\x07\x47\xcc\x8b\xdf\x85\xf9\xe5\xe6\x8b\xa3\xc2\x09\x23\xfa\x76\x65\xb2\x2e\x8a\x16\x80\x7a\xf2\x9a\x11\x31\x84\x49\x69\xde\x26\x4b\xf0\x12\x3d\x1e\x7d\x07\x7e\x0a\x97\x88\x98\xd4\x4f\x09\xd1\xe3\xd1\x4c\x5c\xc2\x2f\xff\xec\xd2\x8e\x34\xbd\xb1\x21\x65\x25\xdc\xff\xfc\x63\x66\x26\x1e\x27\xf6\x77\x25\x8a\x49\xaa\x2e\x2a\x35\x7b\x87\x53\x74\x39\x21\x21\x41\x61\x06\xf8\x1e\xc3\x04\x3f\x11\xcb\xde\x92\x7c\x4d\xb1\xe9\x0d\xf2\x6a\x19\x2c\x95\x79\x22\x77\xa2\x78\xae\x79\xd8\x8f\x2c\x47\x6b\x2a\xac\x54\xaf\x58\xbd\x0b\x75\xd2\xd8\x17\xac\xec\xd1\xb9\x77\x51\xc9\x12\x61\xbe\x95\xde\x03\x85\xfd\x08\x69\x08\x79\xb2\xe4\xc4\x64\xfb\xf2\xa4\x6e\xb7\xca\x71\xc0\x67\xa3\xf1\xe0\x82\xc6\x1d\x1b\x4b\x79\x18\x1c\xb9\xb1\x6d\xe1\x8e\xda\x11\xbb\xc2\xb7\x64\xf8\x11\x3d\x56\xd4\x3b\x11\x5a\x2a\xe7\x27\x7e\x7d\xba\xec\x48\x3e\xb8\x69\x28\x01\xb7\xab\x39\x56\xcd\xcd\x1c\xb1\x92\xd5\xf6\x66\xb5\xbe\xd9\xc8\xaa\xd9\xdc\xd0\x4a\xd2\x6a\x3b\xcf\x82\x66\xbd\x78\xdd\x48\x52\x35\x8a\x5c\x92\x71\x6b\x71\xec\x00\x75\x0d\x07\x52\x6d\xc7\x0e\x9c\x99\xac\x24\xaf\xec\x0a\x1d\x05\x0a\x19\x44\x9c\x18\x91\xbb\xff\x41\x28\x75\xee\xdb\x5e\xfe\xf0\x38\x2a\x1a\x6b\x9e\x49\x0b\xa5\xd3\x88\x11\x21\x90\x7c\xac\x32\x00\xe5\x84\x1f\x02\xea\x31\xcd\xf0\x06\x7b\xe7\x3b\x49\x35\xc0\x76\xa2\x2b\xaf\xb0\x38\x2e\x5f\x98\xf8\x49\x8a\xe0\x3f\xd8\x00\x6a\x48\xee\xc1\x7b\x16\x90\x67\x9e\x97\x49\x89\x1b\xe1\xb8\x9a\xb4\x61\xf2\xdf\xc9\xab\x51\x3d\x85\x47\xd8\xbd\x88\xfa\x6d\x4e\x0f\x8a\x3b\x15\x43\x39\x5f\x19\xaf\x3a\x17\x71\x7e\x5b\xdf\xce\xd7\x1b\x49\xab\x6a\x41\xd4\x6c\xe6\xeb\xeb\xeb\x6a\xb1\xbc\x95\xb7\x9b\xcd\x7a\x45\xdb\x0c\x99\xad\xaa\x26\x8e\x53\x97\x9e\xd8\x62\xaa\xe2\xd9\x92\x01\x3c\x28\x5d\x97\xb0\xdb\xef\x13\x25\xbf\xf6\xa1\x69\x9a\x2c\xf6\xa0\x89\xc3\x83\xff\x79\xb7\xdf\x5f\xc1\xbd\xff\xc9\xf3\xfc\x8b\x6f\x72\xff\xc6\x28\xdd\x8a\xf4\x78\x94\x90\xfe\x82\xa4\xf5\xe9\xed\x0e\xff\x2a\x12\x38\xf3\x1d\xa1\x55\x43\x8e\x05\x4e\xdc\x19\x5b\xc2\x6f\x4a\xb7\xde\x06\xdf\x51\xb7\xd9\x7f\x01\x00\x00\xff\xff\x40\x01\x3b\x45\xeb\x08\x00\x00"
func mask_rcnn_resnet50_v2_atrous_cocoYmlBytes() ([]byte, error) {
return bindataRead(
_mask_rcnn_resnet50_v2_atrous_cocoYml,
"Mask_RCNN_ResNet50_v2_Atrous_COCO.yml",
)
}
func mask_rcnn_resnet50_v2_atrous_cocoYml() (*asset, error) {
bytes, err := mask_rcnn_resnet50_v2_atrous_cocoYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "Mask_RCNN_ResNet50_v2_Atrous_COCO.yml", size: 2283, mode: os.FileMode(436), modTime: time.Unix(1563315105, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _mobilenet_v1_025_128Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x5b\x8f\xdc\xb6\x0e\x7e\xf7\xaf\x20\x30\x0f\x39\x07\xd8\xf5\x65\x6e\x3b\xeb\x87\xf3\x70\x52\xf4\x06\x64\x51\x04\x41\xfb\x10\x14\x06\x2d\xd1\x63\x75\x6d\x49\x90\xe8\x9d\xcc\xfe\xfa\x42\xb2\x3d\x9e\x69\x12\x34\xed\x8b\x61\x91\x1f\x29\xea\x23\x45\x4a\x63\x4f\x25\xbc\x33\xb5\xea\xe8\x89\xb8\x7a\x29\xaa\x3c\x5d\xef\xaa\x62\x7d\x80\x15\x04\x2d\x98\x06\xce\x66\x70\xd0\x1b\x49\x5d\xd2\x38\xec\xe9\x64\xdc\x73\x99\x00\x8c\xd6\x1f\x48\x7b\xe3\xbe\xef\xcc\x09\x56\x70\xd1\x43\x63\x1c\x70\x4b\x93\x1d\xc0\x0b\x39\xaf\x8c\x2e\xa1\x48\x8b\xf5\x0d\x72\xd2\x80\x30\x9a\x1d\x2a\xcd\xc9\x15\x36\x87\xd5\x05\xa0\x74\x63\x5c\x8f\x3c\xfe\x83\xa7\x1e\x35\x2b\x71\xd1\x8f\xda\x24\xf8\x41\xa5\xc9\x95\xb0\x82\xcb\xc2\xc3\xe0\x49\x02\x1b\xb0\xe4\x02\x72\x8c\x0c\xac\x23\xa9\x44\xf0\x99\x00\xac\xa0\x1f\x3a\x56\xb6\x23\xb0\x1d\x72\x80\x79\x10\xa8\xa1\x26\xf0\x96\x84\x6a\x14\xc9\x04\x00\x7b\xb9\xdf\x06\x0a\x00\x8e\x76\x28\xc1\xa1\xb2\xce\xfc\x41\x82\x33\x81\xae\xef\xee\x39\x92\xd2\x74\xe6\x54\x46\xec\xbd\xb0\x43\x84\x8b\x6f\x83\x1f\x23\xdc\x5a\xb1\xdf\x76\x54\x7e\x9b\xe5\x84\x9e\x6c\xbf\x21\xb2\x6b\x03\x49\x5e\x38\x65\x39\xd2\xfe\xbf\x04\x96\xa2\x00\xe5\x01\xe1\x48\x9a\x1c\x76\x80\x4e\xb4\x8a\x49\xf0\xe0\x08\x50\xcb\x99\x9d\x48\x6e\xc8\xf9\x85\xc0\xc1\x13\x08\xf4\xe4\xd3\x04\xe0\x3b\xb2\xa4\xa5\xd2\x47\x30\x3a\x96\xc5\xac\xbd\x03\xc5\xd1\x47\x10\x48\xd5\x34\xe4\x48\x33\x28\x6d\x07\x86\x0e\xcf\xe4\xc0\xab\xd7\x71\xab\x45\x7d\x52\x92\xdb\x04\xa0\x41\xc1\xc6\xc5\x1d\x3e\xb4\x21\xce\xae\x33\x27\xff\x57\xe0\x98\x69\x1f\x72\xef\x48\x0e\x82\x62\x04\x7a\xe8\x6b\x72\xa1\xbe\xa7\x90\xcf\xf7\x28\xa5\x8f\x3b\x71\x4b\x8e\xea\x73\x02\xb3\x81\xd2\xd1\xa1\x20\x10\xc6\x73\x38\x44\x1f\xf9\x01\x49\x2f\x4a\xd0\x12\x81\x26\x8e\x45\x2d\x8c\xf6\xca\xb3\x0f\xfe\xd7\xeb\xed\x78\x94\xd1\x39\x8a\x56\xd1\x0b\x79\x78\xc8\xd3\x47\x60\x63\xef\x8b\x28\x3f\x3c\x4e\xcb\x1d\xa0\x10\x83\x43\x71\x4e\x13\x47\xd3\xc6\x3e\x54\xf3\xb2\x8a\x85\x8c\x36\xf8\xcc\xe0\x44\xb5\x57\x4c\xe1\x97\x58\xa4\x29\x8c\xd9\xac\x03\xdf\xd7\x77\xf0\x1e\x5a\x66\xeb\xcb\x2c\x3b\x2a\x6e\x87\x3a\x15\xa6\xcf\x96\x82\xc8\x46\x9e\xb2\xba\x33\x75\xd6\xa3\x67\x72\x99\x23\x4f\x21\xe7\x99\xef\x54\x9f\x69\x62\x9f\x8d\x27\xd7\xb1\x5d\xa4\xbd\xbc\xf8\x2d\xb3\x4c\x9a\x93\xee\x0c\xca\x74\x71\x9a\x1a\x77\x9c\x1d\x5f\x5b\x56\xeb\xbc\x38\x54\xf9\xa1\xca\xd7\xb7\xf2\xb9\x01\xa5\x7c\x7c\xbd\x89\x19\xdd\x27\xf5\x12\xdd\x59\xd9\x64\xc5\x43\xbe\x4d\xf3\xed\x61\x5f\xa4\x56\x36\x5f\x3b\xdc\x33\x39\xf4\xf7\x4c\x38\xff\xa2\xb5\x9d\x12\xb1\x87\xdc\x1e\x34\xaa\xab\x1b\xf5\x25\xac\xd4\x9e\x93\x15\x74\x4a\x90\xf6\xb1\x23\x2e\xa4\x4e\xc2\x12\x06\xed\xc8\xb3\x53\x82\x49\x26\xab\xb1\x80\x63\x96\x16\xec\x28\x2b\x63\x9f\x69\x94\xf3\x73\x99\xf3\xd9\xd2\x67\xfd\xf2\x3e\x8a\x4b\x50\x3d\x1e\x29\xde\xe7\x15\x5c\x5d\xd2\x39\x8a\x2b\x3f\x11\x74\x73\x8f\x03\x60\xdc\x62\xf1\x62\x31\x34\x5e\x26\x17\x0b\x2a\x6e\xbd\x88\x22\x02\x80\x3a\xea\x49\x73\x35\x46\xd0\x74\x06\x79\xb3\x9e\x74\xd1\x5f\x15\xcb\xb9\x84\x37\x71\xf5\x66\x52\x75\x78\x36\x03\x97\xf0\xe3\x6f\x6f\x27\x89\x30\x9d\x71\x55\x38\x52\x09\xef\x7f\xf8\xff\x24\x95\xaa\x27\x1d\x3a\xb6\x2f\xe1\xe3\xe6\x0e\x8a\xf5\x21\x7e\x7e\x9f\xf4\x3d\xa1\x2e\xe1\xe3\x2c\xbe\xd1\x79\x81\x1d\x95\x41\x92\x98\x81\xed\xc0\x23\x9d\xe1\xa4\xf1\x2c\x13\x2d\xa3\x2e\x81\x89\x44\xd1\xa1\xf7\xaa\x99\x32\x1b\x2d\xf0\x4b\x6c\x8e\x66\x0b\x21\xc9\x17\x08\x9d\x30\x1d\xd6\x31\x4f\x7f\xcf\xe7\xd7\xd9\xb4\xce\xd4\x58\xab\x4e\xb1\x22\x3f\x73\xfa\x6e\xae\xba\x5f\x8b\xec\x97\xcb\x70\xf2\xd9\x7b\xf2\x2d\x5a\xaa\x8a\x68\xda\x10\x86\x16\xec\xab\xc1\x75\xe5\xa5\xf2\xfd\x26\xc5\x1e\x5f\x8d\xc6\x93\x8f\xf5\xef\xd9\x38\x4a\x63\xe7\x8f\x37\xc7\x9f\xb5\x0f\x77\x38\xd6\x83\x26\x9e\x04\x45\xca\x9f\xf8\xd6\xaf\x68\x49\x3c\xfb\xa1\x2f\x61\x2f\xf2\x5d\x7e\xd8\x3c\x3e\x16\xeb\xfc\x41\x12\xee\xc4\xe6\xa1\x59\xcb\xf5\x43\x91\x17\xdb\x06\x65\x12\x4b\x36\x9c\x7e\x1e\x91\x7e\x9a\xad\x47\x87\xb6\x8d\xbd\xed\x44\xea\xd8\xb2\x07\x47\xde\x0c\x4e\x50\x60\xa6\x46\x4f\xff\x30\xfc\xa9\x8f\x7c\xde\xb2\xfe\x4d\x67\x89\xd1\x55\x16\xb9\x2d\xe1\x8b\xb8\xaa\x71\xe6\x95\x74\x6a\xeb\x0b\x7a\x61\x25\x6f\xa4\xc0\x35\xe5\xd4\xec\xf0\x61\x9f\x17\xdb\x8d\xc4\x43\x51\x0b\xdc\xd4\xf5\x2e\xdf\x86\x8e\xa4\x7c\x15\xc7\xe5\xcb\x34\xc1\xd9\x0d\x04\x2b\x50\x4d\xfc\xbb\x0b\xd5\x34\x0e\xc3\x99\x89\x71\xd4\x86\x1f\x36\x80\x1a\x26\xeb\xe9\xf6\x07\xe4\x12\xf3\x35\xad\xa3\x20\xba\x93\xa4\x0d\xc7\x01\x37\x59\x35\x61\x4a\x85\x97\x9a\x9f\x8b\xfc\xf3\xac\x9c\x14\xb7\x6a\x0c\x65\xde\x12\x99\x9d\xaa\x07\x1e\xe7\x0e\x7d\x62\x87\x97\xd9\xb6\xe8\x12\x80\x67\xa5\x65\x09\x6f\x9f\x9e\xa6\x08\xc3\x3a\xec\xa4\x69\x08\xef\x85\xd9\xe6\x3f\x6f\x9f\x9e\xee\xe0\x7d\xf8\xa4\x69\xfa\xdf\x70\x33\xc3\x5b\x4f\xe9\x63\x25\x91\xd1\x13\x97\xf0\x53\x28\xca\xf0\xe2\x58\xc1\x24\xbb\xbc\xd9\x62\x77\x9c\x0c\x12\x80\x1e\xb5\x6a\xc8\x73\x85\x03\xb7\xc6\x95\xf0\xb3\xd2\xc7\xa0\x83\x0f\x18\x01\x6c\x6c\x51\xc2\xb6\x48\x77\xe3\x62\x57\xc2\x7e\x9f\x6e\x92\x3f\x03\x00\x00\xff\xff\x9c\xd9\xf4\x52\xf1\x0a\x00\x00"
func mobilenet_v1_025_128YmlBytes() ([]byte, error) {
return bindataRead(
_mobilenet_v1_025_128Yml,
"MobileNet_v1_0.25_128.yml",
)
}
func mobilenet_v1_025_128Yml() (*asset, error) {
bytes, err := mobilenet_v1_025_128YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "MobileNet_v1_0.25_128.yml", size: 2801, mode: os.FileMode(436), modTime: time.Unix(1555245193, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _mobilenet_v1_025_128_quantYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x4d\x8f\xdc\x36\x0f\xbe\xfb\x57\x10\x98\x43\xde\x17\xd8\xf1\xd7\xce\xd7\xfa\xd0\x43\x53\xf4\x0b\xc8\xa2\x0d\x82\xf6\x10\x14\x06\x2d\xd3\x63\x75\x6d\x49\x95\xe8\x9d\xcc\xfe\xfa\x42\xb2\x3d\x9e\x69\x92\x36\xed\xc5\xb0\xc8\x87\x14\xf5\x90\x22\xa5\xb0\xa7\x02\xde\xe8\x4a\x76\xf4\x48\x5c\x3e\x67\x65\x1a\xe7\xdb\x32\xcb\x0f\xe5\xcf\x03\x2a\x86\x15\x78\x0c\xe8\x06\xce\x7a\xb0\xd0\xeb\x9a\xba\xa8\xb1\xd8\xd3\x49\xdb\xa7\x22\x02\x18\x7d\xbc\x23\xe5\xb4\xfd\xb6\xd3\x27\x58\xc1\x45\x0f\x8d\xb6\xc0\x2d\x4d\x76\x00\xcf\x64\x9d\xd4\xaa\x80\x2c\xce\xf2\x1b\xe4\xa4\x01\xa1\x15\x5b\x94\x8a\xa3\x2b\x6c\x0a\xab\x0b\x40\xaa\x46\xdb\x1e\x79\xfc\x07\x47\x3d\x2a\x96\xe2\xa2\x1f\xb5\x91\xf7\x83\x52\x91\x2d\x60\x05\x97\x85\x83\xc1\x51\x0d\xac\xc1\x90\xf5\xc8\x31\x32\x30\x96\x6a\x29\xbc\xcf\x08\x60\x05\xfd\xd0\xb1\x34\x1d\x81\xe9\x90\x3d\xcc\x81\x40\x05\x15\x81\x33\x24\x64\x23\xa9\x8e\x00\xb0\xaf\x77\x1b\x4f\x01\xc0\xd1\x0c\x05\x58\x94\xc6\xea\xdf\x49\x70\x22\xd0\xf6\xdd\x9a\x03\x29\x4d\xa7\x4f\x45\xc0\xae\x85\x19\x02\x5c\x7c\x19\xfc\x18\xe0\xc6\x88\xdd\xa6\xa3\xe2\xcb\x2c\x27\xf4\x64\xfb\x05\x91\x5d\x1b\xd4\xe4\x84\x95\x86\x03\xed\x5f\x45\xb0\x94\x06\x48\x07\x08\x47\x52\x64\xb1\x03\xb4\xa2\x95\x4c\x82\x07\x4b\x80\xaa\x9e\xd9\x09\xe4\xfa\x9c\x5f\x08\x1c\x1c\x81\x40\x47\x2e\x8e\x00\xbe\x21\x43\xaa\x96\xea\x08\x5a\x85\xb2\x98\xb5\x77\x20\x39\xf8\xf0\x82\x5a\x36\x0d\x59\x52\x0c\x52\x99\x81\xa1\xc3\x33\x59\x70\xf2\x65\xdc\x6a\x51\x9f\x64\xcd\x6d\x04\xd0\xa0\x60\x6d\xc3\x0e\xef\x5a\x1f\x67\xd7\xe9\x93\xfb\x2b\x70\xcc\xb4\xf3\xb9\xb7\x54\x0f\x82\x42\x04\x6a\xe8\x2b\xb2\xbe\xbe\xa7\x90\xcf\x6b\xac\x6b\x17\x76\xe2\x96\x2c\x55\xe7\x08\x66\x03\xa9\x82\x43\x41\x20\xb4\x63\x7f\x88\x3e\xf0\x03\x35\x3d\x4b\x41\x4b\x04\x8a\x38\x14\xb5\xd0\xca\x49\xc7\xce\xfb\xcf\xf3\xcd\x78\x94\xd1\x39\x8a\x56\xd2\x33\x39\xd8\xa7\xf1\x03\xb0\x36\xeb\x2c\xc8\x0f\x0f\xd3\x72\x0b\x28\xc4\x60\x51\x9c\xe3\xc8\xd2\xb4\xb1\xf3\xd5\xbc\xac\x42\x21\xa3\xf1\x3e\x13\x38\x51\xe5\x24\x93\xff\x25\x16\x71\x0c\x63\x36\x2b\xcf\xf7\xf5\x1d\x5c\x43\xcb\x6c\x5c\x91\x24\x47\xc9\xed\x50\xc5\x42\xf7\xc9\x52\x10\xc9\xc8\x53\x52\x75\xba\x4a\x7a\x74\x4c\x36\xb1\xe4\xc8\xe7\x3c\x71\x9d\xec\x13\x45\xec\x92\xf1\xe4\x2a\x34\x8d\xb8\xaf\x2f\x7e\x8b\x24\xa9\xf5\x49\x75\x1a\xeb\x78\x71\x1a\x6b\x7b\x9c\x1d\x5f\x5b\x96\x79\x9a\x1d\xca\xf4\x50\xa6\xf9\xad\xfc\xd2\x86\xfe\xf0\x6d\x28\xe6\xe3\xcb\x4d\xe4\x68\x3f\xc8\xe7\xe0\xd4\xd4\x4d\x92\xed\xd3\x4d\x9c\x6e\x0e\xbb\x2c\x36\x75\xf3\xb9\x23\x3e\x91\x45\xb7\x66\xc2\xf9\x17\x8d\xe9\xa4\x08\x9d\xe4\xf6\xb8\x41\x5d\xde\xa8\x2f\xc1\xc5\xe6\x1c\xad\xa0\x93\x82\x94\x0b\x7d\x71\xa1\x76\x12\x16\x30\x28\x4b\x8e\xad\x14\x4c\x75\xb4\x1a\xcb\x38\xe4\x6a\xc1\x8e\xb2\x22\x74\x9b\x46\x5a\x37\x17\x3b\x9f\x0d\x7d\xd4\x35\xd7\x41\x5c\x80\xec\xf1\x48\xe1\x56\xaf\xe0\xea\xaa\xce\x51\x5c\xf9\x09\xa0\x9b\xdb\xec\x01\xe3\x16\x8b\x17\x83\xbe\xfd\x32\xd9\x50\x56\x61\xeb\x45\x14\x10\x00\xd4\x51\x4f\x8a\xcb\x31\x82\xa6\xd3\xc8\xf7\xf9\xa4\x0b\xfe\xca\x50\xd4\x05\xbc\x0a\xab\x57\x93\xaa\xc3\xb3\x1e\xb8\x80\xef\x7f\x7d\x3d\x49\x84\xee\xb4\x2d\xfd\x91\x0a\x78\xfb\xdd\xd7\x93\xb4\x96\x3d\x29\xdf\xb7\x5d\x01\xef\xef\xef\x20\xcb\x0f\xe1\xf3\xdb\xa4\xef\x09\x55\x01\xef\x67\xf1\x8d\xce\x09\xec\xa8\xf0\x92\x48\x0f\x6c\x06\x1e\xe9\xf4\x27\x0d\x67\x99\x68\x19\x75\x11\x4c\x24\x8a\x0e\x9d\x93\xcd\x94\xd9\x60\x81\x9f\x62\x73\x34\x5b\x08\x89\x3e\x41\xe8\x84\xe9\xb0\x0a\x79\xfa\x67\x3e\x3f\xcf\xa6\xb1\xba\xc2\x4a\x76\x92\x25\xb9\x99\xd3\x37\x73\xd5\xfd\x92\x25\x3f\x5d\x46\x94\x4b\xde\x92\x6b\xd1\x50\x99\x05\xd3\x86\xd0\x37\x62\x57\x0e\xb6\x2b\x2e\x95\xef\xee\x63\xec\xf1\x45\x2b\x3c\xb9\x50\xff\x8e\xb5\xa5\x38\xf4\xff\x70\x73\xdc\x59\x39\x7f\x93\x43\x3d\x28\xe2\x49\x90\xc5\xfc\x81\x6f\xfd\x8a\x96\xc4\x93\x1b\xfa\x02\x76\x22\xdd\xa6\x87\xfb\x87\x87\x2c\x4f\xf7\x35\xe1\x56\xdc\xef\x9b\xbc\xce\xf7\x59\x9a\x6d\x1a\xac\xa3\x50\xb2\xfe\xf4\xf3\xa0\x74\xd3\x84\x3d\x5a\x34\x6d\xe8\x70\x27\x92\xc7\x96\x1d\x58\x72\x7a\xb0\x82\x3c\x33\x15\x3a\xfa\x97\xe1\x4f\xdd\xe4\xe3\xc6\xf5\xdf\xfb\x4b\x88\xb1\x34\xc8\x6d\x01\x7f\x83\x2e\x1b\xab\x5f\x48\xc5\xa6\xba\xd8\x2c\x0c\x35\x79\x93\x6d\x69\xb7\xd9\xe7\xbb\xbc\xaa\x76\x79\x73\x48\xf1\xb0\x4f\xab\x43\xde\xec\xc4\xe6\x21\x8d\x00\xa4\x2b\xc3\x00\x7d\x9e\x66\x3a\xdb\x81\x60\x05\xb2\x09\x7f\x77\xbe\xb2\xc6\xf1\x38\xb3\x32\x0e\x5f\xff\xc3\x1a\x50\xc1\x64\x3d\x75\x02\x8f\x5c\x22\xbf\xa6\x78\x14\x04\x77\x35\x29\xcd\x61\xe4\x4d\x56\x8d\x9f\x5b\xfe\xed\xe6\xe6\x82\xff\x38\x43\x27\xc9\xad\x1c\x43\x99\xb7\x44\x66\x2b\xab\x81\xc7\x49\x44\x1f\xd8\xe2\x65\xda\x2d\xba\x08\xe0\x49\xaa\xba\x80\xd7\x8f\x8f\x53\x84\x7e\xed\x77\x52\x34\xf8\x17\xc4\x6c\xf3\xbf\xd7\x8f\x8f\x77\xf0\xd6\x7f\xe2\x38\xfe\xbf\xbf\xa5\xfe\xf5\x27\xd5\xb1\xac\x91\xd1\x11\x17\xf0\x83\x2f\x50\xff\x06\x59\xc1\x24\xbb\xbc\xe2\x42\xa7\x9c\x0c\x22\x80\x1e\x95\x6c\xc8\x71\x89\x03\xb7\xda\x16\xf0\xa3\x54\x47\xaf\x83\x77\x18\x00\xac\x4d\x56\xc0\xfd\x43\xbc\x1d\x17\xdb\x02\x76\x9b\x78\x13\xfd\x19\x00\x00\xff\xff\xf9\x88\x45\x06\x09\x0b\x00\x00"
func mobilenet_v1_025_128_quantYmlBytes() ([]byte, error) {
return bindataRead(
_mobilenet_v1_025_128_quantYml,
"MobileNet_v1_0.25_128_Quant.yml",
)
}
func mobilenet_v1_025_128_quantYml() (*asset, error) {
bytes, err := mobilenet_v1_025_128_quantYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "MobileNet_v1_0.25_128_Quant.yml", size: 2825, mode: os.FileMode(436), modTime: time.Unix(1555245193, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _mobilenet_v1_025_160Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x5b\x8f\xdc\xb6\x0e\x7e\xf7\xaf\x20\x30\x0f\x39\x07\xd8\xf5\x6d\x2e\x3b\xeb\x87\xf3\x70\x52\xf4\x06\x64\x51\x04\x41\xfb\x10\x14\x06\x2d\xd1\x63\x75\x6d\x49\x90\xe8\x9d\xcc\xfe\xfa\x42\xb2\x3d\xde\x6d\x12\x34\xed\x8b\x61\x91\x1f\x29\xea\x23\x45\x4a\xe3\x40\x15\xbc\x33\x8d\xea\xe9\x81\xb8\x7e\x2a\xea\x3c\x2d\xf7\x75\x71\xc8\x61\x03\x41\x0b\xa6\x85\x8b\x19\x1d\x0c\x46\x52\x9f\xb4\x0e\x07\x3a\x1b\xf7\x58\x25\x00\x93\xf5\x07\xd2\xde\xb8\xef\x7b\x73\x86\x0d\x5c\xf5\xd0\x1a\x07\xdc\xd1\x6c\x07\xf0\x44\xce\x2b\xa3\x2b\x28\xd2\xa2\x7c\x85\x9c\x35\x20\x8c\x66\x87\x4a\x73\xf2\x02\x1b\xe2\x58\x00\x4a\xb7\xc6\x0d\xc8\xd3\x3f\x78\x1a\x50\xb3\x12\x57\xfd\xa4\x4d\x82\x1f\x54\x9a\x5c\x05\x1b\xb8\x2e\x3c\x8c\x9e\x24\xb0\x01\x4b\x2e\x20\xa7\xc8\xc0\x3a\x92\x4a\x04\x9f\x09\xc0\x06\x86\xb1\x67\x65\x7b\x02\xdb\x23\x07\x98\x07\x81\x1a\x1a\x02\x6f\x49\xa8\x56\x91\x4c\x00\x70\x90\x87\x5d\xa0\x00\xe0\x64\xc7\x0a\x1c\x2a\xeb\xcc\x1f\x24\x38\x13\xe8\x86\xfe\x96\x23\x29\x6d\x6f\xce\x55\xc4\xde\x0a\x3b\x46\xb8\xf8\x36\xf8\x29\xc2\xad\x15\x87\x5d\x4f\xd5\xb7\x59\xce\xe8\xd9\xf6\x1b\x22\x7b\x69\x20\xc9\x0b\xa7\x2c\x47\xda\xff\x97\xc0\x5a\x14\xa0\x3c\x20\x9c\x48\x93\xc3\x1e\xd0\x89\x4e\x31\x09\x1e\x1d\x01\x6a\xb9\xb0\x13\xc9\x0d\x39\xbf\x12\x38\x7a\x02\x81\x9e\x7c\x9a\x00\x7c\x47\x96\xb4\x54\xfa\x04\x46\xc7\xb2\x58\xb4\x37\xa0\x38\xfa\x08\x02\xa9\xda\x96\x1c\x69\x06\xa5\xed\xc8\xd0\xe3\x85\x1c\x78\xf5\x3c\x6d\xb5\xaa\xcf\x4a\x72\x97\x00\xb4\x28\xd8\xb8\xb8\xc3\x87\x2e\xc4\xd9\xf7\xe6\xec\xff\x0a\x9c\x32\xed\x43\xee\x1d\xc9\x51\x50\x8c\x40\x8f\x43\x43\x2e\xd4\xf7\x1c\xf2\xe5\x16\xa5\xf4\x71\x27\xee\xc8\x51\x73\x49\x60\x31\x50\x3a\x3a\x14\x04\xc2\x78\x0e\x87\x18\x22\x3f\x20\xe9\x49\x09\x5a\x23\xd0\xc4\xb1\xa8\x85\xd1\x5e\x79\xf6\xc1\x7f\x59\xee\xa6\xa3\x4c\xce\x51\x74\x8a\x9e\xc8\xc3\x5d\x9e\xde\x03\x1b\x7b\x5b\x44\xf9\xf1\x7e\x5e\xee\x01\x85\x18\x1d\x8a\x4b\x9a\x38\x9a\x37\xf6\xa1\x9a\xd7\x55\x2c\x64\xb4\xc1\x67\x06\x67\x6a\xbc\x62\x0a\xbf\xc4\x22\x4d\x61\xca\x66\x13\xf8\x7e\x79\x07\x6f\xa1\x63\xb6\xbe\xca\xb2\x93\xe2\x6e\x6c\x52\x61\x86\x6c\x2d\x88\x6c\xe2\x29\x6b\x7a\xd3\x64\x03\x7a\x26\x97\x39\xf2\x14\x72\x9e\xf9\x5e\x0d\x99\x26\xf6\xd9\x74\x72\x1d\xdb\x45\x3a\xc8\xab\xdf\x2a\xcb\xa4\x39\xeb\xde\xa0\x4c\x57\xa7\xa9\x71\xa7\xc5\xf1\x4b\xcb\xba\xcc\x8b\x63\x9d\x1f\xeb\xbc\x7c\x2d\x5f\x1a\x50\xca\xa7\xe7\x57\x31\xa3\xfb\xa4\x9e\xa2\x3b\x2b\xdb\xac\xb8\xcb\x77\x69\xbe\x3b\x1e\x8a\xd4\xca\xf6\x6b\x87\x7b\x24\x87\xfe\x96\x09\x97\x5f\xb4\xb6\x57\x22\xf6\x90\xd7\x07\x8d\xea\xfa\x95\xfa\x1a\x56\x6a\x2f\xc9\x06\x7a\x25\x48\xfb\xd8\x11\x57\x52\x67\x61\x05\xa3\x76\xe4\xd9\x29\xc1\x24\x93\xcd\x54\xc0\x31\x4b\x2b\x76\x92\x55\xb1\xcf\xb4\xca\xf9\xa5\xcc\xf9\x62\xe9\xb3\x7e\x79\x1b\xc5\x15\xa8\x01\x4f\x14\xef\xf3\x06\x5e\x5c\xd2\x25\x8a\x17\x7e\x22\xe8\xd5\x3d\x0e\x80\x69\x8b\xd5\x8b\xc5\xd0\x78\x99\x5c\x2c\xa8\xb8\xf5\x2a\x8a\x08\x00\xea\x69\x20\xcd\xf5\x14\x41\xdb\x1b\xe4\x6d\x39\xeb\xa2\xbf\x3a\x96\x73\x05\x6f\xe2\xea\xcd\xac\xea\xf1\x62\x46\xae\xe0\xc7\xdf\xde\xce\x12\x61\x7a\xe3\xea\x70\xa4\x0a\xde\xff\xf0\xff\x59\x2a\xd5\x40\x3a\x74\x6c\x5f\xc1\xc7\xed\x0d\x14\x87\x3c\x7e\x7e\x9f\xf5\x03\xa1\xae\xe0\x63\x51\x1e\x6f\x60\xf9\x2c\x3a\x2f\xb0\xa7\x2a\x48\x12\x33\xb2\x1d\x79\xa2\x33\x9c\x34\x9e\x65\xa6\x65\xd2\x25\x30\x93\x28\x7a\xf4\x5e\xb5\x73\x66\xa3\x05\x7e\x89\xcd\xc9\x6c\x25\x24\xf9\x02\xa1\x33\xa6\xc7\x26\xe6\xe9\xef\xf9\xfc\x3a\x9b\xd6\x99\x06\x1b\xd5\x2b\x56\xe4\x17\x4e\xdf\x2d\x55\xf7\x6b\x91\xfd\x72\x1d\x4e\x3e\x7b\x4f\xbe\x43\x4b\x75\x11\x4d\x5b\xc2\xd0\x82\x7d\x3d\xba\xbe\xba\x56\xbe\xdf\xa6\x38\xe0\xb3\xd1\x78\xf6\xb1\xfe\x3d\x1b\x47\x69\xec\xfc\xf1\xe6\xf8\x8b\xf6\xe1\x0e\xc7\x7a\xd0\xc4\xb3\xa0\x48\xf9\x13\xbf\xf6\x2b\x3a\x12\x8f\x7e\x1c\x2a\x38\x88\x7c\x9f\x1f\xb7\xf7\xf7\x45\x99\xdf\x49\xc2\xbd\xd8\xde\xb5\xa5\x2c\xef\x8a\xbc\xd8\xb5\x28\x93\x58\xb2\xe1\xf4\xcb\x88\xf4\xf3\x6c\x3d\x39\xb4\x5d\xec\x6d\x67\x52\xa7\x8e\x3d\x38\xf2\x66\x74\x82\x02\x33\x0d\x7a\xfa\x87\xe1\xcf\x7d\xe4\xf3\x96\xf5\x6f\x3a\x4b\x8c\xae\xb6\xc8\x5d\x05\x5f\xc4\xd5\xad\x33\xcf\xa4\x53\xdb\x5c\xd1\x2b\x2b\xc5\xfe\xd0\x96\x87\x23\x1d\x8e\x87\xb2\xc8\xb1\x28\x4b\x29\x77\xfb\x3b\x71\x2c\xb7\xf7\xf7\xf2\xb0\x4d\x00\x94\xaf\xe3\xb8\x7c\x9a\x27\x38\xbb\x91\x60\x03\xaa\x8d\x7f\x37\xa1\x9a\xa6\x61\xb8\x30\x31\x8d\xda\xf0\xc3\x06\x50\xc3\x6c\x3d\xdf\xfe\x80\x5c\x63\x7e\x49\xeb\x24\x88\xee\x24\x69\xc3\x71\xc0\xcd\x56\x6d\x98\x52\xe1\xa5\xe6\x97\x22\xff\x3c\x2b\x67\xc5\x9d\x9a\x42\x59\xb6\x44\x66\xa7\x9a\x91\xa7\xb9\x43\x9f\xd8\xe1\x75\xb6\xad\xba\x04\xe0\x51\x69\x59\xc1\xdb\x87\x87\x39\xc2\xb0\x0e\x3b\x69\x1a\xc3\x7b\x61\xb1\xf9\xcf\xdb\x87\x87\x1b\x78\x1f\x3e\x69\x9a\xfe\x37\xdc\xcc\xf0\xd6\x53\xfa\x54\x4b\x64\xf4\xc4\x15\xfc\x14\x8a\x32\xbc\x38\x36\x30\xcb\xae\x6f\xb6\xd8\x1d\x67\x83\x04\x60\x40\xad\x5a\xf2\x5c\xe3\xc8\x9d\x71\x15\xfc\xac\xf4\x29\xe8\xe0\x03\x46\x00\x1b\x5b\x54\xb0\xdb\xa7\xfb\x69\xb1\xaf\xc2\xb4\xdd\x26\x7f\x06\x00\x00\xff\xff\x61\x5d\x2b\x54\xf1\x0a\x00\x00"
func mobilenet_v1_025_160YmlBytes() ([]byte, error) {
return bindataRead(
_mobilenet_v1_025_160Yml,
"MobileNet_v1_0.25_160.yml",
)
}
func mobilenet_v1_025_160Yml() (*asset, error) {
bytes, err := mobilenet_v1_025_160YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "MobileNet_v1_0.25_160.yml", size: 2801, mode: os.FileMode(436), modTime: time.Unix(1555245193, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _mobilenet_v1_025_160_quantYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x4d\x8f\xdc\x36\x0f\xbe\xfb\x57\x10\x98\x43\xde\x17\xd8\xf5\xc7\xec\x7c\xad\x0f\x3d\x34\x45\xbf\x80\x2c\xda\x20\x68\x0f\x41\x61\xd0\x12\x3d\x56\xd7\x96\x54\x89\xde\xc9\xec\xaf\x2f\x24\xdb\xe3\x9d\x26\x69\xd3\x5e\x0c\x8b\x7c\x48\x51\x0f\x29\x52\x1a\x7b\x2a\xe1\x8d\xa9\x55\x47\x0f\xc4\xd5\x53\x51\xe5\xe9\x7a\x5b\x15\xbb\xbc\xfa\x79\x40\xcd\xb0\x82\x80\x01\xd3\xc0\xd9\x0c\x0e\x7a\x23\xa9\x4b\x1a\x87\x3d\x9d\x8c\x7b\x2c\x13\x80\xd1\xc7\x3b\xd2\xde\xb8\x6f\x3b\x73\x82\x15\x5c\xf4\xd0\x18\x07\xdc\xd2\x64\x07\xf0\x44\xce\x2b\xa3\x4b\x28\xd2\x62\x7d\x85\x9c\x34\x20\x8c\x66\x87\x4a\x73\xf2\x02\x9b\xc3\xea\x02\x50\xba\x31\xae\x47\x1e\xff\xc1\x53\x8f\x9a\x95\xb8\xe8\x47\x6d\x12\xfc\xa0\xd2\xe4\x4a\x58\xc1\x65\xe1\x61\xf0\x24\x81\x0d\x58\x72\x01\x39\x46\x06\xd6\x91\x54\x22\xf8\x4c\x00\x56\xd0\x0f\x1d\x2b\xdb\x11\xd8\x0e\x39\xc0\x3c\x08\xd4\x50\x13\x78\x4b\x42\x35\x8a\x64\x02\x80\xbd\xdc\x6d\x02\x05\x00\x47\x3b\x94\xe0\x50\x59\x67\x7e\x27\xc1\x99\x40\xd7\x77\xb7\x1c\x49\x69\x3a\x73\x2a\x23\xf6\x56\xd8\x21\xc2\xc5\x97\xc1\x8f\x11\x6e\xad\xd8\x6d\x3a\x2a\xbf\xcc\x72\x42\x4f\xb6\x5f\x10\xd9\x4b\x03\x49\x5e\x38\x65\x39\xd2\xfe\x55\x02\x4b\x69\x80\xf2\x80\x70\x24\x4d\x0e\x3b\x40\x27\x5a\xc5\x24\x78\x70\x04\xa8\xe5\xcc\x4e\x24\x37\xe4\xfc\x42\xe0\xe0\x09\x04\x7a\xf2\x69\x02\xf0\x0d\x59\xd2\x52\xe9\x23\x18\x1d\xcb\x62\xd6\xde\x80\xe2\xe8\x23\x08\xa4\x6a\x1a\x72\xa4\x19\x94\xb6\x03\x43\x87\x67\x72\xe0\xd5\xf3\xb8\xd5\xa2\x3e\x29\xc9\x6d\x02\xd0\xa0\x60\xe3\xe2\x0e\xef\xda\x10\x67\xd7\x99\x93\xff\x2b\x70\xcc\xb4\x0f\xb9\x77\x24\x07\x41\x31\x02\x3d\xf4\x35\xb9\x50\xdf\x53\xc8\xe7\x5b\x94\xd2\xc7\x9d\xb8\x25\x47\xf5\x39\x81\xd9\x40\xe9\xe8\x50\x10\x08\xe3\x39\x1c\xa2\x8f\xfc\x80\xa4\x27\x25\x68\x89\x40\x13\xc7\xa2\x16\x46\x7b\xe5\xd9\x07\xff\xeb\xf5\x66\x3c\xca\xe8\x1c\x45\xab\xe8\x89\x3c\xec\xf3\xf4\x1e\xd8\xd8\xdb\x22\xca\x0f\xf7\xd3\x72\x0b\x28\xc4\xe0\x50\x9c\xd3\xc4\xd1\xb4\xb1\x0f\xd5\xbc\xac\x62\x21\xa3\x0d\x3e\x33\x38\x51\xed\x15\x53\xf8\x25\x16\x69\x0a\x63\x36\xeb\xc0\xf7\xcb\x3b\x78\x0b\x2d\xb3\xf5\x65\x96\x1d\x15\xb7\x43\x9d\x0a\xd3\x67\x4b\x41\x64\x23\x4f\x59\xdd\x99\x3a\xeb\xd1\x33\xb9\xcc\x91\xa7\x90\xf3\xcc\x77\xaa\xcf\x34\xb1\xcf\xc6\x93\xeb\xd8\x34\xd2\x5e\x5e\xfc\x96\x59\x26\xcd\x49\x77\x06\x65\xba\x38\x4d\x8d\x3b\xce\x8e\x5f\x5a\x56\xeb\xbc\x38\x54\xf9\xa1\xca\xd7\xd7\xf2\x4b\x1b\xfa\x23\xb4\xa1\x94\x8f\xcf\x57\x91\xa3\xfb\xa0\x9e\xa2\x53\x2b\x9b\xac\xd8\xe7\x9b\x34\xdf\x1c\x76\x45\x6a\x65\xf3\xb9\x23\x3e\x92\x43\x7f\xcb\x84\xf3\x2f\x5a\xdb\x29\x11\x3b\xc9\xf5\x71\xa3\xba\xba\x52\x5f\x82\x4b\xed\x39\x59\x41\xa7\x04\x69\x1f\xfb\xe2\x42\xed\x24\x2c\x61\xd0\x8e\x3c\x3b\x25\x98\x64\xb2\x1a\xcb\x38\xe6\x6a\xc1\x8e\xb2\x32\x76\x9b\x46\x39\x3f\x17\x3b\x9f\x2d\x7d\xd4\x35\x6f\xa3\xb8\x04\xd5\xe3\x91\xe2\xad\x5e\xc1\x8b\xab\x3a\x47\xf1\xc2\x4f\x04\x5d\xdd\xe6\x00\x18\xb7\x58\xbc\x58\x0c\xed\x97\xc9\xc5\xb2\x8a\x5b\x2f\xa2\x88\x00\xa0\x8e\x7a\xd2\x5c\x8d\x11\x34\x9d\x41\xbe\x5b\x4f\xba\xe8\xaf\x8a\x45\x5d\xc2\xab\xb8\x7a\x35\xa9\x3a\x3c\x9b\x81\x4b\xf8\xfe\xd7\xd7\x93\x44\x98\xce\xb8\x2a\x1c\xa9\x84\xb7\xdf\x7d\x3d\x49\xa5\xea\x49\x87\xbe\xed\x4b\x78\x7f\x77\x03\xc5\x2e\x8f\x9f\xdf\x26\x7d\x4f\xa8\x4b\x78\x5f\xac\x0f\x37\x30\x7f\x66\x9d\x17\xd8\x51\x19\x24\x89\x19\xd8\x0e\x3c\xd2\x19\x4e\x1a\xcf\x32\xd1\x32\xea\x12\x98\x48\x14\x1d\x7a\xaf\x9a\x29\xb3\xd1\x02\x3f\xc5\xe6\x68\xb6\x10\x92\x7c\x82\xd0\x09\xd3\x61\x1d\xf3\xf4\xcf\x7c\x7e\x9e\x4d\xeb\x4c\x8d\xb5\xea\x14\x2b\xf2\x33\xa7\x6f\xe6\xaa\xfb\xa5\xc8\x7e\xba\x8c\x28\x9f\xbd\x25\xdf\xa2\xa5\xaa\x88\xa6\x0d\x61\x68\xc4\xbe\x1a\x5c\x57\x5e\x2a\xdf\xdf\xa5\xd8\xe3\xb3\xd1\x78\xf2\xb1\xfe\x3d\x1b\x47\x69\xec\xff\xf1\xe6\xf8\xb3\xf6\xe1\x26\xc7\x7a\xd0\xc4\x93\xa0\x48\xf9\x03\x5f\xfb\x15\x2d\x89\x47\x3f\xf4\x25\xec\x44\xbe\xcd\x0f\x77\xf7\xf7\xc5\x3a\xdf\x4b\xc2\xad\xb8\xdb\x37\x6b\xb9\xde\x17\x79\xb1\x69\x50\x26\xb1\x64\xc3\xe9\xe7\x41\xe9\xa7\x09\x7b\x74\x68\xdb\xd8\xe1\x4e\xa4\x8e\x2d\x7b\x70\xe4\xcd\xe0\x04\x05\x66\x6a\xf4\xf4\x2f\xc3\x9f\xba\xc9\xc7\x8d\xeb\xbf\xf7\x97\x18\x63\x65\x91\xdb\x12\xfe\x06\x5d\x35\xce\x3c\x93\x4e\x6d\x7d\xb1\x59\x18\xaa\x8b\xcd\x7a\xb3\x96\x1b\xb1\xaf\x0f\x77\xf5\x2e\xaf\xeb\x62\xbb\xdb\xa0\x6c\x36\x7b\xb9\xdd\xee\x43\xb2\x95\xaf\xe2\x00\x7d\x9a\x66\x3a\xbb\x81\x60\x05\xaa\x89\x7f\x37\xa1\xb2\xc6\xf1\x38\xb3\x32\x0e\xdf\xf0\xc3\x06\x50\xc3\x64\x3d\x75\x82\x80\x5c\x22\x7f\x49\xf1\x28\x88\xee\x24\x69\xc3\x71\xe4\x4d\x56\x4d\x98\x5b\xe1\xed\xe6\xe7\x82\xff\x38\x43\x27\xc5\xad\x1a\x43\x99\xb7\x44\x66\xa7\xea\x81\xc7\x49\x44\x1f\xd8\xe1\x65\xda\x2d\xba\x04\xe0\x51\x69\x59\xc2\xeb\x87\x87\x29\xc2\xb0\x0e\x3b\x69\x1a\xc2\x0b\x62\xb6\xf9\xdf\xeb\x87\x87\x1b\x78\x1b\x3e\x69\x9a\xfe\x3f\xdc\xd2\xf0\xfa\x53\xfa\x58\x49\x64\xf4\xc4\x25\xfc\x10\x0a\x34\xbc\x41\x56\x30\xc9\x2e\xaf\xb8\xd8\x29\x27\x83\x04\xa0\x47\xad\x1a\xf2\x5c\xe1\xc0\xad\x71\x25\xfc\xa8\xf4\x31\xe8\xe0\x1d\x46\x00\x1b\x5b\x94\xb0\xb9\x4b\x37\xe3\x62\x5b\xc2\xee\x90\x6e\x93\x3f\x03\x00\x00\xff\xff\xd1\x42\x57\x78\x09\x0b\x00\x00"
func mobilenet_v1_025_160_quantYmlBytes() ([]byte, error) {
return bindataRead(
_mobilenet_v1_025_160_quantYml,
"MobileNet_v1_0.25_160_Quant.yml",
)
}
func mobilenet_v1_025_160_quantYml() (*asset, error) {
bytes, err := mobilenet_v1_025_160_quantYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "MobileNet_v1_0.25_160_Quant.yml", size: 2825, mode: os.FileMode(436), modTime: time.Unix(1555245193, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _mobilenet_v1_025_192Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x4b\xaf\xdc\xb6\x0e\xde\xfb\x57\x10\x98\x45\xee\x05\xce\xf8\x35\x73\xe6\xe1\xc5\x5d\xdc\x14\x7d\x01\x39\x28\x82\xa0\x5d\x04\x85\x41\xcb\xf4\x58\x3d\xb6\x24\x48\xf4\x99\xcc\xf9\xf5\x85\x64\x7b\x3c\xd3\x24\x68\xda\x8d\x61\x91\x1f\x29\xea\x23\x45\x4a\x61\x4f\x05\xbc\xd3\x95\xec\xe8\x89\xb8\x7c\xc9\xca\x34\xce\x1f\xcb\xec\x98\xc3\x0a\xbc\x16\x74\x03\x17\x3d\x58\xe8\x75\x4d\x5d\xd4\x58\xec\xe9\xac\xed\x73\x11\x01\x8c\xd6\x1f\x48\x39\x6d\xbf\xef\xf4\x19\x56\x70\xd5\x43\xa3\x2d\x70\x4b\x93\x1d\xc0\x0b\x59\x27\xb5\x2a\x20\x8b\xb3\xfc\x0e\x39\x69\x40\x68\xc5\x16\xa5\xe2\xe8\x06\x9b\xc2\xea\x0a\x90\xaa\xd1\xb6\x47\x1e\xff\xc1\x51\x8f\x8a\xa5\xb8\xea\x47\x6d\xe4\xfd\xa0\x54\x64\x0b\x58\xc1\x75\xe1\x60\x70\x54\x03\x6b\x30\x64\x3d\x72\x8c\x0c\x8c\xa5\x5a\x0a\xef\x33\x02\x58\x41\x3f\x74\x2c\x4d\x47\x60\x3a\x64\x0f\x73\x20\x50\x41\x45\xe0\x0c\x09\xd9\x48\xaa\x23\x00\xec\xeb\xdd\xd6\x53\x00\x70\x32\x43\x01\x16\xa5\xb1\xfa\x0f\x12\x9c\x08\xb4\x7d\xb7\xe6\x40\x4a\xd3\xe9\x73\x11\xb0\x6b\x61\x86\x00\x17\xdf\x06\x3f\x05\xb8\x31\x62\xb7\xed\xa8\xf8\x36\xcb\x09\x3d\xd9\x7e\x43\x64\xb7\x06\x35\x39\x61\xa5\xe1\x40\xfb\xff\x22\x58\x8a\x02\xa4\x03\x84\x13\x29\xb2\xd8\x01\x5a\xd1\x4a\x26\xc1\x83\x25\x40\x55\xcf\xec\x04\x72\x7d\xce\xaf\x04\x0e\x8e\x40\xa0\x23\x17\x47\x00\xdf\x91\x21\x55\x4b\x75\x02\xad\x42\x59\xcc\xda\x07\x90\x1c\x7c\x78\x41\x2d\x9b\x86\x2c\x29\x06\xa9\xcc\xc0\xd0\xe1\x85\x2c\x38\xf9\x3a\x6e\xb5\xa8\xcf\xb2\xe6\x36\x02\x68\x50\xb0\xb6\x61\x87\x0f\xad\x8f\xb3\xeb\xf4\xd9\xfd\x15\x38\x66\xda\xf9\xdc\x5b\xaa\x07\x41\x21\x02\x35\xf4\x15\x59\x5f\xdf\x53\xc8\x97\x35\xd6\xb5\x0b\x3b\x71\x4b\x96\xaa\x4b\x04\xb3\x81\x54\xc1\xa1\x20\x10\xda\xb1\x3f\x44\x1f\xf8\x81\x9a\x5e\xa4\xa0\x25\x02\x45\x1c\x8a\x5a\x68\xe5\xa4\x63\xe7\xfd\xe7\xf9\x76\x3c\xca\xe8\x1c\x45\x2b\xe9\x85\x1c\xec\xd3\xf8\x08\xac\xcd\x3a\x0b\xf2\xc3\x71\x5a\x3e\x02\x0a\x31\x58\x14\x97\x38\xb2\x34\x6d\xec\x7c\x35\x2f\xab\x50\xc8\x68\xbc\xcf\x04\xce\x54\x39\xc9\xe4\x7f\x89\x45\x1c\xc3\x98\xcd\xca\xf3\x7d\x7b\x07\xd7\xd0\x32\x1b\x57\x24\xc9\x49\x72\x3b\x54\xb1\xd0\x7d\xb2\x14\x44\x32\xf2\x94\x54\x9d\xae\x92\x1e\x1d\x93\x4d\x2c\x39\xf2\x39\x4f\x5c\x27\xfb\x44\x11\xbb\x64\x3c\xb9\x0a\xed\x22\xee\xeb\xab\xdf\x22\x49\x6a\x7d\x56\x9d\xc6\x3a\x5e\x9c\xc6\xda\x9e\x66\xc7\xb7\x96\x65\x9e\x66\x87\x32\x3d\x94\x69\x7e\x2f\x9f\x1b\x50\xcc\xa7\xd7\xbb\x98\xd1\x7e\x92\x2f\xc1\x9d\xa9\x9b\x24\xdb\xa7\xdb\x38\xdd\x1e\x76\x59\x6c\xea\xe6\x6b\x87\x7b\x26\x8b\x6e\xcd\x84\xf3\x2f\x1a\xd3\x49\x11\x7a\xc8\xfd\x41\x83\xba\xbc\x53\x5f\xc3\x8a\xcd\x25\x5a\x41\x27\x05\x29\x17\x3a\xe2\x42\xea\x24\x2c\x60\x50\x96\x1c\x5b\x29\x98\xea\x68\x35\x16\x70\xc8\xd2\x82\x1d\x65\x45\xe8\x33\x8d\xb4\x6e\x2e\x73\xbe\x18\xfa\xac\x5f\xae\x83\xb8\x00\xd9\xe3\x89\xc2\x7d\x5e\xc1\xcd\x25\x9d\xa3\xb8\xf1\x13\x40\x77\xf7\xd8\x03\xc6\x2d\x16\x2f\x06\x7d\xe3\x65\xb2\xa1\xa0\xc2\xd6\x8b\x28\x20\x00\xa8\xa3\x9e\x14\x97\x63\x04\x4d\xa7\x91\x37\xf9\xa4\x0b\xfe\xca\x50\xce\x05\xbc\x09\xab\x37\x93\xaa\xc3\x8b\x1e\xb8\x80\x1f\x7f\x7b\x3b\x49\x84\xee\xb4\x2d\xfd\x91\x0a\x78\xff\xc3\xff\x27\x69\x2d\x7b\x52\xbe\x63\xbb\x02\x3e\x6e\x1e\x20\x3b\xe6\xe1\xf3\xfb\xa4\xef\x09\x55\x01\x1f\xb3\xfc\xf0\x00\xf3\x67\xd6\x39\x81\x1d\x15\x5e\x12\xe9\x81\xcd\xc0\x23\x9d\xfe\xa4\xe1\x2c\x13\x2d\xa3\x2e\x82\x89\x44\xd1\xa1\x73\xb2\x99\x32\x1b\x2c\xf0\x4b\x6c\x8e\x66\x0b\x21\xd1\x17\x08\x9d\x30\x1d\x56\x21\x4f\x7f\xcf\xe7\xd7\xd9\x34\x56\x57\x58\xc9\x4e\xb2\x24\x37\x73\xfa\x6e\xae\xba\x5f\xb3\xe4\x97\xeb\x70\x72\xc9\x7b\x72\x2d\x1a\x2a\xb3\x60\xda\x10\xfa\x16\xec\xca\xc1\x76\xc5\xb5\xf2\xdd\x26\xc6\x1e\x5f\xb5\xc2\xb3\x0b\xf5\xef\x58\x5b\x8a\x43\xe7\x0f\x37\xc7\x5d\x94\xf3\x77\x38\xd4\x83\x22\x9e\x04\x59\xcc\x9f\xf8\xde\xaf\x68\x49\x3c\xbb\xa1\x2f\x60\x27\xd2\xc7\xf4\xb0\x39\x1e\xb3\x3c\xdd\xd7\x84\x8f\x62\xb3\x6f\xf2\x3a\xdf\x67\x69\xb6\x6d\xb0\x8e\x42\xc9\xfa\xd3\xcf\x23\xd2\x4d\xb3\xf5\x64\xd1\xb4\xa1\xb7\x9d\x49\x9e\x5a\x76\x60\xc9\xe9\xc1\x0a\xf2\xcc\x54\xe8\xe8\x1f\x86\x3f\xf5\x91\xcf\x5b\xd6\xbf\xe9\x2c\x21\xba\xd2\x20\xb7\x05\x7c\x11\x57\x36\x56\xbf\x92\x8a\x4d\x75\x45\x2f\xac\x34\x0d\xe1\xae\xc1\xdd\x31\xcb\x9a\x43\xba\x7f\xdc\xec\xf3\xcd\x91\xb6\x55\x8a\xfb\xc3\x76\x97\x1e\x23\x00\xe9\xca\x30\x2e\x5f\xa6\x09\xce\x76\x20\x58\x81\x6c\xc2\xdf\x83\xaf\xa6\x71\x18\xce\x4c\x8c\xa3\xd6\xff\xb0\x06\x54\x30\x59\x4f\xb7\xdf\x23\x97\x98\x6f\x69\x1d\x05\xc1\x5d\x4d\x4a\x73\x18\x70\x93\x55\xe3\xa7\x94\x7f\xa9\xb9\xb9\xc8\x3f\xcf\xca\x59\x72\x2b\xc7\x50\xe6\x2d\x91\xd9\xca\x6a\xe0\x71\xee\xd0\x27\xb6\x78\x9d\x6d\x8b\x2e\x02\x78\x96\xaa\x2e\xe0\xed\xd3\xd3\x14\xa1\x5f\xfb\x9d\x14\x0d\xfe\xbd\x30\xdb\xfc\xe7\xed\xd3\xd3\x03\xbc\xf7\x9f\x38\x8e\xff\xeb\x6f\xa6\x7f\xeb\x49\x75\x2a\x6b\x64\x74\xc4\x05\xfc\xe4\x8b\xd2\xbf\x38\x56\x30\xc9\xae\x6f\xb6\xd0\x1d\x27\x83\x08\xa0\x47\x25\x1b\x72\x5c\xe2\xc0\xad\xb6\x05\xfc\x2c\xd5\xc9\xeb\xe0\x03\x06\x00\x6b\x93\x15\xb0\xdd\xc7\xfb\x71\xf1\x58\xc0\x3e\x8f\x37\xd1\x9f\x01\x00\x00\xff\xff\xc4\x5b\x95\xdb\xf1\x0a\x00\x00"
func mobilenet_v1_025_192YmlBytes() ([]byte, error) {
return bindataRead(
_mobilenet_v1_025_192Yml,
"MobileNet_v1_0.25_192.yml",
)
}
func mobilenet_v1_025_192Yml() (*asset, error) {
bytes, err := mobilenet_v1_025_192YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "MobileNet_v1_0.25_192.yml", size: 2801, mode: os.FileMode(436), modTime: time.Unix(1555245193, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _mobilenet_v1_025_192_quantYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x4d\x8f\xdc\x36\x0f\xbe\xfb\x57\x10\x98\x43\xde\x17\xd8\xf5\xd7\xce\xce\xee\xfa\xd0\x43\x53\xf4\x0b\xc8\xa2\x0d\x82\xf6\x10\x14\x06\x2d\xd1\x63\x75\x6d\x49\x95\xe8\x9d\xcc\xfe\xfa\x42\xb2\x3d\x9e\x69\x92\x36\xed\xc5\x90\xc9\x87\x14\xf5\x90\x22\xa5\x71\xa0\x0a\xde\x98\x46\xf5\xf4\x48\x5c\x3f\x17\x75\x9e\x96\xb7\x75\xf1\x50\xd6\x3f\x8f\xa8\x19\x36\x10\x30\x60\x5a\x38\x9a\xd1\xc1\x60\x24\xf5\x49\xeb\x70\xa0\x83\x71\x4f\x55\x02\x30\xf9\x78\x47\xda\x1b\xf7\x6d\x6f\x0e\xb0\x81\x93\x1e\x5a\xe3\x80\x3b\x9a\xed\x00\x9e\xc9\x79\x65\x74\x05\x45\x5a\x94\x17\xc8\x59\x03\xc2\x68\x76\xa8\x34\x27\x67\xd8\x1c\x36\x27\x80\xd2\xad\x71\x03\xf2\xb4\x06\x4f\x03\x6a\x56\xe2\xa4\x9f\xb4\x49\xf0\x83\x4a\x93\xab\x60\x03\xa7\x1f\x0f\xa3\x27\x09\x6c\xc0\x92\x0b\xc8\x29\x32\xb0\x8e\xa4\x12\xc1\x67\x02\xb0\x81\x61\xec\x59\xd9\x9e\xc0\xf6\xc8\x01\xe6\x41\xa0\x86\x86\xc0\x5b\x12\xaa\x55\x24\x13\x00\x1c\xe4\x6e\x1b\x28\x00\xd8\xdb\xb1\x02\x87\xca\x3a\xf3\x3b\x09\xce\x04\xba\xa1\xbf\xe6\x48\x4a\xdb\x9b\x43\x15\xb1\xd7\xc2\x8e\x11\x2e\xbe\x0c\xbe\x8f\x70\x6b\xc5\x6e\xdb\x53\xf5\x65\x96\x33\x7a\xb6\xfd\x82\xc8\xce\x0d\x24\x79\xe1\x94\xe5\x48\xfb\x57\x09\xac\xa5\x01\xca\x03\xc2\x9e\x34\x39\xec\x01\x9d\xe8\x14\x93\xe0\xd1\x11\xa0\x96\x0b\x3b\x91\xdc\x90\xf3\x13\x81\xa3\x27\x10\xe8\xc9\xa7\x09\xc0\x37\x64\x49\x4b\xa5\xf7\x60\x74\x2c\x8b\x45\x7b\x05\x8a\xa3\x8f\x20\x90\xaa\x6d\xc9\x91\x66\x50\xda\x8e\x0c\x3d\x1e\xc9\x81\x57\x2f\xd3\x56\xab\xfa\xa0\x24\x77\x09\x40\x8b\x82\x8d\x8b\x3b\xbc\xeb\x42\x9c\x7d\x6f\x0e\xfe\xaf\xc0\x29\xd3\x3e\xe4\xde\x91\x1c\x05\xc5\x08\xf4\x38\x34\xe4\x42\x7d\xcf\x21\x1f\xaf\x51\x4a\x1f\x77\xe2\x8e\x1c\x35\xc7\x04\x16\x03\xa5\xa3\x43\x41\x20\x8c\xe7\x70\x88\x21\xf2\x03\x92\x9e\x95\xa0\x35\x02\x4d\x1c\x8b\x5a\x18\xed\x95\x67\x1f\xfc\x97\xe5\x76\x3a\xca\xe4\x1c\x45\xa7\xe8\x99\x3c\xdc\xe5\xe9\x03\xb0\xb1\xd7\x45\x94\xdf\x3f\xcc\xbf\xb7\x80\x42\x8c\x0e\xc5\x31\x4d\x1c\xcd\x1b\xfb\x50\xcd\xeb\x5f\x2c\x64\xb4\xc1\x67\x06\x07\x6a\xbc\x62\x0a\x4b\x62\x91\xa6\x30\x65\xb3\x09\x7c\x9f\xdf\xc1\x6b\xe8\x98\xad\xaf\xb2\x6c\xaf\xb8\x1b\x9b\x54\x98\x21\x5b\x0b\x22\x9b\x78\xca\x9a\xde\x34\xd9\x80\x9e\xc9\x65\x8e\x3c\x85\x9c\x67\xbe\x57\x43\xa6\x89\x7d\x36\x9d\x5c\xc7\xa6\x91\x0e\xf2\xe4\xb7\xca\x32\x69\x0e\xba\x37\x28\xd3\xd5\x69\x6a\xdc\x7e\x71\x7c\x6e\x59\x97\x79\x71\x5f\xe7\xf7\x75\x5e\x5e\xca\x4f\x6d\xe8\x8f\xd0\x86\x52\xde\xbf\x5c\x44\x8e\xee\x83\x7a\x8e\x4e\xad\x6c\xb3\xe2\x2e\xdf\xa6\xf9\xf6\x7e\x57\xa4\x56\xb6\x9f\x3b\xe2\x13\x39\xf4\xd7\x4c\xb8\x2c\xd1\xda\x5e\x89\xd8\x49\x2e\x8f\x1b\xd5\xf5\x85\xfa\x14\x5c\x6a\x8f\xc9\x06\x7a\x25\x48\xfb\xd8\x17\x57\x6a\x67\x61\x05\xa3\x76\xe4\xd9\x29\xc1\x24\x93\xcd\x54\xc6\x31\x57\x2b\x76\x92\x55\xb1\xdb\xb4\xca\xf9\xa5\xd8\xf9\x68\xe9\xa3\xae\x79\x1d\xc5\x15\xa8\x01\xf7\x14\x6f\xf5\x06\xce\xae\xea\x12\xc5\x99\x9f\x08\xba\xb8\xcd\x01\x30\x6d\xb1\x7a\xb1\x18\xda\x2f\x93\x8b\x65\x15\xb7\x5e\x45\x11\x01\x40\x3d\x0d\xa4\xb9\x9e\x22\x68\x7b\x83\x7c\x53\xce\xba\xe8\xaf\x8e\x45\x5d\xc1\xab\xf8\xf7\x6a\x56\xf5\x78\x34\x23\x57\xf0\xfd\xaf\xaf\x67\x89\x30\xbd\x71\x75\x38\x52\x05\x6f\xbf\xfb\x7a\x96\x4a\x35\x90\x0e\x7d\xdb\x57\xf0\xfe\xe6\x0a\x8a\x87\x32\x7e\x7e\x9b\xf5\x03\xa1\xae\xe0\x7d\x51\xde\x5f\xc1\xf2\x59\x74\x5e\x60\x4f\x55\x90\x24\x66\x64\x3b\xf2\x44\x67\x38\x69\x3c\xcb\x4c\xcb\xa4\x4b\x60\x26\x51\xf4\xe8\xbd\x6a\xe7\xcc\x46\x0b\xfc\x14\x9b\x93\xd9\x4a\x48\xf2\x09\x42\x67\x4c\x8f\x4d\xcc\xd3\x3f\xf3\xf9\x79\x36\xad\x33\x0d\x36\xaa\x57\xac\xc8\x2f\x9c\xbe\x59\xaa\xee\x97\x22\xfb\xe9\x34\xa2\x7c\xf6\x96\x7c\x87\x96\xea\x22\x9a\xb6\x84\xa1\x11\xfb\x7a\x74\x7d\x75\xaa\x7c\x7f\x93\xe2\x80\x2f\x46\xe3\xc1\xc7\xfa\xf7\x6c\x1c\xa5\xb1\xff\xc7\x9b\xe3\x8f\xda\x87\x9b\x1c\xeb\x41\x13\xcf\x82\x22\xe5\x0f\x7c\xe9\x57\x74\x24\x9e\xfc\x38\x54\xb0\x13\xf9\x6d\x7e\x7f\xf3\xf0\x50\x94\xf9\x9d\x24\xbc\x15\x37\x77\x6d\x29\xcb\xbb\x22\x2f\xb6\x2d\xca\x24\x96\x6c\x38\xfd\x32\x28\xfd\x3c\x61\xf7\x0e\x6d\x17\x3b\xdc\x81\xd4\xbe\x63\x0f\x8e\xbc\x19\x9d\xa0\xc0\x4c\x83\x9e\xfe\x65\xf8\x73\x37\xf9\xb8\x71\xfd\xf7\xfe\x12\x63\xac\x2d\x72\x57\xc1\xdf\xa0\xeb\xd6\x99\x17\xd2\xa9\x6d\x4e\x36\x2b\x43\xb7\xed\x43\x29\x77\x4d\x9b\xdf\xb4\x45\x5e\x62\x2e\xee\xe9\xb6\x11\x5b\x51\x16\xed\xae\x6d\x77\xa1\x51\x2a\x5f\xc7\x01\xfa\x3c\xcf\x74\x76\x23\xc1\x06\x54\x1b\x57\x57\xa1\xb2\xa6\xf1\xb8\xb0\x32\x0d\xdf\xb0\x60\x03\xa8\x61\xb6\x9e\x3b\x41\x40\xae\x91\x9f\x53\x3c\x09\xa2\x3b\x49\xda\x70\x1c\x79\xb3\x55\x1b\xe6\x56\x78\xbb\xf9\xa5\xe0\x3f\xce\xd0\x41\x71\xa7\xa6\x50\x96\x2d\x91\xd9\xa9\x66\xe4\x69\x12\xd1\x07\x76\x78\x9a\x76\xab\x2e\x01\x78\x52\x5a\x56\xf0\xfa\xf1\x71\x8e\x30\xfc\x87\x9d\x34\x8d\xe1\x05\xb1\xd8\xfc\xef\xf5\xe3\xe3\x15\xbc\x0d\x9f\x34\x4d\xff\x1f\x6e\x69\x78\xfd\x29\xbd\xaf\x25\x32\x7a\xe2\x0a\x7e\x08\x05\x1a\xde\x20\x1b\x98\x65\xa7\x57\x5c\xec\x94\xb3\x41\x02\x30\xa0\x56\x2d\x79\xae\x71\xe4\xce\xb8\x0a\x7e\x54\x7a\x1f\x74\xf0\x0e\x23\x80\x8d\x2d\x2a\xd8\xee\xd2\x69\x7d\x5b\xc1\x5d\x91\x96\xc9\x9f\x01\x00\x00\xff\xff\x96\xda\xf0\x21\x08\x0b\x00\x00"
func mobilenet_v1_025_192_quantYmlBytes() ([]byte, error) {
return bindataRead(
_mobilenet_v1_025_192_quantYml,
"MobileNet_v1_0.25_192_Quant.yml",
)
}
func mobilenet_v1_025_192_quantYml() (*asset, error) {
bytes, err := mobilenet_v1_025_192_quantYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "MobileNet_v1_0.25_192_Quant.yml", size: 2824, mode: os.FileMode(436), modTime: time.Unix(1555245193, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _mobilenet_v1_025_224Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x4f\x8f\xdb\xb6\x12\xbf\xeb\x53\x0c\xe0\x43\xde\x03\x76\x25\x4b\x6b\xaf\x6d\x1d\xde\xe1\xa5\xe8\x3f\x20\x8b\x22\x08\xda\x43\x50\x08\x23\x72\x64\xb1\x2b\x91\x04\x39\x5a\xc7\xfb\xe9\x0b\x52\x92\x65\x37\x09\x9a\xf6\x22\x88\x33\xbf\x19\x0e\x7f\x9c\x3f\xd4\xd8\x53\x09\xef\x4c\xad\x3a\x7a\x22\xae\x5e\xf2\x6a\x9d\x16\xdb\xaa\x28\x36\xb0\x82\xa0\x05\xd3\xc0\xd9\x0c\x0e\x7a\x23\xa9\x4b\x1a\x87\x3d\x9d\x8c\x7b\x2e\x13\x80\xd1\xfa\x03\x69\x6f\xdc\xf7\x9d\x39\xc1\x0a\x2e\x7a\x68\x8c\x03\x6e\x69\xb2\x03\x78\x21\xe7\x95\xd1\x25\xe4\x69\x5e\xdc\x20\x27\x0d\x08\xa3\xd9\xa1\xd2\x9c\x5c\x61\xd7\xb0\xba\x00\x94\x6e\x8c\xeb\x91\xc7\x7f\xf0\xd4\xa3\x66\x25\x2e\xfa\x51\x9b\x04\x3f\xa8\x34\xb9\x12\x56\x70\x59\x78\x18\x3c\x49\x60\x03\x96\x5c\x40\x8e\x91\x81\x75\x24\x95\x08\x3e\x13\x80\x15\xf4\x43\xc7\xca\x76\x04\xb6\x43\x0e\x30\x0f\x02\x35\xd4\x04\xde\x92\x50\x8d\x22\x99\x00\x60\x2f\x1f\x37\x81\x02\x80\xa3\x1d\x4a\x70\xa8\xac\x33\x7f\x90\xe0\x4c\xa0\xeb\xbb\x7b\x8e\xa4\x34\x9d\x39\x95\x11\x7b\x2f\xec\x10\xe1\xe2\xdb\xe0\xc7\x08\xb7\x56\x3c\x6e\x3a\x2a\xbf\xcd\x72\x42\x4f\xb6\xdf\x10\xd9\xb5\x81\x24\x2f\x9c\xb2\x1c\x69\xff\x5f\x02\x4b\x52\x80\xf2\x80\x70\x24\x4d\x0e\x3b\x40\x27\x5a\xc5\x24\x78\x70\x04\xa8\xe5\xcc\x4e\x24\x37\xdc\xf9\x85\xc0\xc1\x13\x08\xf4\xe4\xd3\x04\xe0\x3b\xb2\xa4\xa5\xd2\x47\x30\x3a\xa6\xc5\xac\xbd\x03\xc5\xd1\x47\x10\x48\xd5\x34\xe4\x48\x33\x28\x6d\x07\x86\x0e\xcf\xe4\xc0\xab\xd7\x71\xab\x45\x7d\x52\x92\xdb\x04\xa0\x41\xc1\xc6\xc5\x1d\x3e\xb4\x21\xce\xae\x33\x27\xff\x57\xe0\x78\xd3\x3e\xdc\xbd\x23\x39\x08\x8a\x11\xe8\xa1\xaf\xc9\x85\xfc\x9e\x42\x3e\xdf\xa3\x94\x3e\xee\xc4\x2d\x39\xaa\xcf\x09\xcc\x06\x4a\x47\x87\x82\x40\x18\xcf\xe1\x10\x7d\xe4\x07\x24\xbd\x28\x41\x4b\x04\x9a\x38\x26\xb5\x30\xda\x2b\xcf\x3e\xf8\x0f\xd5\x14\x8f\x32\x3a\x47\xd1\x2a\x7a\x21\x0f\xbb\x75\x7a\x00\x36\xf6\x3e\x8f\xf2\xfd\x61\x5a\x6e\x01\x85\x18\x1c\x8a\x73\x9a\x38\x9a\x36\xf6\x21\x9b\x97\x55\x4c\x64\xb4\xc1\x67\x06\x27\xaa\xbd\x62\x0a\xbf\xc4\x22\x4d\x61\xbc\xcd\x3a\xf0\x7d\x5d\x83\xf7\xd0\x32\x5b\x5f\x66\xd9\x51\x71\x3b\xd4\xa9\x30\x7d\xb6\x24\x44\x36\xf2\x94\xd5\x9d\xa9\xb3\x1e\x3d\x93\xcb\x1c\x79\x0a\x77\x9e\xf9\x4e\xf5\x99\x26\xf6\xd9\x78\x72\x1d\xdb\x45\xda\xcb\x8b\xdf\x32\xcb\xa4\x39\xe9\xce\xa0\x4c\x17\xa7\xa9\x71\xc7\xd9\xf1\xb5\x65\x55\xac\xf3\x7d\xb5\xde\x57\xeb\xe2\x56\x3e\x37\xa0\x94\x8f\xaf\x37\x31\xa3\xfb\xa4\x5e\xa2\x3b\x2b\x9b\x2c\xdf\xad\x37\xe9\x7a\xb3\x7f\xcc\x53\x2b\x9b\xaf\x1d\xee\x99\x1c\xfa\x7b\x26\x9c\x7f\xd1\xda\x4e\x89\xd8\x43\x6e\x0f\x1a\xd5\xd5\x8d\xfa\x12\x56\x6a\xcf\xc9\x0a\x3a\x25\x48\xfb\xd8\x11\x17\x52\x27\x61\x09\x83\x76\xe4\xd9\x29\xc1\x24\x93\xd5\x98\xc0\xf1\x96\x16\xec\x28\x2b\x63\x9f\x69\x94\xf3\x73\x9a\xf3\xd9\xd2\x67\xfd\xf2\x3e\x8a\x4b\x50\x3d\x1e\x29\xd6\xf3\x0a\xae\x8a\x74\x8e\xe2\xca\x4f\x04\xdd\xd4\x71\x00\x8c\x5b\x2c\x5e\x2c\x86\xc6\xcb\xe4\x62\x42\xc5\xad\x17\x51\x44\x00\x50\x47\x3d\x69\xae\xc6\x08\x9a\xce\x20\x3f\x14\x93\x2e\xfa\xab\x62\x3a\x97\xf0\x26\xae\xde\x4c\xaa\x0e\xcf\x66\xe0\x12\x7e\xfc\xed\xed\x24\x11\xa6\x33\xae\x0a\x47\x2a\xe1\xfd\x0f\xff\x9f\xa4\x52\xf5\xa4\x43\xc7\xf6\x25\x7c\x7c\xb8\x0b\xf5\x11\x3f\xbf\x4f\xfa\x9e\x50\x97\xf0\x31\x2f\xf6\x77\x30\x7f\x66\x9d\x17\xd8\x51\x19\x24\x89\x19\xd8\x0e\x3c\xd2\x19\x4e\x1a\xcf\x32\xd1\x32\xea\x12\x98\x48\x14\x1d\x7a\xaf\x9a\xe9\x66\xa3\x05\x7e\x89\xcd\xd1\x6c\x21\x24\xf9\x02\xa1\x13\xa6\xc3\x3a\xde\xd3\xdf\xf3\xf9\x75\x36\xad\x33\x35\xd6\xaa\x53\xac\xc8\xcf\x9c\xbe\x9b\xb3\xee\xd7\x3c\xfb\xe5\x32\x9c\x7c\xf6\x9e\x7c\x8b\x96\xaa\x3c\x9a\x36\x84\xa1\x05\xfb\x6a\x70\x5d\x79\xc9\x7c\xff\x90\x62\x8f\xaf\x46\xe3\xc9\xc7\xfc\xf7\x6c\x1c\xa5\xb1\xf3\xc7\xca\xf1\x67\xed\x43\x0d\xc7\x7c\xd0\xc4\x93\x20\x4f\xf9\x13\xdf\xfa\x15\x2d\x89\x67\x3f\xf4\x25\x3c\x8a\xf5\x76\xbd\x7f\x38\x1c\xf2\x62\xbd\x93\x84\x5b\xf1\xb0\x6b\x0a\x59\xec\xf2\x75\xbe\x69\x50\x26\x31\x65\xc3\xe9\xe7\x11\xe9\xa7\xd9\x7a\x74\x68\xdb\xd8\xdb\x4e\xa4\x8e\x2d\x7b\x70\xe4\xcd\xe0\x04\x05\x66\x6a\xf4\xf4\x0f\xc3\x9f\xfa\xc8\xe7\x2d\xeb\xdf\x74\x96\x18\x5d\x65\x91\xdb\x12\xbe\x88\xab\x1a\x67\x5e\x49\xa7\xb6\xbe\xa0\x17\x56\xf6\x8f\xdb\x7d\x51\xe4\x0f\x3b\x59\xe7\x0f\x07\x99\x0b\x51\xec\xb6\xbb\x75\xb3\x3b\xec\x76\xb4\xdf\x88\x04\x40\xf9\x2a\x8e\xcb\x97\x69\x82\xb3\x1b\x08\x56\xa0\x9a\xf8\x77\x17\xb2\x69\x1c\x86\x33\x13\xe3\xa8\x0d\x3f\x6c\x00\x35\x4c\xd6\x53\xf5\x07\xe4\x12\xf3\x35\xad\xa3\x20\xba\x93\xa4\x0d\xc7\x01\x37\x59\x35\x61\x4a\x85\x97\x9a\x9f\x93\xfc\xf3\x5b\x39\x29\x6e\xd5\x18\xca\xbc\x25\x32\x3b\x55\x0f\x3c\xce\x1d\xfa\xc4\x0e\x2f\xb3\x6d\xd1\x25\x00\xcf\x4a\xcb\x12\xde\x3e\x3d\x4d\x11\x86\x75\xd8\x49\xd3\x10\xde\x0b\xb3\xcd\x7f\xde\x3e\x3d\xdd\xc1\xfb\xf0\x49\xd3\xf4\xbf\xa1\x32\xc3\x5b\x4f\xe9\x63\x25\x91\xd1\x13\x97\xf0\x53\x48\xca\xf0\xe2\x58\xc1\x24\xbb\xbc\xd9\x62\x77\x9c\x0c\x12\x80\x1e\xb5\x6a\xc8\x73\x85\x03\xb7\xc6\x95\xf0\xb3\xd2\xc7\xa0\x83\x0f\x18\x01\x6c\x6c\x5e\xc2\xe6\x90\xee\xc7\xc5\xb6\x84\xdd\x26\x2d\x92\x3f\x03\x00\x00\xff\xff\x8c\x9a\x03\x2c\xf1\x0a\x00\x00"
func mobilenet_v1_025_224YmlBytes() ([]byte, error) {