-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuiltin_models_static.go
1293 lines (1084 loc) · 250 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/Caffe_ResNet_101.yml
// builtin_models/DPN_107.yml
// builtin_models/DPN_131.yml
// builtin_models/DPN_68_v1.0.yml
// builtin_models/DPN_68_v2.0.yml
// builtin_models/DPN_92.yml
// builtin_models/DPN_98.yml
// builtin_models/Inception_ResNet_v2.0.yml
// builtin_models/Inception_v3.0.yml
// builtin_models/MobileNet_SSD_Lite_v2.0.yml
// builtin_models/MobileNet_SSD_v1.0.yml
// builtin_models/NasNet_A_Large.yml
// builtin_models/NasNet_A_Mobile.yml
// builtin_models/PNasNet_5_Large.yml
// builtin_models/PolyNet.yml
// builtin_models/ResNext_101_32x4D.yml
// builtin_models/ResNext_101_64x4D.yml
// builtin_models/SENet_154.yml
// builtin_models/SE_ResNet_101.yml
// builtin_models/SE_ResNet_152.yml
// builtin_models/SE_ResNet_50.yml
// builtin_models/SE_ResNext_101_32x4D.yml
// builtin_models/SE_ResNext_50_32x4D.yml
// builtin_models/SRGAN_v1.0.yml
// builtin_models/TorchVision_AlexNet.yml
// builtin_models/TorchVision_DeepLabv3_Resnet101.yml
// builtin_models/TorchVision_DenseNet_121.yml
// builtin_models/TorchVision_DenseNet_161.yml
// builtin_models/TorchVision_DenseNet_169.yml
// builtin_models/TorchVision_DenseNet_201.yml
// builtin_models/TorchVision_Fcn_Resnet101.yml
// builtin_models/TorchVision_ResNet_101.yml
// builtin_models/TorchVision_ResNet_152.yml
// builtin_models/TorchVision_ResNet_18.yml
// builtin_models/TorchVision_ResNet_34.yml
// builtin_models/TorchVision_ResNet_50.yml
// builtin_models/TorchVision_SqueezeNet_v1.0.yml
// builtin_models/TorchVision_SqueezeNet_v1.1.yml
// builtin_models/TorchVision_VGG_11.yml
// builtin_models/TorchVision_VGG_11_BN.yml
// builtin_models/TorchVision_VGG_13.yml
// builtin_models/TorchVision_VGG_13_BN.yml
// builtin_models/TorchVision_VGG_16.yml
// builtin_models/TorchVision_VGG_16_BN.yml
// builtin_models/TorchVision_VGG_19.yml
// builtin_models/TorchVision_VGG_19_BN.yml
// builtin_models/Xception.yml
// DO NOT EDIT!
package pytorch
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 _caffe_resnet_101Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x4d\x8f\xdb\x38\x0f\xbe\xe7\x57\x10\xc8\xa5\x05\x12\x3b\xce\xd7\x4c\x0d\xbc\xef\x61\xe7\xb0\xb3\x58\x60\xb0\x18\x14\xe8\xa1\x28\x02\x5a\xa6\x63\x6d\x65\x49\x90\xe8\x66\xd2\x5f\xbf\xd0\x47\x12\x0f\xda\x6e\x8b\x0d\x06\x19\x5b\x7c\x48\x51\x7c\x1e\x52\xd1\x38\x50\x0d\x0f\xd8\x75\x74\x78\x26\xff\x44\x7c\xa8\x56\x15\xcc\x21\x18\xc0\x74\x70\x36\xa3\x83\xc1\xb4\xa4\x66\x9d\xc3\x81\x4e\xc6\x7d\xae\x67\x00\x00\xc9\xf5\xaf\xf3\x7b\xe3\x44\x0f\x73\xb8\x9a\xa1\x33\x0e\xb8\xa7\xec\x16\xb0\x5f\xc8\x79\x69\x74\x0d\x55\xb1\x7e\x05\xcd\x06\x10\x46\x7b\x76\x28\x35\xcf\x26\xd8\x15\xcc\xaf\x08\xa9\x3b\xe3\x06\xe4\xf4\x0c\x9e\x06\xd4\x2c\xc5\xd5\x9e\xac\x33\x61\x34\xa3\xd4\xe4\x6a\x98\xc3\xf5\xc5\xc3\xe8\xa9\x05\x36\x60\xc9\x05\x64\xca\x0d\xac\xa3\x56\x8a\x10\x33\xa6\x39\x87\x61\x54\x2c\xad\x22\xb0\x0a\x39\x00\x3d\x08\xd4\xd0\x10\x78\x4b\x42\x76\x92\xda\x88\xc4\xa1\xdd\x6f\x53\x1d\xc2\x47\xd8\xb1\x06\x87\xd2\x3a\xf3\x37\x09\x2e\x05\xba\x41\x2d\xed\x99\x43\x6d\xea\x08\x5e\x0a\x3b\x5e\xf1\xc7\x5f\xc0\x1f\x33\xde\x5a\xb1\xdf\x2a\xfa\xd5\xcd\x32\xfc\xea\xfe\xf3\xed\xa6\x1e\x2d\x79\xe1\xa4\xe5\x48\xc0\xff\x63\x80\xf7\xbd\xf4\xb9\x5c\xd2\x03\x82\x23\xab\xa4\x48\x44\x98\xee\x46\x34\x24\xdf\x86\xda\xc0\x4f\x58\x7e\x26\xaf\x89\xc1\x8e\xcd\xcd\xc1\xc9\xa3\xd4\xa8\xd4\x19\x4e\x4e\x32\x53\x24\x33\xea\xaf\xc8\xbb\x51\x60\x65\x19\xc5\x40\x6d\x0e\x4d\x2f\x96\x04\x7b\x90\xda\x8e\x1c\x3c\x06\xa9\xe5\xb2\x41\x16\x3d\xf9\x90\xc5\x66\x29\x7a\xd4\x9a\x14\xfc\xf6\xfb\x33\xc8\x01\x8f\x69\xdd\xf7\x68\x09\xde\x6c\xe0\x05\x1e\xe1\x05\x3e\xbc\x5d\xc0\xa9\x27\x47\xf0\x08\xa8\x5b\xf8\x00\xe8\x28\x47\x4f\xfa\x68\x08\xd6\xeb\x6d\x11\xf3\xc8\x61\x7a\xfc\x42\xd9\xa4\x0c\xb6\xf9\x7c\x26\x94\x02\xf5\x31\x76\xc9\xc7\xd5\x02\xd6\xbb\xdd\xa7\x18\x94\x7b\xd2\xa0\x83\x1c\x95\xfc\x4a\x2d\x8c\x5e\xea\x23\x0c\x84\x1a\xfe\x07\x1f\xab\xd5\xba\x78\x77\xbf\xaa\x16\x50\x55\xbb\xe2\xdd\x76\xbf\x5b\x40\xb5\x5e\x17\x77\x77\xd5\x5d\xf2\xf7\xdc\x46\xe0\x02\xc2\xdf\xa7\x99\xa3\x8e\x1c\x69\x41\x3e\x68\xfa\xf6\x16\xe5\x8c\x36\xa8\xbb\x84\x13\x35\x5e\x32\x85\x47\x62\x51\x14\x17\x36\xc2\xd6\xaf\x7b\x71\x09\x3d\xb3\xf5\x75\x59\x1e\x25\xf7\x63\x53\x08\x33\x94\x0f\xd8\x92\xa6\xd2\x3a\xca\x85\x5f\x46\x07\x5f\x64\x91\xcc\x1d\x59\x67\xda\x51\x48\x7d\x5c\x3a\xf2\xa3\x62\xff\xdf\xa3\x95\x8d\x32\x4d\x39\xa0\x67\x72\x13\x54\x02\x95\xf9\x9f\x08\xa2\x70\x51\x42\x85\x3d\xff\x78\xb3\x3f\x51\x0e\x52\x1f\x1f\xa9\x6c\x89\x6c\x48\x4e\xb6\x23\xaa\xa5\x26\x0e\x23\xc6\xcf\xe6\xa0\xa4\x20\xed\xe9\x95\x5c\x67\x79\xb1\x86\x51\x3b\xf2\xec\x64\x90\xc0\x6c\x9e\x34\x16\x8b\x7b\xc3\xa6\xb5\x3a\x0f\x89\x4e\x3a\xcf\x59\x8b\x7c\xb6\xf4\x9d\x81\xb7\x8c\x86\x3a\x49\x28\xf7\xe1\x1c\x26\xdd\x75\xc9\x65\x12\x2b\xc3\x5e\xb5\x60\x80\x64\xd1\x4f\x22\x59\x0c\x03\x94\xc9\x45\x45\xc4\x14\x6e\x4b\xd7\xae\x07\x20\x45\x03\x69\x3e\xa4\x5c\x3a\x65\x90\x37\xeb\x89\x3d\x46\x3e\x28\x3c\x87\x71\xb9\x9a\x18\x14\x9e\xcd\xc8\x35\x3c\x3c\x7e\x98\xac\x0a\xa3\x8c\x3b\x84\x43\xd6\xb1\xcd\xae\x9f\x09\xa6\x95\x03\xe9\x30\x90\x7d\x0d\x1f\x37\x8b\xd0\x4c\xf1\xeb\xd3\x04\x13\x5a\xa1\xfe\x49\x27\x4c\xe0\x5e\xa0\xa2\x1a\xc2\xad\x74\x6b\x0a\x33\xb2\x1d\xf9\xc2\x48\x28\x53\x2c\x43\xae\x6a\xb2\x46\x63\x3a\xbb\x50\xe8\xbd\xec\xf2\x18\xca\x5e\xf8\x3d\x42\x92\xeb\xad\x9e\xb3\xef\x72\x92\x51\x0a\x9b\x4c\xf8\x84\x92\x6b\xea\x3f\xa6\xe6\xdf\x89\xb1\xce\x34\xd8\x48\x25\x59\x92\xff\x96\x9e\x8e\x90\x47\x47\xfe\x30\x3a\x55\xc7\x8e\xa8\xcb\xd2\x6f\x0a\x1c\xf0\xab\xd1\x78\xf2\xb1\x2d\x3c\x1b\x47\x45\x9c\xf4\x85\x71\xc7\xd2\x9f\xb5\x27\xf6\x65\xd4\x91\x26\xce\x0b\x05\xbf\xf0\xb7\x91\x45\x4f\xe2\xb3\x1f\x87\x1a\xb6\xed\x7a\xb3\x6d\x76\xf7\x9b\x0d\x0a\xdc\x6e\xdf\xad\xef\x57\xfb\x1d\x56\xf7\xab\xb6\xd9\xac\xaa\x3d\xce\xa2\xe6\x83\x0c\x2f\x17\xe4\xe5\xb2\x38\x3a\xb4\x7d\x1c\x68\x27\x92\xc7\x9e\x3d\x38\xf2\x66\x74\x82\x52\x1d\xa2\xfd\x60\x91\xfb\xfa\xda\xd6\x3f\x3d\x45\x9e\x0d\x97\x39\x32\x99\x11\xd5\xaa\x5a\x5e\xce\x56\xd8\x74\x26\xe9\x0f\xe8\x44\x2f\xbf\x4c\x6e\xcf\x0e\x95\x27\x98\x83\xec\xc0\x13\x2f\xd2\xb4\x0e\x94\x36\xe8\x29\x94\x34\xdd\x72\xe1\x21\xcc\x78\x0d\x39\xc2\x94\xd5\x9e\x26\xd9\x4f\x8f\x98\x16\x62\xc8\x96\xb4\x61\x0a\xcf\x13\xcf\x4e\x2a\x8a\x3f\x9c\xfc\x45\x6e\xdf\x56\xe9\x24\xb9\xcf\x17\xe8\x74\xeb\xb4\xe1\x8d\x98\xfd\x6e\xdf\x74\xd5\x06\x45\xb3\xdd\x56\xcd\x76\xbb\xbe\xdb\xdc\xdd\xa1\x20\x51\xad\x9a\x66\x43\xab\x19\x32\x3b\xd9\x8c\x9c\xae\x0d\x7a\x61\x87\x90\x67\x22\xdc\x6c\x31\xf6\x67\xa9\xdb\x1a\x1e\x9e\x9e\xf2\xe1\xc2\x7b\x48\x50\xd3\xe8\x50\x5d\xbd\xde\x3c\x3c\x3d\x2d\xe0\x39\x7c\x15\x45\xf1\x36\xb5\x57\x18\xdd\x52\x1f\x0f\x2d\x32\x7a\xe2\x1a\xfe\x08\x24\x3c\x11\x87\x79\x97\xd6\xae\x3f\xbe\xe2\x9c\xcc\x0e\xd1\x7b\x40\x2d\x3b\xf2\x7c\xc0\x91\x7b\xe3\x6a\xc0\xa6\x1d\x55\x3b\xfb\x27\x00\x00\xff\xff\x39\xc9\x97\xa4\x97\x0a\x00\x00"
func caffe_resnet_101YmlBytes() ([]byte, error) {
return bindataRead(
_caffe_resnet_101Yml,
"Caffe_ResNet_101.yml",
)
}
func caffe_resnet_101Yml() (*asset, error) {
bytes, err := caffe_resnet_101YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "Caffe_ResNet_101.yml", size: 2711, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _dpn_107Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x4b\x8f\xdb\xb8\x0f\xbf\xe7\x53\x10\xc8\xa5\xfd\x23\xb1\xf3\x9c\xc9\x18\xf8\xef\x61\xa7\xc0\x76\x2f\xc1\xa0\x28\xd0\x43\x51\x04\xb4\x4c\xc7\xda\xca\x92\x20\xd1\xcd\xa4\x9f\x7e\xa1\x47\x12\x0f\xfa\xc4\xce\x21\x63\x93\x3f\x52\x7c\xfc\x48\x59\x63\x4f\x15\xbc\x79\xda\x1f\x96\x8b\x7b\x98\x42\x78\x07\xd3\xc2\xd9\x0c\x0e\x7a\xd3\x90\x9a\xb4\x0e\x7b\x3a\x19\xf7\xb9\x9a\x00\x00\x24\x8b\xa7\xf3\x7b\xe3\x44\x07\x53\xb8\xaa\xa1\x35\x0e\xb8\xa3\x6c\x16\xb0\x5f\xc8\x79\x69\x74\x05\xcb\x62\xf5\x02\x9a\x15\x20\x8c\xf6\xec\x50\x6a\x9e\x8c\xb0\x0b\x98\x5e\x11\x52\xb7\xc6\xf5\xc8\xe9\x19\x3c\xf5\xa8\x59\x8a\xab\x3e\x69\x27\xc2\x68\x46\xa9\xc9\x55\x30\x85\xeb\x8b\x87\xc1\x53\x03\x6c\xc0\x92\x0b\xc8\x14\x1b\x58\x47\x8d\x14\xc1\x67\x0c\x73\x0a\xfd\xa0\x58\x5a\x45\x60\x15\x72\x00\x7a\x10\xa8\xa1\x26\xf0\x96\x84\x6c\x25\x35\x11\x89\x7d\x73\xb7\x49\x75\x08\x7f\xc2\x0e\x15\x38\x94\xd6\x99\x7f\x48\x70\x29\xd0\xf5\x6a\x6e\xcf\x1c\x6a\x53\x45\xf0\x5c\xd8\xe1\x8a\x3f\xfe\x06\xfe\x98\xf1\xd6\x8a\xbb\x8d\xa2\xdf\x3d\x2c\xc3\xaf\xe6\xbf\x3e\x6e\x6c\xd1\x90\x17\x4e\x5a\x8e\x0d\xf8\x23\x3a\x78\xdf\x49\x9f\xcb\x25\x3d\x20\x38\xb2\x4a\x8a\xd4\x08\xd3\xde\x1a\x0d\xc9\xb6\xa6\x26\xf4\x27\x88\xdf\x0c\xa8\xe0\x09\xb9\x83\x3d\x71\x68\xb7\x07\x3b\xd4\x17\xe3\x22\x7b\xa7\xd0\x85\x79\x6c\x3e\x35\xd9\x15\x3d\x5b\x12\xec\x41\x6a\x3b\x70\x70\xd7\x4b\x2d\xe7\x35\xb2\xe8\xc8\x87\x53\xd7\x73\xd1\xa1\xd6\xa4\xe0\xdd\x5f\x7f\x82\xec\xf1\x98\xe4\xbe\x43\x4b\xf0\x6a\x0d\xcf\xf0\x16\x9e\xe1\xc3\xeb\x19\x9c\x3a\x72\x04\x6f\x01\x75\x03\x1f\x00\x1d\x65\xef\x89\x0f\x35\xc1\x6a\xb5\x29\x62\x1c\xd9\x4d\x87\x5f\x28\xab\x94\xc1\x26\xe7\x63\x42\xea\xa8\x8f\x71\x2a\x3e\x2e\x66\xb0\xfc\x14\x5d\x72\x47\x1a\x74\x20\x9f\x92\x5f\xa9\x81\xc1\x4b\x7d\x84\x9e\x50\xc3\xff\xe1\xe3\x72\xb5\x81\x12\x56\xdb\xed\x0c\x96\xcb\xfb\xeb\xe3\x22\x4b\x93\x0b\xcf\x4d\xc4\x42\x09\xaf\x8a\xc5\xf2\xee\x1e\xfe\x17\x94\xaf\x67\xf0\x3b\xa2\x4f\x13\x47\x2d\x39\xd2\x82\x7c\x20\xfd\xed\x2d\xf2\x1d\x6d\xa0\x7f\x09\x27\xaa\xbd\x64\x0a\x8f\xc4\xa2\x28\x2e\xed\x0a\xd1\xbe\x1c\xd6\x39\x74\xcc\xd6\x57\x65\x79\x94\xdc\x0d\x75\x21\x4c\x5f\x3e\x62\x43\x9a\x4a\xeb\x28\x77\x6a\x1e\x0d\x7c\x91\x59\x34\x75\x64\x9d\x69\x06\x21\xf5\x71\xee\xc8\x0f\x8a\xfd\x7f\xf7\x56\xd6\xca\xd4\x65\x8f\x9e\xc9\x8d\x50\x09\x54\xe6\x7f\x8d\xd5\x85\x3d\xff\xf8\x10\x71\xb6\xa7\xf2\xcd\xd3\xfe\x27\x71\x98\x33\xf6\x65\x3e\x73\x1e\xa1\x53\x50\x52\x90\xf6\xf4\x82\xdb\x93\x2c\xac\x60\xd0\x8e\x3c\x3b\x19\xf8\x33\x99\x26\x82\xc6\x42\xdf\xb0\x49\x56\xe5\x8d\xd2\x4a\xe7\x39\x13\x99\xcf\x96\xbe\xb3\x1d\xe7\x51\x51\x25\xfe\xe5\xa1\x9d\xc2\x68\x14\x2f\xb1\x8c\x7c\x65\xd8\x8b\x79\x0d\x90\x3c\x31\x23\x4f\x16\xc3\xb6\x65\x72\x91\x1d\x31\x84\x9b\xe8\xba\x22\x00\x48\x51\x4f\x9a\x0f\x29\x96\x56\x19\xe4\xf5\x6a\xa4\x8f\x9e\x0f\x0a\xcf\x61\xb7\x2e\x46\x0a\x85\x67\x33\x70\x05\x8f\x6f\x3f\x8c\xa4\xc2\x28\xe3\x0e\x21\xc9\x2a\xcc\xe8\x48\xd3\xc8\x9e\x74\xd8\xd9\xbe\x82\x8f\xeb\x59\x98\xbf\xf8\xf3\x69\x84\x09\xf3\x53\xc5\xf1\x89\x83\x13\x47\x66\xac\xf7\x02\x15\x55\xb0\x7d\x28\x76\xbb\x89\x19\xd8\x0e\x7c\x29\x78\xa8\x42\xcc\x32\x17\x2d\x69\xa3\x32\xa5\x26\x14\x7a\x2f\xdb\xbc\x86\xb2\x15\x7e\xaf\xde\xc9\xf4\x56\xae\xc9\x77\x4b\x9e\x51\x0a\xeb\xdc\xcf\x51\xc5\xaf\x21\xff\xb8\xf2\x3f\xaf\xbb\x75\xa6\xc6\x5a\x2a\xc9\x92\xfc\xb7\xd5\x6f\x09\x79\x70\xe4\x0f\x83\x53\x55\x64\x78\x55\x96\x7e\x5d\x60\x8f\x5f\x8d\xc6\x93\x8f\x34\xf7\x6c\x1c\x15\x71\xeb\x17\xc6\x1d\x4b\x7f\xd6\x9e\xd8\x97\x91\x26\x9a\x38\x0b\x0a\x7e\xe6\x6f\x3d\x8b\x8e\xc4\x67\x3f\xf4\x15\x6c\x9a\xd5\x7a\x53\x6f\x77\xeb\x35\x0a\xdc\x6c\x1e\x56\xbb\xc5\xdd\x16\x97\xbb\x45\x53\xaf\x17\xcb\x3b\x9c\x44\x4a\x07\x96\x5d\x2e\xcb\xcb\xc5\x71\x74\x68\xbb\xb8\xeb\x4e\x24\x8f\x1d\x7b\x70\xe4\xcd\xe0\x04\xa5\x3a\x44\xfd\xc1\x22\x77\xd5\x75\x4c\x7f\x99\x45\x5e\x03\x97\x95\xd1\x58\xbd\x5c\xdc\xcf\x2f\x39\x15\x36\xe5\x22\xfd\x01\x9d\xe8\xe4\x97\xd1\x0d\xda\xa2\xf2\x04\x53\x90\x2d\x78\xe2\x59\xda\xe1\xa1\x95\x35\x7a\x0a\xa5\x4c\x37\x5d\x78\x08\x7b\x5f\x43\xf6\x30\xee\x66\x47\xa3\xa8\xc7\xa9\x25\x41\x74\xd9\x90\x36\x4c\xe1\x79\x64\xd9\x4a\x45\xf1\xe3\xc9\x5f\x68\xf6\x6d\x75\x4e\x92\xbb\x7c\x89\x8e\x8f\x4e\x07\xde\x1a\xd2\x3c\x88\x87\x7a\xb3\x6b\xef\x96\xb8\x58\x6f\x09\x57\x2d\x2e\xb6\x62\xd9\x12\x6d\x36\x42\xdc\xaf\x26\xc8\xec\x64\x3d\x70\xba\x19\xe8\x99\x1d\x82\x4e\x77\x31\xdc\x74\xd1\xf7\x67\xa9\x9b\x0a\x1e\xf7\xfb\x9c\x5c\x78\x0f\x01\x6a\x1a\x1c\xaa\xab\xd5\xab\xc7\xfd\x7e\x06\xef\xc2\x4f\x51\x14\xaf\xd3\x58\x85\xed\x2c\xf5\xf1\xd0\x20\xa3\x27\xae\xe0\xef\xd0\x84\x3d\x71\x58\x63\x49\x76\xfd\x00\x8b\xeb\x2f\x1b\x44\xeb\x1e\xb5\x6c\xc9\xf3\x01\x07\xee\x8c\xab\x00\xeb\x66\x50\xcd\xe4\xdf\x00\x00\x00\xff\xff\x2a\x23\x04\xf5\x92\x0a\x00\x00"
func dpn_107YmlBytes() ([]byte, error) {
return bindataRead(
_dpn_107Yml,
"DPN_107.yml",
)
}
func dpn_107Yml() (*asset, error) {
bytes, err := dpn_107YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "DPN_107.yml", size: 2706, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _dpn_131Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x4b\x8f\xdb\xba\x0e\xde\xe7\x57\x10\xc8\xa6\xbd\x98\xd8\x71\x1e\xd3\x8c\x81\x7b\x17\x77\x0a\xdc\xde\x4d\x30\x28\x0a\x74\x51\x14\x01\x2d\xd3\xb1\x4e\x65\x49\x90\xe8\x66\xd2\x5f\x7f\xa0\x47\x12\x0f\xfa\xc4\x99\x45\xc6\x26\x3f\x52\x7c\x7c\xa4\xac\x71\xa0\x1a\xde\x3e\xed\x0f\xd5\xba\x82\x39\x84\x77\x30\x1d\x9c\xcd\xe8\x60\x30\x2d\xa9\x59\xe7\x70\xa0\x93\x71\x5f\xea\x19\x00\x40\xb2\x78\x3a\x7f\x30\x4e\xf4\x30\x87\xab\x1a\x3a\xe3\x80\x7b\xca\x66\x01\xfb\x95\x9c\x97\x46\xd7\x50\x15\xab\x17\xd0\xac\x00\x61\xb4\x67\x87\x52\xf3\x6c\x82\x5d\xc2\xfc\x8a\x90\xba\x33\x6e\x40\x4e\xcf\xe0\x69\x40\xcd\x52\x5c\xf5\x49\x3b\x13\x46\x33\x4a\x4d\xae\x86\x39\x5c\x5f\x3c\x8c\x9e\x5a\x60\x03\x96\x5c\x40\xa6\xd8\xc0\x3a\x6a\xa5\x08\x3e\x63\x98\x73\x18\x46\xc5\xd2\x2a\x02\xab\x90\x03\xd0\x83\x40\x0d\x0d\x81\xb7\x24\x64\x27\xa9\x8d\x48\x1c\xda\xfb\x4d\xaa\x43\xf8\x13\x76\xac\xc1\xa1\xb4\xce\xfc\x45\x82\x4b\x81\x6e\x50\x0b\x7b\xe6\x50\x9b\x3a\x82\x17\xc2\x8e\x57\xfc\xf1\x0f\xf0\xc7\x8c\xb7\x56\xdc\x6f\x14\xfd\xe9\x61\x19\x7e\x35\xff\xfd\x71\x53\x8b\x96\xbc\x70\xd2\x72\x6c\xc0\x7f\xa2\x83\x0f\xbd\xf4\xb9\x5c\xd2\x03\x82\x23\xab\xa4\x48\x8d\x30\xdd\xad\xd1\x90\x6c\x1b\x6a\x43\x7f\x82\xf8\xed\x88\x0a\x9e\x90\x7b\xd8\x13\x87\x76\x7b\xb0\x63\x73\x31\x2e\xb2\x77\x0a\x5d\x58\xc4\xe6\x53\x9b\x5d\xd1\xb3\x25\xc1\x1e\xa4\xb6\x23\x07\x77\x83\xd4\x72\xd1\x20\x8b\x9e\x7c\x38\x75\xbd\x10\x3d\x6a\x4d\x0a\xde\xff\xef\xbf\x20\x07\x3c\x26\xb9\xef\xd1\x12\xbc\x5a\xc3\x33\xbc\x83\x67\xf8\xf8\xfa\x0e\x4e\x3d\x39\x82\x77\x80\xba\x85\x8f\x80\x8e\xb2\xf7\xc4\x87\x86\x60\xb5\xda\x14\x31\x8e\xec\xa6\xc7\xaf\x94\x55\xca\x60\x9b\xf3\x31\x21\x75\xd4\xc7\x38\x15\x9f\x96\x77\x50\x7d\x8e\x2e\xb9\x27\x0d\x3a\x90\x4f\xc9\x6f\xd4\xc2\xe8\xa5\x3e\xc2\x40\xa8\xe1\xdf\xf0\xa9\x5a\x6d\xa0\x84\xd5\x76\x7b\x07\x55\xf5\xe6\xfa\xb8\xcc\xd2\xe4\xc2\x73\x1b\xb1\x50\xc2\xab\x62\x59\xdd\xbf\x81\x7f\x05\xe5\xeb\x3b\xf8\x13\xd1\xe7\x99\xa3\x8e\x1c\x69\x41\x3e\x90\xfe\xf6\x16\xf9\x8e\x36\xd0\xbf\x84\x13\x35\x5e\x32\x85\x47\x62\x51\x14\x97\x76\x85\x68\x5f\x0e\xeb\x02\x7a\x66\xeb\xeb\xb2\x3c\x4a\xee\xc7\xa6\x10\x66\x28\x1f\xb1\x25\x4d\xa5\x75\x94\x3b\xb5\x88\x06\xbe\xc8\x2c\x9a\x3b\xb2\xce\xb4\xa3\x90\xfa\xb8\x70\xe4\x47\xc5\xfe\x9f\x7b\x2b\x1b\x65\x9a\x72\x40\xcf\xe4\x26\xa8\x04\x2a\xf3\xbf\xd6\xea\xc2\x9e\x7f\x7e\x88\x38\xdb\x53\xf9\xf6\x69\xff\x8b\x38\xcc\x19\x87\x32\x9f\xb9\x88\xd0\x39\x28\x29\x48\x7b\x7a\xc1\xed\x59\x16\xd6\x30\x6a\x47\x9e\x9d\x0c\xfc\x99\xcd\x13\x41\x63\xa1\x6f\xd8\x24\xab\xf3\x46\xe9\xa4\xf3\x9c\x89\xcc\x67\x4b\x3f\xd8\x8e\x8b\xa8\xa8\x13\xff\xf2\xd0\xce\x61\x32\x8a\x97\x58\x26\xbe\x32\xec\xc5\xbc\x06\x48\x9e\x98\x89\x27\x8b\x61\xdb\x32\xb9\xc8\x8e\x18\xc2\x4d\x74\x5d\x11\x00\xa4\x68\x20\xcd\x87\x14\x4b\xa7\x0c\xf2\x7a\x35\xd1\x47\xcf\x07\x85\xe7\xb0\x5b\x97\x13\x85\xc2\xb3\x19\xb9\x86\xc7\x77\x1f\x27\x52\x61\x94\x71\x87\x90\x64\x1d\x66\x74\xa2\x69\xe5\x40\x3a\xec\x6c\x5f\xc3\xa7\xf5\x5d\x98\xbf\xf8\xf3\x79\x82\x09\xf3\x53\xc7\xf1\x89\x83\x13\x47\x66\xaa\xf7\x02\x15\xd5\xb0\x7d\x28\x76\xbb\x99\x19\xd9\x8e\x7c\x29\x78\xa8\x42\xcc\x32\x17\x2d\x69\xa3\x32\xa5\x26\x14\x7a\x2f\xbb\xbc\x86\xb2\x15\xfe\xa8\xde\xc9\xf4\x56\xae\xd9\x0f\x4b\x9e\x51\x0a\x9b\xdc\xcf\x49\xc5\xaf\x21\xff\xbc\xf2\xbf\xae\xbb\x75\xa6\xc1\x46\x2a\xc9\x92\xfc\xf7\xd5\xef\x08\x79\x74\xe4\x0f\xa3\x53\x75\x64\x78\x5d\x96\x7e\x5d\xe0\x80\xdf\x8c\xc6\x93\x8f\x34\xf7\x6c\x1c\x15\x71\xeb\x17\xc6\x1d\x4b\x7f\xd6\x9e\xd8\x97\x91\x26\x9a\x38\x0b\x0a\x7e\xe6\xef\x3d\x8b\x9e\xc4\x17\x3f\x0e\x35\x6c\xda\xd5\x7a\xd3\x6c\x77\xeb\x35\x0a\xdc\x6c\x1e\x56\xbb\xe5\xfd\x16\xab\xdd\xb2\x6d\xd6\xcb\xea\x1e\x67\x91\xd2\x81\x65\x97\xcb\xf2\x72\x71\x1c\x1d\xda\x3e\xee\xba\x13\xc9\x63\xcf\x1e\x1c\x79\x33\x3a\x41\xa9\x0e\x51\x7f\xb0\xc8\x7d\x7d\x1d\xd3\xdf\x66\x91\xd7\xc0\x65\x65\xb4\x56\x57\xeb\x6a\x71\xc9\xa9\xb0\x29\x17\xe9\x0f\xe8\x44\x2f\xbf\x4e\x6e\xd0\x0e\x95\x27\x98\x83\xec\xc0\x13\xdf\xa5\x1d\x1e\x5a\xd9\xa0\xa7\x50\xca\x74\xd3\x85\x87\xb0\xf7\x35\x64\x0f\xd3\x6e\xf6\x34\x89\x7a\x9a\x5a\x12\x44\x97\x2d\x69\xc3\x14\x9e\x27\x96\x9d\x54\x14\x3f\x9e\xfc\x85\x66\xdf\x57\xe7\x24\xb9\xcf\x97\xe8\xf4\xe8\x74\xe0\xad\x21\xdd\x6e\xb3\x6a\x77\x5d\xdb\x74\xb8\x7e\x43\x62\x8b\x95\x78\x58\x57\xbb\x6a\xdb\x6e\xee\x1f\xb6\xbb\xed\x0c\x99\x9d\x6c\x46\x4e\x37\x03\x3d\xb3\x43\xd0\xe9\x2e\x86\x9b\x2e\xfa\xfe\x22\x75\x5b\xc3\xe3\x7e\x9f\x93\x0b\xef\x21\x40\x4d\xa3\x43\x75\xb5\x7a\xf5\xb8\xdf\xdf\xc1\xfb\xf0\x53\x14\xc5\xeb\x34\x56\x61\x3b\x4b\x7d\x3c\xb4\xc8\xe8\x89\x6b\xf8\x7f\x68\xc2\x9e\x38\xac\xb1\x24\xbb\x7e\x80\xc5\xf5\x97\x0d\xa2\xf5\x80\x5a\x76\xe4\xf9\x80\x23\xf7\xc6\xd5\x80\x4d\x3b\xaa\x76\xf6\x77\x00\x00\x00\xff\xff\x48\x10\xe8\x59\x92\x0a\x00\x00"
func dpn_131YmlBytes() ([]byte, error) {
return bindataRead(
_dpn_131Yml,
"DPN_131.yml",
)
}
func dpn_131Yml() (*asset, error) {
bytes, err := dpn_131YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "DPN_131.yml", size: 2706, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _dpn_68_v10Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x4b\x8f\xdb\xb8\x0f\xbf\xe7\x53\x10\xc8\xa5\xfd\x63\x62\xe7\x3d\xa9\x81\xff\x1e\x76\x0a\x6c\xf7\x12\x0c\x8a\x02\x3d\x14\x45\x40\xcb\x74\xac\xad\x2c\x09\x12\x3d\x99\xf4\xd3\x2f\xf4\x48\xe2\x41\x9f\xd8\x39\x64\x14\xf2\x47\x8a\x8f\x1f\xa9\x68\xec\xa9\x82\xb7\x8f\xfb\xc3\x76\x77\x78\x5a\x14\x73\x98\x42\x90\x81\x69\xe1\x6c\x06\x07\xbd\x69\x48\x4d\x5a\x87\x3d\x9d\x8c\xfb\x52\x4d\x00\x00\x92\xd5\xe3\xf9\x83\x71\xa2\x83\x29\x5c\xd5\xd0\x1a\x07\xdc\x51\x36\x0b\xd8\x27\x72\x5e\x1a\x5d\xc1\xa2\x58\xbe\x80\x66\x05\x08\xa3\x3d\x3b\x94\x9a\x27\x23\x6c\x08\xe4\x82\x90\xba\x35\xae\x47\x4e\x67\xf0\xd4\xa3\x66\x29\xae\xfa\xa4\x9d\x08\xa3\x19\xa5\x26\x57\xc1\x14\xae\x5f\x3c\x0c\x9e\x1a\x60\x03\x96\x5c\x40\xa6\xd8\xc0\x3a\x6a\xa4\x08\x3e\x63\x98\x53\xe8\x07\xc5\xd2\x2a\x02\xab\x90\x03\xd0\x83\x40\x0d\x35\x81\xb7\x24\x64\x2b\xa9\x89\x48\xec\x9b\xed\x3a\xd5\x21\xfc\x09\x3b\x54\xe0\x50\x5a\x67\xfe\x21\xc1\xa5\x40\xd7\xab\x99\x3d\x73\xa8\x4d\x15\xc1\x33\x61\x87\x2b\xfe\xf8\x1b\xf8\x63\xc6\x5b\x2b\xb6\x6b\x45\xbf\x7b\x59\x86\x5f\xcd\x7f\x7d\xdd\xd8\xa2\x21\x2f\x9c\xb4\x1c\x1b\xf0\x47\x74\xf0\xa1\x93\x3e\x97\x4b\x7a\x40\x70\x64\x95\x14\xa9\x11\xa6\xbd\x35\x1a\x92\x6d\x4d\x4d\xe8\x4f\x10\xbf\x1d\x50\xc1\x23\x72\x07\x7b\xe2\xd0\x6e\x0f\x76\xa8\x2f\xc6\x45\xf6\x4e\xa1\x0b\xb3\xd8\x7c\x6a\xb2\x2b\x7a\xb6\x24\xd8\x83\xd4\x76\xe0\xe0\xae\x97\x5a\xce\x6a\x64\xd1\x91\x0f\xb7\xae\x66\xa2\x43\xad\x49\xc1\xfb\xbf\xfe\x04\xd9\xe3\x31\xc9\x7d\x87\x96\xe0\xd5\x0a\x9e\xe1\x1d\x3c\xc3\xc7\xd7\x77\x70\xea\xc8\x11\xbc\x03\xd4\x0d\x7c\x04\x74\x94\xbd\x27\x3e\xd4\x04\xcb\xe5\xba\x88\x71\x64\x37\x1d\x3e\x51\x56\x29\x83\x4d\xce\xc7\x84\xd4\x51\x1f\xe3\x54\x7c\x9a\xdf\xc1\xe2\x73\x74\xc9\x1d\x69\xd0\x81\x7c\x4a\x7e\xa5\x06\x06\x2f\xf5\x11\x7a\x42\x0d\xff\x87\x4f\x8b\xe5\x1a\x4a\x58\x6e\x36\x77\xb0\x58\xdc\x5f\x8f\xf3\x2c\x4d\x2e\x3c\x37\x11\x0b\x25\xbc\x2a\xe6\x8b\xed\x3d\xfc\x2f\x28\x5f\xdf\xc1\xef\x88\x3e\x4f\x1c\xb5\xe4\x48\x0b\xf2\x81\xf4\xb7\x6f\x91\xef\x68\x03\xfd\x4b\x38\x51\xed\x25\x53\x38\x12\x8b\xa2\xb8\xb4\x2b\x44\xfb\x72\x58\x67\xd0\x31\x5b\x5f\x95\xe5\x51\x72\x37\xd4\x85\x30\x7d\xf9\x80\x0d\x69\x2a\xad\xa3\xdc\xa9\x59\x34\xf0\x45\x66\xd1\xd4\x91\x75\xa6\x19\x84\xd4\xc7\x99\x23\x3f\x28\xf6\xff\xdd\x5b\x59\x2b\x53\x97\x3d\x7a\x26\x37\x42\x25\x50\x99\xff\x35\x56\x17\xf6\xfc\xe3\x4b\xc4\xd9\x9e\xca\xb7\x8f\xfb\x9f\xc4\x61\xce\xd8\x97\xf9\xce\x59\x84\x4e\x41\x49\x41\xda\xd3\x0b\x6e\x4f\xb2\xb0\x82\x41\x3b\xf2\xec\x64\xe0\xcf\x64\x9a\x08\x1a\x0b\x7d\xc3\x26\x59\x95\x37\x4a\x2b\x9d\xe7\x4c\x64\x3e\x5b\xfa\xce\x76\x9c\x45\x45\x95\xf8\x97\x87\x76\x0a\xa3\x51\xbc\xc4\x32\xf2\x95\x61\x2f\xe6\x35\x40\xf2\xc4\x8c\x3c\x59\x0c\xdb\x96\xc9\x45\x76\xc4\x10\x6e\xa2\xeb\x8a\x00\x20\x45\x3d\x69\x3e\xa4\x58\x5a\x65\x90\x57\xcb\x91\x3e\x7a\x3e\x28\x3c\x87\xdd\x3a\x1f\x29\x14\x9e\xcd\xc0\x15\x3c\xbc\xfb\x38\x92\x0a\xa3\x8c\x3b\x84\x24\xab\x30\xa3\x23\x4d\x23\x7b\xd2\x61\x67\xfb\x0a\x3e\xad\xee\xc2\xfc\xc5\x8f\xcf\x23\x4c\x98\x9f\x2a\x8e\x4f\x1c\x9c\x38\x32\x63\xbd\x17\xa8\xa8\x82\xcd\x9b\x62\xb7\x9b\x98\x81\xed\xc0\x97\x82\x87\x2a\xc4\x2c\x73\xd1\x92\x36\x2a\x53\x6a\x42\xa1\xf7\xb2\xcd\x6b\x28\x5b\xe1\xf7\xea\x9d\x4c\x6f\xe5\x9a\x7c\xb7\xe4\x19\xa5\xb0\xce\xfd\x1c\x55\xfc\x1a\xf2\x8f\x2b\xff\xf3\xba\x5b\x67\x6a\xac\xa5\x92\x2c\xc9\x7f\x5b\xfd\x96\x90\x07\x47\xfe\x30\x38\x55\x45\x86\x57\x65\xe9\x57\x05\xf6\xf8\xd5\x68\x3c\xf9\x48\x73\xcf\xc6\x51\x11\xb7\x7e\x61\xdc\xb1\xf4\x67\xed\x89\x7d\x19\x69\xa2\x89\xb3\xa0\xe0\x67\xfe\xd6\xb3\xe8\x48\x7c\xf1\x43\x5f\xc1\xba\x59\xae\xd6\xf5\x66\xb7\x5a\xa1\xc0\xf5\xfa\xcd\x72\x37\xdf\x6e\x70\xb1\x9b\x37\xf5\x6a\xbe\xd8\xe2\x24\x52\x3a\xb0\xec\xf2\x58\x5e\x1e\x8e\xa3\x43\xdb\xc5\x5d\x77\x22\x79\xec\xd8\x83\x23\x6f\x06\x27\x28\xd5\x21\xea\x0f\x16\xb9\xab\xae\x63\xfa\xcb\x2c\xf2\x1a\xb8\xac\x8c\xc6\xea\xed\x6e\x76\x49\xa9\xb0\x29\x15\xe9\x0f\xe8\x44\x27\x9f\x46\x0f\x68\x8b\xca\x13\x4c\x41\xb6\xe0\x89\xef\xd2\x0a\x0f\x9d\xac\xd1\x53\xa8\x64\x7a\xe8\xc2\x21\xac\x7d\x0d\xd9\xc3\xb8\x99\x1d\x8d\x82\x1e\x67\x96\x04\xd1\x65\x43\xda\x30\x85\xf3\xc8\xb2\x95\x8a\xe2\x6f\x27\x7f\x61\xd9\xb7\xc5\x39\x49\xee\xf2\x1b\x3a\xbe\x3a\x5d\x78\xeb\xc7\x76\xb9\xbb\xc7\x65\xb3\xdd\xcd\x37\xeb\x37\xf7\x9b\x66\xdd\xac\xc4\x6e\x29\xee\x17\xf7\xeb\x25\xd5\xcb\xc5\x04\x99\x9d\xac\x07\x4e\x0f\x03\x3d\xb3\x43\xd0\xe9\x29\x86\x9b\x2e\xfa\xfe\x22\x75\x53\xc1\xc3\x7e\x9f\x93\x0b\xdf\x43\x80\x9a\x06\x87\xea\x6a\xf5\xea\x61\xbf\xbf\x83\xf7\xe1\xa3\x28\x8a\xd7\x69\xaa\xc2\x72\x96\xfa\x78\x68\x90\xd1\x13\x57\xf0\x77\x68\xc2\x9e\x38\x6c\xb1\x24\xbb\xfe\xfe\x8a\xdb\x2f\x1b\x44\xeb\x1e\xb5\x6c\xc9\xf3\x01\x07\xee\x8c\xab\x00\xeb\x66\x50\xcd\xe4\xdf\x00\x00\x00\xff\xff\xd3\xc6\xaa\x8b\x95\x0a\x00\x00"
func dpn_68_v10YmlBytes() ([]byte, error) {
return bindataRead(
_dpn_68_v10Yml,
"DPN_68_v1.0.yml",
)
}
func dpn_68_v10Yml() (*asset, error) {
bytes, err := dpn_68_v10YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "DPN_68_v1.0.yml", size: 2709, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _dpn_68_v20Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x4b\x6f\x1b\xbb\x0e\xde\xfb\x57\x10\xf0\xa6\xbd\x88\x67\xfc\x8e\x33\xc0\xbd\x8b\x9b\x02\xb7\x77\x63\x04\x45\x81\x2e\x8a\xc2\xe0\x68\x38\x1e\x9d\x6a\x24\x41\xe2\xc4\x71\x7f\xfd\x81\x1e\xb6\x27\xe8\x13\x27\x0b\x47\x26\x3f\x52\x7c\x7c\xa4\xac\xb1\xa7\x0a\xde\x3d\xed\x0f\xdb\xdd\xe1\x79\x59\xcc\x61\x0a\x41\x06\xa6\x85\xb3\x19\x1c\xf4\xa6\x21\x35\x69\x1d\xf6\x74\x32\xee\x6b\x35\x01\x00\x48\x56\x4f\xe7\x8f\xc6\x89\x0e\xa6\x70\x55\x43\x6b\x1c\x70\x47\xd9\x2c\x60\x9f\xc9\x79\x69\x74\x05\x8b\x62\xf9\x0a\x9a\x15\x20\x8c\xf6\xec\x50\x6a\x9e\x8c\xb0\x21\x90\x0b\x42\xea\xd6\xb8\x1e\x39\x9d\xc1\x53\x8f\x9a\xa5\xb8\xea\x93\x76\x22\x8c\x66\x94\x9a\x5c\x05\x53\xb8\x7e\xf1\x30\x78\x6a\x80\x0d\x58\x72\x01\x99\x62\x03\xeb\xa8\x91\x22\xf8\x8c\x61\x4e\xa1\x1f\x14\x4b\xab\x08\xac\x42\x0e\x40\x0f\x02\x35\xd4\x04\xde\x92\x90\xad\xa4\x26\x22\xb1\x6f\xb6\xeb\x54\x87\xf0\x27\xec\x50\x81\x43\x69\x9d\xf9\x8b\x04\x97\x02\x5d\xaf\x66\xf6\xcc\xa1\x36\x55\x04\xcf\x84\x1d\xae\xf8\xe3\x1f\xe0\x8f\x19\x6f\xad\xd8\xae\x15\xfd\xe9\x65\x19\x7e\x35\xff\xfd\x75\x63\x8b\x86\xbc\x70\xd2\x72\x6c\xc0\x7f\xa2\x83\x8f\x9d\xf4\xb9\x5c\xd2\x03\x82\x23\xab\xa4\x48\x8d\x30\xed\xad\xd1\x90\x6c\x6b\x6a\x42\x7f\x82\xf8\xdd\x80\x0a\x9e\x90\x3b\xd8\x13\x87\x76\x7b\xb0\x43\x7d\x31\x2e\xb2\x77\x0a\x5d\x98\xc5\xe6\x53\x93\x5d\xd1\x8b\x25\xc1\x1e\xa4\xb6\x03\x07\x77\xbd\xd4\x72\x56\x23\x8b\x8e\x7c\xb8\x75\x35\x13\x1d\x6a\x4d\x0a\x3e\xfc\xef\xbf\x20\x7b\x3c\x26\xb9\xef\xd0\x12\xbc\x59\xc1\x0b\xbc\x87\x17\xf8\xf4\xf6\x0e\x4e\x1d\x39\x82\xf7\x80\xba\x81\x4f\x80\x8e\xb2\xf7\xc4\x87\x9a\x60\xb9\x5c\x17\x31\x8e\xec\xa6\xc3\x67\xca\x2a\x65\xb0\xc9\xf9\x98\x90\x3a\xea\x63\x9c\x8a\xcf\xf3\x3b\x58\x7c\x89\x2e\xb9\x23\x0d\x3a\x90\x4f\xc9\x6f\xd4\xc0\xe0\xa5\x3e\x42\x4f\xa8\xe1\xdf\xf0\x79\xb1\x5c\x43\x09\xcb\xcd\xe6\x0e\x16\x8b\xfb\xeb\x71\x9e\xa5\xc9\x85\xe7\x26\x62\xa1\x84\x37\xc5\x7c\xb1\xbd\x87\x7f\x05\xe5\xdb\x3b\xf8\x13\xd1\x97\x89\xa3\x96\x1c\x69\x41\x3e\x90\xfe\xf6\x2d\xf2\x1d\x6d\xa0\x7f\x09\x27\xaa\xbd\x64\x0a\x47\x62\x51\x14\x97\x76\x85\x68\x5f\x0f\xeb\x0c\x3a\x66\xeb\xab\xb2\x3c\x4a\xee\x86\xba\x10\xa6\x2f\x1f\xb1\x21\x4d\xa5\x75\x94\x3b\x35\x8b\x06\xbe\xc8\x2c\x9a\x3a\xb2\xce\x34\x83\x90\xfa\x38\x73\xe4\x07\xc5\xfe\x9f\x7b\x2b\x6b\x65\xea\xb2\x47\xcf\xe4\x46\xa8\x04\x2a\xf3\xbf\xc6\xea\xc2\x9e\x7f\x7e\x89\x38\xdb\x53\xf9\xee\x69\xff\x8b\x38\xcc\x19\xfb\x32\xdf\x39\x8b\xd0\x29\x28\x29\x48\x7b\x7a\xc5\xed\x49\x16\x56\x30\x68\x47\x9e\x9d\x0c\xfc\x99\x4c\x13\x41\x63\xa1\x6f\xd8\x24\xab\xf2\x46\x69\xa5\xf3\x9c\x89\xcc\x67\x4b\x3f\xd8\x8e\xb3\xa8\xa8\x12\xff\xf2\xd0\x4e\x61\x34\x8a\x97\x58\x46\xbe\x32\xec\xd5\xbc\x06\x48\x9e\x98\x91\x27\x8b\x61\xdb\x32\xb9\xc8\x8e\x18\xc2\x4d\x74\x5d\x11\x00\xa4\xa8\x27\xcd\x87\x14\x4b\xab\x0c\xf2\x6a\x39\xd2\x47\xcf\x07\x85\xe7\xb0\x5b\xe7\x23\x85\xc2\xb3\x19\xb8\x82\xc7\xf7\x9f\x46\x52\x61\x94\x71\x87\x90\x64\x15\x66\x74\xa4\x69\x64\x4f\x3a\xec\x6c\x5f\xc1\xe7\xd5\x5d\x98\xbf\xf8\xf1\x65\x84\x09\xf3\x53\xc5\xf1\x89\x83\x13\x47\x66\xac\xf7\x02\x15\x55\xb0\x79\x28\x76\xbb\x89\x19\xd8\x0e\x7c\x29\x78\xa8\x42\xcc\x32\x17\x2d\x69\xa3\x32\xa5\x26\x14\x7a\x2f\xdb\xbc\x86\xb2\x15\xfe\xa8\xde\xc9\xf4\x56\xae\xc9\x0f\x4b\x9e\x51\x0a\xeb\xdc\xcf\x51\xc5\xaf\x21\xff\xbc\xf2\xbf\xae\xbb\x75\xa6\xc6\x5a\x2a\xc9\x92\xfc\xf7\xd5\x6f\x09\x79\x70\xe4\x0f\x83\x53\x55\x64\x78\x55\x96\x7e\x55\x60\x8f\xdf\x8c\xc6\x93\x8f\x34\xf7\x6c\x1c\x15\x71\xeb\x17\xc6\x1d\x4b\x7f\xd6\x9e\xd8\x97\x91\x26\x9a\x38\x0b\x0a\x7e\xe1\xef\x3d\x8b\x8e\xc4\x57\x3f\xf4\x15\xac\x9b\xe5\x6a\x5d\x6f\x76\xab\x15\x0a\x5c\xaf\x1f\x96\xbb\xf9\x76\x83\x8b\xdd\xbc\xa9\x57\xf3\xc5\x16\x27\x91\xd2\x81\x65\x97\xc7\xf2\xf2\x70\x1c\x1d\xda\x2e\xee\xba\x13\xc9\x63\xc7\x1e\x1c\x79\x33\x38\x41\xa9\x0e\x51\x7f\xb0\xc8\x5d\x75\x1d\xd3\xdf\x66\x91\xd7\xc0\x65\x65\x34\x56\x6f\x77\xf5\xec\x92\x53\x61\x53\x2e\xd2\x1f\xd0\x89\x4e\x3e\x8f\x5e\xd0\x16\x95\x27\x98\x82\x6c\xc1\x13\xdf\xa5\x1d\x1e\x5a\x59\xa3\xa7\x50\xca\xf4\xd2\x85\x43\xd8\xfb\x1a\xb2\x87\x71\x37\x3b\x1a\x45\x3d\x4e\x2d\x09\xa2\xcb\x86\xb4\x61\x0a\xe7\x91\x65\x2b\x15\xc5\x1f\x4f\xfe\x42\xb3\xef\xab\x73\x92\xdc\xe5\x47\x74\x7c\x75\xba\xf0\xd6\x90\x87\x45\xb3\x79\xc0\x7b\xb1\xd8\xce\xc5\x62\xbb\xbc\x5f\xef\x9a\x1a\x77\x0f\xf5\x6a\xb3\x7d\x98\xd7\xcd\xfd\x04\x99\x9d\xac\x07\x4e\x2f\x03\xbd\xb0\x43\xd0\xe9\x2d\x86\x9b\x2e\xfa\xfe\x2a\x75\x53\xc1\xe3\x7e\x9f\x93\x0b\xdf\x43\x80\x9a\x06\x87\xea\x6a\xf5\xe6\x71\xbf\xbf\x83\x0f\xe1\xa3\x28\x8a\xb7\x69\xac\xc2\x76\x96\xfa\x78\x68\x90\xd1\x13\x57\xf0\xff\xd0\x84\x3d\x71\x58\x63\x49\x76\xfd\x01\x16\xd7\x5f\x36\x88\xd6\x3d\x6a\xd9\x92\xe7\x03\x0e\xdc\x19\x57\x01\xd6\xcd\xa0\x9a\xc9\xdf\x01\x00\x00\xff\xff\x36\xb1\x03\xdf\x96\x0a\x00\x00"
func dpn_68_v20YmlBytes() ([]byte, error) {
return bindataRead(
_dpn_68_v20Yml,
"DPN_68_v2.0.yml",
)
}
func dpn_68_v20Yml() (*asset, error) {
bytes, err := dpn_68_v20YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "DPN_68_v2.0.yml", size: 2710, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _dpn_92Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x4b\x8f\xdb\xb8\x0f\xbf\xe7\x53\x10\xc8\xa5\xfd\x23\xb1\xf3\x9c\x66\x0c\xfc\xf7\xb0\x53\x60\xbb\x97\x60\x50\x14\xe8\xa1\x28\x02\x5a\xa6\x63\x6d\x65\x49\x90\xe8\x66\xd2\x4f\xbf\xd0\x23\x89\x07\x7d\x0d\x76\x0e\x19\x9b\xfc\x91\xe2\xe3\x47\xca\x1a\x7b\xaa\xe0\xed\xe3\xfe\x70\xbf\x82\x29\x84\x57\x30\x2d\x9c\xcd\xe0\xa0\x37\x0d\xa9\x49\xeb\xb0\xa7\x93\x71\x5f\xaa\x09\x00\x40\x32\x78\x3c\x7f\x30\x4e\x74\x30\x85\xab\x1a\x5a\xe3\x80\x3b\xca\x66\x01\xfb\x95\x9c\x97\x46\x57\xb0\x2c\x56\xcf\xa0\x59\x01\xc2\x68\xcf\x0e\xa5\xe6\xc9\x08\xbb\x80\xe9\x15\x21\x75\x6b\x5c\x8f\x9c\x9e\xc1\x53\x8f\x9a\xa5\xb8\xea\x93\x76\x22\x8c\x66\x94\x9a\x5c\x05\x53\xb8\xbe\x78\x18\x3c\x35\xc0\x06\x2c\xb9\x80\x4c\xb1\x81\x75\xd4\x48\x11\x7c\xc6\x30\xa7\xd0\x0f\x8a\xa5\x55\x04\x56\x21\x07\xa0\x07\x81\x1a\x6a\x02\x6f\x49\xc8\x56\x52\x13\x91\xd8\x37\x77\x9b\x54\x87\xf0\x27\xec\x50\x81\x43\x69\x9d\xf9\x87\x04\x97\x02\x5d\xaf\xe6\xf6\xcc\xa1\x36\x55\x04\xcf\x85\x1d\xae\xf8\xe3\x0b\xf0\xc7\x8c\xb7\x56\xdc\x6d\x14\xbd\xf4\xb0\x0c\xbf\x9a\xff\xfe\xb8\xb1\x45\x43\x5e\x38\x69\x39\x36\xe0\x8f\xe8\xe0\x43\x27\x7d\x2e\x97\xf4\x80\xe0\xc8\x2a\x29\x52\x23\x4c\x7b\x6b\x34\x24\xdb\x9a\x9a\xd0\x9f\x20\x7e\x3b\xa0\x82\x47\xe4\x0e\xf6\xc4\xa1\xdd\x1e\xec\x50\x5f\x8c\x8b\xec\x9d\x42\x17\xe6\xb1\xf9\xd4\x64\x57\xf4\x64\x49\xb0\x07\xa9\xed\xc0\xc1\x5d\x2f\xb5\x9c\xd7\xc8\xa2\x23\x1f\x4e\x5d\xcf\x45\x87\x5a\x93\x82\xf7\x7f\xfd\x09\xb2\xc7\x63\x92\xfb\x0e\x2d\xc1\xab\x35\x3c\xc1\x3b\x78\x82\x8f\xaf\x67\x70\xea\xc8\x11\xbc\x03\xd4\x0d\x7c\x04\x74\x94\xbd\x27\x3e\xd4\x04\xab\xd5\xa6\x88\x71\x64\x37\x1d\x7e\xa5\xac\x52\x06\x9b\x9c\x8f\x09\xa9\xa3\x3e\xc6\xa9\xf8\xb4\x98\xc1\xf2\x73\x74\xc9\x1d\x69\xd0\x81\x7c\x4a\x7e\xa3\x06\x06\x2f\xf5\x11\x7a\x42\x0d\xff\x87\x4f\xcb\xd5\x06\x4a\x58\x6d\xb7\x33\x58\x2e\xdf\x5c\x1f\x17\x59\x9a\x5c\x78\x6e\x22\x16\x4a\x78\x55\x2c\x96\x77\x6f\xe0\x7f\x41\xf9\x7a\x06\x2f\x11\x7d\x9e\x38\x6a\xc9\x91\x16\xe4\x03\xe9\x6f\x6f\x91\xef\x68\x03\xfd\x4b\x38\x51\xed\x25\x53\x78\x24\x16\x45\x71\x69\x57\x88\xf6\xf9\xb0\xce\xa1\x63\xb6\xbe\x2a\xcb\xa3\xe4\x6e\xa8\x0b\x61\xfa\xf2\x01\x1b\xd2\x54\x5a\x47\xb9\x53\xf3\x68\xe0\x8b\xcc\xa2\xa9\x23\xeb\x4c\x33\x08\xa9\x8f\x73\x47\x7e\x50\xec\xff\xbb\xb7\xb2\x56\xa6\x2e\x7b\xf4\x4c\x6e\x84\x4a\xa0\x32\xff\x6b\xac\x2e\xec\xf9\xe7\x87\x88\xb3\x3d\x95\x6f\x1f\xf7\xbf\x88\xc3\x9c\xb1\x2f\xf3\x99\xf3\x08\x9d\x82\x92\x82\xb4\xa7\x67\xdc\x9e\x64\x61\x05\x83\x76\xe4\xd9\xc9\xc0\x9f\xc9\x34\x11\x34\x16\xfa\x86\x4d\xb2\x2a\x6f\x94\x56\x3a\xcf\x99\xc8\x7c\xb6\xf4\x83\xed\x38\x8f\x8a\x2a\xf1\x2f\x0f\xed\x14\x46\xa3\x78\x89\x65\xe4\x2b\xc3\x9e\xcd\x6b\x80\xe4\x89\x19\x79\xb2\x18\xb6\x2d\x93\x8b\xec\x88\x21\xdc\x44\xd7\x15\x01\x40\x8a\x7a\xd2\x7c\x48\xb1\xb4\xca\x20\xaf\x57\x23\x7d\xf4\x7c\x50\x78\x0e\xbb\x75\x31\x52\x28\x3c\x9b\x81\x2b\x78\x78\xf7\x71\x24\x15\x46\x19\x77\x08\x49\x56\x61\x46\x47\x9a\x46\xf6\xa4\xc3\xce\xf6\x15\x7c\x5a\xcf\xc2\xfc\xc5\x9f\xcf\x23\x4c\x98\x9f\x2a\x8e\x4f\x1c\x9c\x38\x32\x63\xbd\x17\xa8\xa8\x82\xed\x7d\xb1\xdb\x4d\xcc\xc0\x76\xe0\x4b\xc1\x43\x15\x62\x96\xb9\x68\x49\x1b\x95\x29\x35\xa1\xd0\x7b\xd9\xe6\x35\x94\xad\xf0\x47\xf5\x4e\xa6\xb7\x72\x4d\x7e\x58\xf2\x8c\x52\x58\xe7\x7e\x8e\x2a\x7e\x0d\xf9\xe7\x95\xff\x75\xdd\xad\x33\x35\xd6\x52\x49\x96\xe4\xbf\xaf\x7e\x4b\xc8\x83\x23\x7f\x18\x9c\xaa\x22\xc3\xab\xb2\xf4\xeb\x02\x7b\xfc\x66\x34\x9e\x7c\xa4\xb9\x67\xe3\xa8\x88\x5b\xbf\x30\xee\x58\xfa\xb3\xf6\xc4\xbe\x8c\x34\xd1\xc4\x59\x50\xf0\x13\x7f\xef\x59\x74\x24\xbe\xf8\xa1\xaf\x60\xd3\xac\xd6\x9b\x7a\xbb\x5b\xaf\x51\xe0\x66\x73\xbf\xda\x2d\xee\xb6\xb8\xdc\x2d\x9a\x7a\xbd\x58\xde\xe1\x24\x52\x3a\xb0\xec\x72\x59\x5e\x2e\x8e\xa3\x43\xdb\xc5\x5d\x77\x22\x79\xec\xd8\x83\x23\x6f\x06\x27\x28\xd5\x21\xea\x0f\x16\xb9\xab\xae\x63\xfa\xdb\x2c\xf2\x1a\xb8\xac\x8c\xc6\xea\xfb\xd5\xfc\x92\x52\x61\x53\x2a\xd2\x1f\xd0\x89\x4e\x7e\x1d\x5d\xa0\x2d\x2a\x4f\x30\x05\xd9\x82\x27\x9e\xa5\x15\x1e\x3a\x59\xa3\xa7\x50\xc9\x74\xd1\x85\x87\xb0\xf6\x35\x64\x0f\xe3\x66\x76\x34\x0a\x7a\x9c\x59\x12\x44\x97\x0d\x69\xc3\x14\x9e\x47\x96\xad\x54\x14\xbf\x9d\xfc\x85\x65\xdf\x17\xe7\x24\xb9\xcb\x77\xe8\xf8\xe8\x74\xe0\xad\x1f\xdb\xdd\x76\xb9\xae\x9b\x25\xd2\x7a\xdb\x2e\x57\x8b\x76\xbd\xd8\x12\x35\xbb\xcd\xe2\xcd\x7a\x83\xcd\x72\x82\xcc\x4e\xd6\x03\xa7\x8b\x81\x9e\xd8\x21\xe8\x74\x15\xc3\x4d\x17\x7d\x7f\x91\xba\xa9\xe0\x61\xbf\xcf\xc9\x85\xf7\x10\xa0\xa6\xc1\xa1\xba\x5a\xbd\x7a\xd8\xef\x67\xf0\x3e\xfc\x14\x45\xf1\x3a\x4d\x55\x58\xce\x52\x1f\x0f\x0d\x32\x7a\xe2\x0a\xfe\x0e\x4d\xd8\x13\x87\x2d\x96\x64\xd7\xef\xaf\xb8\xfd\xb2\x41\xb4\xee\x51\xcb\x96\x3c\x1f\x70\xe0\xce\xb8\x0a\xb0\x6e\x06\xd5\x4c\xfe\x0d\x00\x00\xff\xff\x67\x3d\xc5\x20\x90\x0a\x00\x00"
func dpn_92YmlBytes() ([]byte, error) {
return bindataRead(
_dpn_92Yml,
"DPN_92.yml",
)
}
func dpn_92Yml() (*asset, error) {
bytes, err := dpn_92YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "DPN_92.yml", size: 2704, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _dpn_98Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x4b\x8f\xdb\xb8\x0f\xbf\xe7\x53\x10\xc8\xa5\xfd\x23\xb1\xf3\x9a\x4c\xc6\xc0\x7f\x0f\x3b\x05\xb6\x7b\x09\x06\x45\x81\x1e\x8a\x22\xa0\x65\x3a\xd6\x56\x96\x04\x89\x6e\x26\xfd\xf4\x0b\x3d\x92\x78\xd0\x27\x76\x0e\x19\x9b\xfc\x91\xe2\xe3\x47\xca\x1a\x7b\xaa\xe0\xcd\xd3\xfe\xf0\xb0\x83\x29\x84\x57\x30\x2d\x9c\xcd\xe0\xa0\x37\x0d\xa9\x49\xeb\xb0\xa7\x93\x71\x9f\xab\x09\x00\x40\x32\x78\x3a\xbf\x37\x4e\x74\x30\x85\xab\x1a\x5a\xe3\x80\x3b\xca\x66\x01\xfb\x85\x9c\x97\x46\x57\xb0\x2c\x56\x2f\xa0\x59\x01\xc2\x68\xcf\x0e\xa5\xe6\xc9\x08\xbb\x80\xe9\x15\x21\x75\x6b\x5c\x8f\x9c\x9e\xc1\x53\x8f\x9a\xa5\xb8\xea\x93\x76\x22\x8c\x66\x94\x9a\x5c\x05\x53\xb8\xbe\x78\x18\x3c\x35\xc0\x06\x2c\xb9\x80\x4c\xb1\x81\x75\xd4\x48\x11\x7c\xc6\x30\xa7\xd0\x0f\x8a\xa5\x55\x04\x56\x21\x07\xa0\x07\x81\x1a\x6a\x02\x6f\x49\xc8\x56\x52\x13\x91\xd8\x37\xdb\x4d\xaa\x43\xf8\x13\x76\xa8\xc0\xa1\xb4\xce\xfc\x43\x82\x4b\x81\xae\x57\x73\x7b\xe6\x50\x9b\x2a\x82\xe7\xc2\x0e\x57\xfc\xf1\x37\xf0\xc7\x8c\xb7\x56\x6c\x37\x8a\x7e\xf7\xb0\x0c\xbf\x9a\xff\xfa\xb8\xb1\x45\x43\x5e\x38\x69\x39\x36\xe0\x8f\xe8\xe0\x7d\x27\x7d\x2e\x97\xf4\x80\xe0\xc8\x2a\x29\x52\x23\x4c\x7b\x6b\x34\x24\xdb\x9a\x9a\xd0\x9f\x20\x7e\x33\xa0\x82\x27\xe4\x0e\xf6\xc4\xa1\xdd\x1e\xec\x50\x5f\x8c\x8b\xec\x9d\x42\x17\xe6\xb1\xf9\xd4\x64\x57\xf4\x6c\x49\xb0\x07\xa9\xed\xc0\xc1\x5d\x2f\xb5\x9c\xd7\xc8\xa2\x23\x1f\x4e\x5d\xcf\x45\x87\x5a\x93\x82\x77\x7f\xfd\x09\xb2\xc7\x63\x92\xfb\x0e\x2d\xc1\xab\x35\x3c\xc3\x5b\x78\x86\x0f\xaf\x67\x70\xea\xc8\x11\xbc\x05\xd4\x0d\x7c\x00\x74\x94\xbd\x27\x3e\xd4\x04\xab\xd5\xa6\x88\x71\x64\x37\x1d\x7e\xa1\xac\x52\x06\x9b\x9c\x8f\x09\xa9\xa3\x3e\xc6\xa9\xf8\xb8\x98\xc1\xf2\x53\x74\xc9\x1d\x69\xd0\x81\x7c\x4a\x7e\xa5\x06\x06\x2f\xf5\x11\x7a\x42\x0d\xff\x87\x8f\xcb\xd5\x06\x4a\x58\xdd\xdd\xcd\x60\xb9\xbc\xbf\x3e\x2e\xb2\x34\xb9\xf0\xdc\x44\x2c\x94\xf0\xaa\x58\x2c\xb7\xf7\xf0\xbf\xa0\x7c\x3d\x83\xdf\x11\x7d\x9a\x38\x6a\xc9\x91\x16\xe4\x03\xe9\x6f\x6f\x91\xef\x68\x03\xfd\x4b\x38\x51\xed\x25\x53\x78\x24\x16\x45\x71\x69\x57\x88\xf6\xe5\xb0\xce\xa1\x63\xb6\xbe\x2a\xcb\xa3\xe4\x6e\xa8\x0b\x61\xfa\xf2\x11\x1b\xd2\x54\x5a\x47\xb9\x53\xf3\x68\xe0\x8b\xcc\xa2\xa9\x23\xeb\x4c\x33\x08\xa9\x8f\x73\x47\x7e\x50\xec\xff\xbb\xb7\xb2\x56\xa6\x2e\x7b\xf4\x4c\x6e\x84\x4a\xa0\x32\xff\x6b\xac\x2e\xec\xf9\xc7\x87\x88\xb3\x3d\x95\x6f\x9e\xf6\x3f\x89\xc3\x9c\xb1\x2f\xf3\x99\xf3\x08\x9d\x82\x92\x82\xb4\xa7\x17\xdc\x9e\x64\x61\x05\x83\x76\xe4\xd9\xc9\xc0\x9f\xc9\x34\x11\x34\x16\xfa\x86\x4d\xb2\x2a\x6f\x94\x56\x3a\xcf\x99\xc8\x7c\xb6\xf4\x9d\xed\x38\x8f\x8a\x2a\xf1\x2f\x0f\xed\x14\x46\xa3\x78\x89\x65\xe4\x2b\xc3\x5e\xcc\x6b\x80\xe4\x89\x19\x79\xb2\x18\xb6\x2d\x93\x8b\xec\x88\x21\xdc\x44\xd7\x15\x01\x40\x8a\x7a\xd2\x7c\x48\xb1\xb4\xca\x20\xaf\x57\x23\x7d\xf4\x7c\x50\x78\x0e\xbb\x75\x31\x52\x28\x3c\x9b\x81\x2b\x78\x7c\xfb\x61\x24\x15\x46\x19\x77\x08\x49\x56\x61\x46\x47\x9a\x46\xf6\xa4\xc3\xce\xf6\x15\x7c\x5c\xcf\xc2\xfc\xc5\x9f\x4f\x23\x4c\x98\x9f\x2a\x8e\x4f\x1c\x9c\x38\x32\x63\xbd\x17\xa8\xa8\x82\xbb\x87\x62\xb7\x9b\x98\x81\xed\xc0\x97\x82\x87\x2a\xc4\x2c\x73\xd1\x92\x36\x2a\x53\x6a\x42\xa1\xf7\xb2\xcd\x6b\x28\x5b\xe1\xf7\xea\x9d\x4c\x6f\xe5\x9a\x7c\xb7\xe4\x19\xa5\xb0\xce\xfd\x1c\x55\xfc\x1a\xf2\x8f\x2b\xff\xf3\xba\x5b\x67\x6a\xac\xa5\x92\x2c\xc9\x7f\x5b\xfd\x96\x90\x07\x47\xfe\x30\x38\x55\x45\x86\x57\x65\xe9\xd7\x05\xf6\xf8\xd5\x68\x3c\xf9\x48\x73\xcf\xc6\x51\x11\xb7\x7e\x61\xdc\xb1\xf4\x67\xed\x89\x7d\x19\x69\xa2\x89\xb3\xa0\xe0\x67\xfe\xd6\xb3\xe8\x48\x7c\xf6\x43\x5f\xc1\xa6\x59\xad\x37\xf5\xdd\x6e\xbd\x46\x81\x9b\xcd\xc3\x6a\xb7\xd8\xde\xe1\x72\xb7\x68\xea\xf5\x62\xb9\xc5\x49\xa4\x74\x60\xd9\xe5\xb2\xbc\x5c\x1c\x47\x87\xb6\x8b\xbb\xee\x44\xf2\xd8\xb1\x07\x47\xde\x0c\x4e\x50\xaa\x43\xd4\x1f\x2c\x72\x57\x5d\xc7\xf4\x97\x59\xe4\x35\x70\x59\x19\x8d\xd5\x0f\xbb\xf9\x25\xa5\xc2\xa6\x54\xa4\x3f\xa0\x13\x9d\xfc\x32\xba\x40\x5b\x54\x9e\x60\x0a\xb2\x05\x4f\x3c\x4b\x2b\x3c\x74\xb2\x46\x4f\xa1\x92\xe9\xa2\x0b\x0f\x61\xed\x6b\xc8\x1e\xc6\xcd\xec\x68\x14\xf4\x38\xb3\x24\x88\x2e\x1b\xd2\x86\x29\x3c\x8f\x2c\x5b\xa9\x28\x7e\x3b\xf9\x0b\xcb\xbe\x2d\xce\x49\x72\x97\xef\xd0\xf1\xd1\xe9\xc0\x5b\x3f\xb6\xbb\xc5\xf6\x7e\x73\xb7\x5a\xae\x5b\xd1\xdc\xd7\xed\x82\x48\xdc\x2f\xeb\x96\xb6\x0f\xcd\x6e\xd7\xb4\x13\x64\x76\xb2\x1e\x38\x5d\x0c\xf4\xcc\x0e\x41\xa7\xab\x18\x6e\xba\xe8\xfb\xb3\xd4\x4d\x05\x8f\xfb\x7d\x4e\x2e\xbc\x87\x00\x35\x0d\x0e\xd5\xd5\xea\xd5\xe3\x7e\x3f\x83\x77\xe1\xa7\x28\x8a\xd7\x69\xaa\xc2\x72\x96\xfa\x78\x68\x90\xd1\x13\x57\xf0\x77\x68\xc2\x9e\x38\x6c\xb1\x24\xbb\x7e\x7f\xc5\xed\x97\x0d\xa2\x75\x8f\x5a\xb6\xe4\xf9\x80\x03\x77\xc6\x55\x80\x75\x33\xa8\x66\xf2\x6f\x00\x00\x00\xff\xff\x25\x16\x89\x29\x90\x0a\x00\x00"
func dpn_98YmlBytes() ([]byte, error) {
return bindataRead(
_dpn_98Yml,
"DPN_98.yml",
)
}
func dpn_98Yml() (*asset, error) {
bytes, err := dpn_98YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "DPN_98.yml", size: 2704, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _inception_resnet_v20Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x4d\x6f\xdb\x38\x13\xbe\xfb\x57\x0c\xe0\x4b\x0b\xc4\x92\xbf\xe2\x24\x02\xde\xf7\xb0\x39\x6c\x7b\x09\x16\x45\x81\x1e\x82\xc2\x18\x91\x23\x8b\x5b\x8a\x24\xc8\x51\x12\xf7\xd7\x2f\xf8\x61\x5b\xdd\x64\xb7\xc5\xfa\x20\x4b\x9c\x67\x86\xc3\x67\x9e\x19\xc9\xe0\x40\x0d\x7c\x34\x82\x1c\x2b\x6b\xf6\x9f\x28\x3c\x10\xef\x9f\xd6\xd5\x12\xe6\x10\xad\x60\x3b\x38\xda\xd1\xc3\x60\x25\xe9\x59\xe7\x71\xa0\x67\xeb\xbf\x35\x33\x00\x80\xec\xff\xc7\xf1\xb3\xf5\xa2\x87\x39\x9c\xcd\xd0\x59\x0f\xdc\x53\x71\x8b\xd8\x27\xf2\x41\x59\xd3\xc0\xaa\x5a\xff\x00\x2d\x06\x10\xd6\x04\xf6\xa8\x0c\xcf\x26\xd8\x98\xc8\x09\xa1\x4c\x67\xfd\x80\x9c\xef\x21\xd0\x80\x86\x95\x38\xdb\xb3\x75\x26\xac\x61\x54\x86\x7c\x03\x73\x38\x3f\x04\x18\x03\x49\x60\x0b\x8e\x7c\x44\xe6\xdc\xc0\x79\x92\x4a\xc4\x98\x29\xcd\x39\x0c\xa3\x66\xe5\x34\x81\xd3\xc8\x11\x18\x40\xa0\x81\x96\x20\x38\x12\xaa\x53\x24\x13\x12\x07\xb9\xdb\x66\x1e\xe2\x4f\xb8\xb1\x01\x8f\xca\x79\xfb\x27\x09\xae\x05\xfa\x41\x2f\xdc\x91\x23\x37\x4d\x02\x2f\x84\x1b\xcf\xf8\xc3\x2f\xe0\x0f\x05\xef\x9c\xd8\x6d\x35\xfd\xea\x66\x05\x7e\x76\xff\xf9\x76\x53\x0f\x49\x41\x78\x95\x04\xd1\xc0\xff\x53\x80\xcf\x3d\x45\x9e\x16\xa9\x3c\x24\x0b\x73\xf4\xe2\x48\x70\x00\x65\xdc\xc8\xb1\x20\x83\x32\x6a\xd1\x22\x8b\x9e\x42\x14\xce\x66\x21\x7a\x34\x86\x34\x7c\xfa\xfd\x37\x50\x03\x1e\xf2\x7a\xe8\xd1\x11\xbc\xdb\xc0\x0b\x7c\x80\x17\xf8\xf2\xfe\x0a\x9e\x7b\xf2\x04\x1f\x00\x8d\x84\x2f\x80\x9e\x4a\xf4\x5c\xb1\x96\x60\x7d\x77\x57\xa5\x3c\x4a\x98\x1e\x9f\xa8\x98\xb4\x45\x49\x32\x26\xc0\x16\x10\x3c\x9a\x43\xd2\xed\xe3\xf2\x0a\x56\x5f\x53\x48\xee\xc9\x80\x89\xf2\xd0\xea\x3b\x49\x18\x83\x32\x07\x18\x08\x0d\xfc\x0f\x1e\x97\xd5\xf5\x15\x9c\x2e\xd9\x21\xb0\x7c\x6d\x99\x79\xea\xc8\x93\x11\x14\xa2\xb4\x2e\x4f\x49\x55\xe8\xa2\xc8\x6a\x78\xa6\x36\x28\xa6\x78\x4b\x2c\xaa\x0a\x32\xa1\x6d\xdc\xf1\xc7\x96\x58\x40\xcf\xec\x42\x53\xd7\x07\xc5\xfd\xd8\x56\xc2\x0e\xf5\x3d\x4a\x32\x54\x3b\x4f\x85\xed\x45\x72\x08\x55\xa9\xd5\xdc\x93\xf3\x56\x8e\x42\x99\xc3\xc2\x53\x18\x35\x87\xff\x1e\xad\x6e\xb5\x6d\xeb\x01\x03\x93\x9f\xa0\x32\xa8\x2e\x7f\xea\x34\x20\x3c\x05\x43\xfc\xb4\xae\xdc\xf1\x6f\x5b\xa2\x7f\x51\x4f\x95\xf5\x87\x1a\xdb\x50\xaf\x76\xcb\x75\xb5\xbc\x59\xef\x56\xb3\x39\x68\x25\xc8\x84\x54\x91\xcb\xf1\xcb\x62\x03\x63\x0c\xca\x5e\xc5\x52\xcf\xe6\x59\x4b\x89\xcf\x0b\x36\xaf\x35\xa5\x3d\x3b\xe5\x03\x17\xcd\xf1\xd1\xd1\x1b\xa3\x66\x91\x0c\x4d\x96\x4a\xe9\x80\x39\x4c\x74\x7d\xca\x65\x12\xab\xc0\x7e\x10\x7f\x84\x14\x71\x4f\x22\x39\x8c\xa3\x8b\xc9\x27\x11\xa4\x14\x2e\x4b\xe7\x7e\x03\x20\x4d\x03\x19\xde\xe7\x5c\x3a\x6d\x91\x37\xeb\x89\x3d\x45\xde\x6b\x3c\xc6\x41\xb5\x9c\x18\x34\x1e\xed\xc8\x0d\xdc\x7f\xf8\x32\x59\x15\x56\x5b\xbf\x8f\x87\x6c\x62\x3b\x4d\x2c\x52\x0d\x64\xe2\x00\x0c\x0d\x3c\x6e\xae\x62\xab\xa4\xcb\xd7\x09\x26\x4a\xbd\x81\xc7\xd5\xfa\x26\x8a\x79\xfa\x37\x45\x05\x81\x9a\x9a\xbc\x3e\xb3\x23\xbb\x91\x4f\xb4\x47\x2e\xd2\x59\x0b\x75\xd9\x9a\x8c\xf9\x80\x42\x63\x08\xaa\x53\x02\x27\xb3\x14\xdf\x62\x3d\xbb\x5e\x48\x9b\xbd\x49\x7c\x41\x69\x6c\x4b\x55\x27\xbc\x9f\x53\xfe\x67\xfe\xff\x9d\x7d\xe7\x6d\x8b\xad\xd2\x8a\x15\x85\xd7\x35\xe8\x08\x79\xf4\x14\xf6\xa3\xd7\x4d\xd2\x78\x53\xd7\x61\x53\xe1\x80\xdf\xad\xc1\xe7\x90\x7a\x2b\xb0\xf5\x54\xa5\x41\x9a\x94\x1f\x8e\x26\x10\x87\x3a\x89\xc5\x10\x97\x85\x8a\x5f\xf8\x75\x64\xd1\x93\xf8\x16\xc6\xa1\x81\xad\x5c\x6f\xb6\xed\xf5\xed\x66\x83\x02\xb7\xdb\xbb\xf5\xed\x72\x77\x8d\xab\xdb\xa5\x6c\x37\xcb\xd5\x0e\x67\x49\xd8\x51\x6b\xa7\xf7\x4f\x28\x03\xf8\xe0\xd1\xf5\x69\x5c\x3d\x93\x3a\xf4\x1c\xc0\x53\xb0\xa3\x17\x94\x79\x48\xf6\xbd\x43\xee\x9b\x73\xa3\xfe\xf4\x14\xa5\xe7\x4f\xf3\xe1\x55\xef\x2f\x4e\xc7\xab\x5c\x3e\x96\x0a\x7b\xf4\xa2\x57\x4f\x93\xf7\x53\x87\x3a\x10\xcc\x41\x75\x10\x88\xaf\xf2\xfc\x8d\x55\x6d\x31\x50\x64\x15\x54\x00\x84\x78\x13\x67\xb6\x81\x12\x61\x5a\xd8\x9e\x26\x07\x98\x9e\x32\x2f\xa4\x90\x92\x8c\x65\x8a\xf7\x13\xcf\x4e\x69\x4a\x9f\x26\xe1\xa4\xb8\xd7\x44\x3d\x2b\xee\x55\x4e\x69\xba\x75\xde\xf0\x52\x9b\xeb\xdd\x76\xd3\xde\x0a\x29\xe8\x86\xf0\x06\x49\xae\x6e\xf1\x86\xae\xbb\xcd\xdd\x6e\x29\xda\x4d\x3b\x43\x66\xaf\xda\x91\xf3\x1b\x81\x5e\xd8\x23\x18\xe2\xf4\x61\x73\xb1\xa5\xd8\xdf\x94\x91\x0d\xdc\x3f\x3c\x94\xc3\xc5\xe7\x98\xa0\xa1\xd1\xa3\x3e\x7b\xbd\xbb\x7f\x78\xb8\x82\x4f\xf1\x52\x55\xd5\xfb\xdc\x61\x71\x2a\x2b\x73\xd8\x4b\x64\x0c\xc4\x0d\x7c\x8c\x45\x78\x20\x8e\x73\x2d\xaf\x9d\x3f\x6f\xd2\x3c\x2c\x0e\xc9\x7b\x40\xa3\x3a\x0a\xbc\xc7\x91\x7b\xeb\x1b\xc0\x56\x8e\x5a\xce\xfe\x0a\x00\x00\xff\xff\xad\x22\x56\xdd\xfe\x09\x00\x00"
func inception_resnet_v20YmlBytes() ([]byte, error) {
return bindataRead(
_inception_resnet_v20Yml,
"Inception_ResNet_v2.0.yml",
)
}
func inception_resnet_v20Yml() (*asset, error) {
bytes, err := inception_resnet_v20YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "Inception_ResNet_v2.0.yml", size: 2558, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _inception_v30Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x4d\x6f\xdb\x38\x10\xbd\xfb\x57\x0c\xe0\x4b\x0b\xc4\x92\x63\x39\x4e\x2a\x60\xf7\xb0\x39\x6c\x7b\x09\x16\x45\x81\x1e\x82\xc2\x18\x91\x23\x8b\x5b\x8a\x24\xc8\x51\x12\xf7\xd7\x2f\xf8\x61\x5b\x45\xba\xdb\x62\x7d\x90\x25\xce\x9b\xe1\xf0\xcd\x9b\x91\x0c\x8e\xd4\xc2\x07\x23\xc8\xb1\xb2\x66\xff\xd4\x54\x6b\x58\x42\x5c\x06\xdb\xc3\xd1\x4e\x1e\x46\x2b\x49\x2f\x7a\x8f\x23\x3d\x5b\xff\xb5\x5d\x00\x00\x64\xc7\xbf\x8e\x9f\xac\x17\x03\x2c\xe1\x6c\x86\xde\x7a\xe0\x81\x8a\x5b\xc4\x3e\x91\x0f\xca\x9a\x16\xae\xab\xcd\x77\xd0\x62\x00\x61\x4d\x60\x8f\xca\xf0\x62\x86\x8d\x89\x9c\x10\xca\xf4\xd6\x8f\xc8\xf9\x1e\x02\x8d\x68\x58\x89\xb3\x3d\x5b\x17\xc2\x1a\x46\x65\xc8\xb7\xb0\x84\xf3\x43\x80\x29\x90\x04\xb6\xe0\xc8\x47\x64\xce\x0d\x9c\x27\xa9\x44\x8c\x99\xd2\x5c\xc2\x38\x69\x56\x4e\x13\x38\x8d\x1c\x81\x01\x04\x1a\xe8\x08\x82\x23\xa1\x7a\x45\x32\x21\x71\x94\xbb\x6d\xe6\x21\xfe\x84\x9b\x5a\xf0\xa8\x9c\xb7\x7f\x93\xe0\x5a\xa0\x1f\xf5\xca\x1d\x39\x72\xd3\x26\xf0\x4a\xb8\xe9\x8c\x3f\xfc\x02\xfe\x50\xf0\xce\x89\xdd\x56\xd3\xaf\x6e\x56\xe0\x67\xf7\x9f\x6f\x37\xf7\x90\x14\x84\x57\x49\x09\x2d\xfc\x9e\x02\x7c\x1a\x28\xf2\xb4\x4a\xe5\x21\x59\x98\xa3\x17\x47\x82\x03\x28\xe3\x26\x8e\x05\x19\x95\x51\xab\x0e\x59\x0c\x14\xa2\x70\x9a\x95\x18\xd0\x18\xd2\xf0\xf1\xcf\x3f\x40\x8d\x78\xc8\xeb\x61\x40\x47\xf0\xa6\x81\x17\x78\x0f\x2f\xf0\xf9\xed\x15\x3c\x0f\xe4\x09\xde\x03\x1a\x09\x9f\x01\x3d\x95\xe8\xb9\x62\x1d\xc1\xe6\xdd\xbb\x2a\xe5\x51\xc2\x0c\xf8\x44\xc5\xa4\x2d\x4a\x92\x31\x01\xb6\x80\xe0\xd1\x1c\x92\x6e\x1f\xd7\x57\x70\xfd\x25\x85\xe4\x81\x0c\x98\x28\x0f\xad\xbe\x91\x84\x29\x28\x73\x80\x91\xd0\xc0\x6f\xf0\xb8\xae\x6e\xae\xe0\x74\xc9\x0e\x81\xe5\x6b\xcb\xc2\x53\x4f\x9e\x8c\xa0\x10\xa5\x75\x79\x4a\xaa\x42\x17\x45\x56\xc3\x33\x75\x41\x31\xc5\x5b\x62\x51\x55\x90\x09\xed\xe2\x8e\xdf\xb7\xc4\x0a\x06\x66\x17\xda\xba\x3e\x28\x1e\xa6\xae\x12\x76\xac\xef\x51\x92\xa1\xda\x79\x2a\x6c\xaf\x92\x43\xa8\x4a\xad\x96\x9e\x9c\xb7\x72\x12\xca\x1c\x56\x9e\xc2\xa4\x39\xfc\xff\x68\x75\xa7\x6d\x57\x8f\x18\x98\xfc\x0c\x95\x41\x75\xf9\x4b\xc8\x27\x15\x7b\x6c\x7f\x76\x5f\x2c\x41\x2b\x41\x26\x24\xae\x2f\x07\x2b\x8b\x2d\x4c\xc6\x53\x60\xaf\x62\x11\x17\xcb\xac\x92\xc4\xd4\x05\x9b\xd7\xda\xd2\x78\xbd\xf2\x81\x8b\x9a\xf8\xe8\xe8\x07\x43\x64\x95\x0c\x6d\x16\x41\xd1\xf6\x12\x66\x8a\x3d\xe5\x32\x8b\x55\x60\xdf\xc9\x3a\x42\x8a\x6c\x67\x91\x1c\xc6\xa1\xc4\xe4\x53\x79\x53\x0a\x97\xa5\x73\x27\x01\x90\xa6\x91\x0c\xef\x73\x2e\xbd\xb6\xc8\xcd\x66\x66\x4f\x91\xf7\x1a\x8f\x71\x04\xad\x67\x06\x8d\x47\x3b\x71\x0b\xf7\xef\x3f\xcf\x56\x85\xd5\xd6\x27\x62\xdb\xd8\x28\x33\x8b\x54\x23\x99\x48\x7b\x68\xe1\xb1\xb9\x8a\x4d\x90\x2e\x5f\x66\x98\x28\xe2\x16\x1e\xaf\x37\xb7\x51\xa6\xf3\xbf\x39\x2a\x08\xd4\xd4\xe6\xf5\x85\x9d\xd8\x4d\x7c\xa2\x3d\x72\x91\xce\x5a\xa8\xcb\xd6\x64\xcc\x07\x14\x1a\x43\x50\xbd\x12\x38\x9b\x92\xf8\x23\xd6\xb3\xeb\x85\xb4\xc5\x0f\x89\x2f\x28\x8d\x5d\xa9\xea\x8c\xf7\x73\xca\xff\xce\xff\x7f\xb3\xef\xbc\xed\xb0\x53\x5a\xb1\xa2\xf0\xba\x06\x3d\x21\x4f\x9e\xc2\x7e\xf2\xba\x4d\x0d\xd3\xd6\x75\x68\x2a\x1c\xf1\x9b\x35\xf8\x1c\x52\xd7\x04\xb6\x9e\xaa\x34\x22\x2b\xeb\x0f\x75\x38\x9a\x40\x1c\xea\x24\x16\x43\x5c\x16\x2a\x7e\xe1\xd7\x91\xc5\x40\xe2\x6b\x98\xc6\x16\xb6\x72\xd3\x6c\xbb\x9b\xbb\xa6\x41\x81\xdb\xed\xbb\xcd\xdd\x7a\x77\x83\xd7\x77\x6b\xd9\x35\xeb\xeb\x1d\x2e\x92\xb0\xa3\xd6\x4e\x6f\x96\x50\x46\xeb\xc1\xa3\x1b\xd2\x20\x7a\x26\x75\x18\x38\x80\xa7\x60\x27\x2f\x28\xf3\x90\xec\x7b\x87\x3c\xb4\xe7\xae\xff\xe9\x29\x4a\x37\x9f\x3a\x5f\x9d\xde\xf7\x4f\xcd\xea\x74\xb0\xca\xe5\x03\xa9\xb0\x47\x2f\x06\xf5\x34\x7b\xe7\xf4\xa8\x03\xc1\x12\x54\x0f\x81\xf8\x2a\xcf\xd4\x58\xcf\x0e\x03\x45\x3e\x41\x05\x40\x88\x37\x71\x0e\x1b\x28\x11\xe6\x25\x1d\x68\x96\xfa\xfc\x7c\x79\x21\x85\x94\x64\x2c\x53\xbc\x9f\x79\xf6\x4a\x53\xfa\xdc\x08\x27\xad\xbd\xa6\xe8\x59\xf1\xa0\x72\x4a\xf3\xad\xf3\x86\x97\xaa\xf4\xeb\xe6\x76\xd3\x75\xdd\xcd\x6e\x23\x37\x1b\xda\x6d\xef\xae\x6f\x50\xde\x6d\x9b\xbb\xdb\xdb\xdb\x9d\xa0\x05\x32\x7b\xd5\x4d\x9c\xa7\x3c\xbd\xb0\x47\x30\xc4\xe9\x63\xe5\x62\x4b\xb1\xbf\x2a\x23\x5b\xb8\x7f\x78\x28\x87\x8b\xcf\x31\x41\x43\x93\x47\x7d\xf6\x7a\x73\xff\xf0\x70\x05\x1f\xe3\xa5\xaa\xaa\xb7\xb9\xb7\xe2\xa4\x55\xe6\xb0\x97\xc8\x18\x88\x5b\xf8\x10\x8b\xf0\x40\x1c\x27\x5a\x5e\x3b\x7f\xb2\xa4\x49\x58\x1c\x92\xf7\x88\x46\xf5\x14\x78\x8f\x13\x0f\xd6\xb7\x80\x9d\x9c\xb4\x5c\xfc\x13\x00\x00\xff\xff\x4d\xf4\x0d\xd1\xcb\x09\x00\x00"
func inception_v30YmlBytes() ([]byte, error) {
return bindataRead(
_inception_v30Yml,
"Inception_v3.0.yml",
)
}
func inception_v30Yml() (*asset, error) {
bytes, err := inception_v30YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "Inception_v3.0.yml", size: 2507, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _mobilenet_ssd_lite_v20Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x56\x5b\xaf\xdb\x36\x12\x7e\xf7\xaf\x18\xc0\x2f\x09\x70\x2c\xc9\x97\x38\x3e\x02\x76\x1f\x36\x0b\x6c\x16\x68\x0f\x8a\x24\x40\x1e\x82\x40\x18\x51\x23\x89\x0d\x45\xb2\xe4\xc8\xc7\xce\xaf\x2f\x48\xca\xb6\x4e\x4e\xda\xa6\xa8\x1f\x04\x79\xe6\x9b\x0b\xbf\xb9\x50\x1a\x07\x2a\xe1\x67\x53\x4b\x45\x0f\xc4\xd5\xfb\xf7\xff\xad\x7e\x92\x4c\xd5\x71\x93\x15\xb0\x84\xa0\x07\xd3\xc2\xd9\x8c\x0e\x06\xd3\x90\x5a\xb4\x0e\x07\x7a\x34\xee\x4b\xb9\x00\x00\x48\x1e\x7e\x39\x7f\x30\x4e\xf4\xb0\x84\xab\x1a\x5a\xe3\x80\x7b\x9a\xcc\x02\xf6\x48\xce\x4b\xa3\x4b\x58\x67\x9b\x27\xd0\x49\x01\xc2\x68\xcf\x0e\xa5\xe6\xc5\x15\x9b\x12\xb9\x20\xa4\x6e\x8d\x1b\x90\xd3\x3b\x78\x1a\x50\xb3\x14\x57\x7d\xd2\x2e\x84\xd1\x8c\x52\x93\x2b\x61\x09\xd7\x3f\x1e\x46\x4f\x0d\xb0\x01\x4b\x2e\x20\x53\x6e\x60\x1d\x35\x52\x04\x9f\x31\xcd\x25\x0c\xa3\x62\x69\x15\x81\x55\xc8\x01\xe8\x41\xa0\x86\x9a\xc0\x5b\x12\xb2\x95\xd4\x44\x24\x0e\xcd\x7e\x97\x78\x08\x3f\x61\xc7\x12\x1c\x4a\xeb\xcc\xaf\x24\x38\x17\xe8\x06\xb5\xb2\x67\x0e\xdc\x94\x11\xbc\x12\x76\xbc\xe2\xbb\x1f\xc0\x77\x13\xde\x5a\xb1\xdf\x29\xfa\xd1\x60\x13\xfc\x6a\xfe\xd7\xe1\xe6\x16\x0d\x79\xe1\xa4\xe5\x58\x80\x7f\x47\x07\x1f\x7a\xe9\x27\xba\xa4\x07\x04\x47\x56\x49\x91\x0a\x61\xda\x5b\xa1\x21\xd9\xd6\xd4\x84\xfa\x04\xf1\xb5\xbb\xc0\x8e\xf5\xc5\x26\x9b\x3b\xa4\x93\x25\xc1\x1e\x06\xa9\xe5\xaa\x46\x16\x3d\xf9\xe0\x74\xbb\x12\x3d\x6a\x4d\x0a\xde\xfd\xef\x3f\x20\x07\xec\x92\xdc\xf7\x68\x09\x5e\x6c\xe1\x04\x6f\xe1\x04\x1f\x5f\xde\xc1\x63\x4f\x8e\xe0\x2d\xa0\x6e\xe0\x23\xa0\xa3\xc9\x69\x2a\x77\x4d\x80\x0c\x8a\xd0\x33\x6c\x8b\x22\x04\xa7\x8b\xbf\x1e\x8f\x34\x61\x94\xc1\x66\xca\xdb\x84\x23\xa2\xee\x62\xf7\x7f\x2a\xee\x60\xf3\xea\xd5\xe7\xe8\x9d\x7b\xd2\xa0\x43\x9b\x29\xf9\x95\x1a\x18\xbd\xd4\x1d\x0c\x84\x1a\xfe\x05\x9f\xd6\x9b\xd7\x77\x70\x79\x24\x03\xcf\x4d\xd2\x1c\x82\x30\x3d\x3e\x2f\x1c\xb5\xe4\x48\x0b\xf2\xa1\x45\x6f\xff\x62\x77\xa2\x0d\xcd\x9a\xc3\x23\xd5\x5e\x32\x85\x57\x62\x91\x65\x17\x72\x43\xc4\xa7\xa3\xb5\x82\x9e\xd9\xfa\x32\xcf\x3b\xc9\xfd\x58\x67\xc2\x0c\xf9\x6f\x6d\x87\xa6\x47\x93\x4f\x35\x5e\x79\xdf\xe4\xb5\x32\x75\x3e\xa0\x67\x72\xf9\x51\x86\xa1\xc9\xb5\xce\x87\x58\x24\x4d\x9c\xd9\xf3\x3f\x77\x18\xc4\x57\x8f\xd5\x71\x53\x79\xdf\x54\x4a\x32\x3d\xf7\xee\xd9\x38\xec\x28\xeb\x8c\xe9\x14\xa1\x95\x3e\x46\x8a\x27\xf3\xab\x10\x6b\xa8\x37\x21\xce\x2a\xd8\xaf\x06\xbb\x2a\xaa\xfd\x61\x9f\x59\xee\xbf\xf1\x84\xee\x24\x8f\x99\x71\x5d\x6e\x9b\x36\x5f\xbf\x2e\x76\x59\xb1\x3b\xec\xd7\x99\x6d\xda\xc5\x12\x94\x14\xa4\x3d\x3d\x69\xd6\xc5\x24\x2c\x61\xd4\x8e\x3c\x3b\x19\x3a\x66\xb1\x04\xa9\xed\xc8\xb1\x16\x37\x6c\x92\x95\xd3\x8a\x68\xa5\xf3\x9c\x70\xc0\x67\x4b\xdf\x59\x77\xab\xa8\x28\x53\xa3\x4d\x53\xb8\x84\xd9\x6c\x5d\x72\x99\xf9\x9a\x60\x4f\x06\x30\x40\x52\xa0\xb9\x27\x8b\x61\x7d\x32\xb9\xd8\x40\x31\x85\x9b\xe8\x3a\xf3\x00\xa4\x68\x20\xcd\x55\xca\xa5\x55\x06\x79\xbb\x99\xe9\xa3\xe7\x4a\xe1\x39\x2c\xcb\x62\xa6\x50\x78\x36\x23\x97\xf0\xe6\xed\xc7\x99\x54\x18\x65\x5c\x15\x0e\x59\x86\xa9\x9c\x69\x1a\x39\x90\x0e\xe5\xf7\x25\x7c\xda\xde\x85\x41\x8b\x8f\xcf\x33\x4c\x18\x93\xf2\xdb\x29\x99\xe9\xbd\x40\x45\x65\x98\x90\x85\x19\xd9\x8e\x7c\xa1\x3b\x70\x10\xcf\x38\x51\x96\xb4\x51\x99\x0e\x56\x9b\x51\x37\x52\x77\xb5\x39\x4d\x26\xf8\x3d\xaa\x93\xdd\x8d\xa9\xc5\x77\xd9\x9e\x50\x0a\xeb\xa9\x94\x33\xb2\xaf\xd9\xfe\x31\xe9\x7f\x4e\xb9\x75\xa6\x46\xa9\x24\x4b\xf2\xcf\x79\x6f\x09\x79\x74\xe4\xab\xd1\xa9\xf2\x36\x25\xdb\x0c\x07\xfc\x6a\x34\x3e\xa6\xf9\x08\x63\x43\x59\xdc\xe0\xb1\xe5\xd3\xbc\xe4\x4c\xda\x1b\xd7\x2a\xf3\x78\x91\x34\x44\x56\x61\x7d\xdc\x56\x83\x3e\x6e\x2a\x8b\x81\xe2\x2a\x5e\xb2\x15\x8e\x5d\xb5\x29\xd6\x87\xaa\x58\x57\x9b\xfb\x3c\xe9\x56\x47\x23\x56\x42\xa1\xf7\xe4\x33\x3e\xf1\xf3\xcc\x44\x4f\xe2\x8b\x1f\x87\x12\xee\x05\xed\xb6\xf7\xb5\x68\xeb\xdd\x4e\x6c\x8b\x1d\xed\xee\xb1\x68\x69\x8d\xb4\xbd\x3f\xb4\xfb\xfb\x45\x4c\x22\xf4\xe7\xe5\xde\xbc\xac\xfc\xce\xa1\xed\xe3\x7a\x7c\x24\xd9\xf5\xec\xc1\x91\x37\xa3\x13\x94\x68\x8c\xfa\xca\x22\xf7\x7f\x9f\x84\x69\x39\x3d\x59\x1c\x99\x4d\x07\x91\xbe\x42\x27\x7a\x79\x9c\xdd\xa4\x2d\x2a\x4f\xb0\x04\xd9\x82\x27\xbe\x4b\x1b\x3e\xb4\x41\x8d\x9e\x42\x1d\xd2\x8d\x17\x5e\xc2\xbd\xa0\x61\xf2\x30\xef\x84\x9e\x66\x29\xcf\xcf\x95\x04\xd1\x65\x43\xda\x30\x85\xf7\x99\x65\x2b\x15\xc5\x8f\x28\x7f\x69\xd1\xe7\xd4\x3c\x4a\xee\xa7\xcb\x74\x1e\x3a\x05\xbc\x55\x63\xbb\x5e\x17\xaf\xa9\x3e\xd4\xe2\x50\x37\x62\x57\xd4\xcd\x7e\xbf\x6d\x0f\x75\xd3\x08\x2a\xa8\xae\x17\xc8\xec\x64\x3d\x72\xba\x73\xe8\xc4\x0e\x41\x13\xc7\x4f\xb0\x9b\x2e\xfa\xfe\x22\x75\x53\xc2\x9b\x87\x87\xe9\x70\xe1\x7f\x48\x50\xd3\xe8\x50\x5d\xad\x5e\xbc\x79\x78\xb8\x83\x77\xe1\x91\x65\xd9\xcb\x34\x8f\xa1\xb7\xa4\xee\xaa\x06\x19\x3d\x71\x09\xff\x0f\x6b\x2b\x7c\x00\x2c\x61\x92\x5d\x3f\xc4\xe2\xd6\x9c\x0c\xa2\xf5\x80\x5a\xb6\xe4\xb9\xc2\x91\x7b\xe3\x4a\xc0\xba\x19\x55\xb3\xf8\x3d\x00\x00\xff\xff\xeb\xb4\xb8\xb6\xaa\x0a\x00\x00"
func mobilenet_ssd_lite_v20YmlBytes() ([]byte, error) {
return bindataRead(
_mobilenet_ssd_lite_v20Yml,
"MobileNet_SSD_Lite_v2.0.yml",
)
}
func mobilenet_ssd_lite_v20Yml() (*asset, error) {
bytes, err := mobilenet_ssd_lite_v20YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "MobileNet_SSD_Lite_v2.0.yml", size: 2730, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _mobilenet_ssd_v10Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x56\x4d\x8f\xdb\x36\x13\xbe\xfb\x57\x0c\xe0\x4b\x02\xac\x25\xf9\x63\x37\x6b\x01\xef\x7b\x68\x0a\x34\x3d\x74\x51\x24\x01\x72\x08\x02\x61\x44\x8d\x24\x36\x14\xc9\x92\x23\xaf\x9d\x5f\x5f\x90\x94\x6d\x6d\x36\x6d\x13\x74\x0f\x5a\x79\xe6\x99\x67\x86\xf3\x45\x69\x1c\xa8\x84\xdf\x4c\x2d\x15\x3d\x10\x57\xef\xde\xfd\x5c\x1d\xd6\x59\x01\x4b\x08\x2a\x30\x2d\x9c\xcc\xe8\x60\x30\x0d\xa9\x45\xeb\x70\xa0\x47\xe3\x3e\x97\x0b\x00\x80\x64\xfc\xfb\xe9\xbd\x71\xa2\x87\x25\x5c\xd4\xd0\x1a\x07\xdc\xd3\x64\x16\xb0\x07\x72\x5e\x1a\x5d\xc2\x3a\xdb\x3c\x81\x4e\x0a\x10\x46\xb3\x43\xa9\x79\x31\x83\x86\x38\xce\x00\xa9\x5b\xe3\x06\xe4\xf4\x0e\x9e\x06\xd4\x2c\xc5\x45\x9f\xb4\x8b\xc0\x83\x52\x93\x2b\x61\x09\x97\x1f\x1e\x46\x4f\x0d\xb0\x01\x4b\x2e\x20\x53\x68\x60\x1d\x35\x52\x04\xce\x18\xe5\x12\x86\x51\xb1\xb4\x8a\xc0\x2a\xe4\x00\xf4\x20\x50\x43\x4d\xe0\x2d\x09\xd9\x4a\x6a\x22\x12\x87\xe6\x6e\x97\xd2\x10\xfe\x84\x1d\x4b\x70\x28\xad\x33\x7f\x90\xe0\x5c\xa0\x1b\xd4\xca\x9e\x38\xa4\xa6\x8c\xe0\x95\xb0\xe3\x05\xdf\x7d\x07\xbe\x9b\xf0\xd6\x8a\xbb\x9d\xa2\xef\x75\x36\xc1\x2f\xe6\xff\xee\x6e\x6e\xd1\x90\x17\x4e\x5a\x8e\x05\xf8\x7f\x24\x78\xdf\x4b\x3f\xa5\x4b\x7a\x40\x70\x64\x95\x14\xa9\x10\xa6\xbd\xd6\x19\x92\x6d\x4d\x4d\xa8\x4f\x10\x5f\xfa\x0a\xec\x58\x9f\x6d\xb2\x39\x21\x1d\x2d\x09\xf6\x30\x48\x2d\x57\x35\xb2\xe8\xc9\x07\xd2\xed\x4a\xf4\xa8\x35\x29\x78\xfb\xcb\x4f\x20\x07\xec\x92\xdc\xf7\x68\x09\x5e\x6c\xe1\x08\x6f\xe0\x08\x1f\x5e\xde\xc0\x63\x4f\x8e\xe0\x0d\xa0\x6e\xe0\x03\xa0\xa3\x89\x34\x95\xbb\x26\x40\x06\x45\xe8\x19\xb6\x45\x11\x9c\xd3\x99\xaf\xc7\x03\x4d\x18\x65\xb0\x99\xe2\x36\xe1\x88\xa8\xbb\xd8\xfc\x1f\x8b\x1b\xd8\xdc\xde\x7e\x8a\xec\xdc\x93\x06\x1d\xda\x4c\xc9\x2f\xd4\xc0\xe8\xa5\xee\x60\x20\xd4\xf0\x3f\xf8\xb8\xde\xbc\xba\x81\xf3\x23\x19\x78\x6e\x92\xe6\x3e\x08\xd3\xe3\xd3\xc2\x51\x4b\x8e\xb4\x20\x1f\x5a\xf4\xfa\x2b\x76\x27\xda\xd0\xac\x39\x3c\x52\xed\x25\x53\x78\x25\x16\x59\x76\x4e\x6e\xf0\xf8\x74\xb2\x56\xd0\x33\x5b\x5f\xe6\x79\x27\xb9\x1f\xeb\x4c\x98\x21\xff\xb3\xed\xd0\xf4\x68\xf2\xa9\xc6\x2b\xef\x9b\xbc\x56\xa6\xce\x07\xf4\x4c\x2e\x3f\xc8\x30\x34\xb9\xd6\xf9\x10\x8b\xa4\x89\x33\x7b\xfa\xef\x84\x41\x7c\x61\x3c\xac\x2b\xef\x9b\xe7\xbc\x9e\x8d\xc3\x8e\xb2\xce\x98\x4e\x11\x5a\xe9\xa3\x8f\x78\x26\xbf\x0a\x5e\x2e\x14\xab\xc3\x3a\xb8\x5a\x0d\x76\x55\x54\x77\xaf\x6e\x33\xcb\xfd\x57\x6c\xe8\x8e\xf2\x90\x19\xd7\xe5\xb6\x69\xf3\xf5\xab\x62\x97\x15\xbb\xfb\xbb\x75\x66\x9b\x76\xb1\x04\x25\x05\x69\x4f\x4f\x5a\x75\x31\x09\x4b\x18\xb5\x23\xcf\x4e\x86\x7e\x59\x2c\x41\x6a\x3b\x72\xac\xc4\x15\x9b\x64\xe5\xb4\x20\x5a\xe9\x3c\x27\x1c\xf0\xc9\xd2\x37\x76\xdd\x2a\x2a\xca\xd4\x66\xd3\x0c\x2e\x61\x36\x59\xe7\x58\x66\x5c\x13\xec\xc9\xf8\x05\x48\x72\x34\x67\xb2\x18\x76\x27\x93\x8b\xed\x13\x43\xb8\x8a\x2e\x13\x0f\x40\x8a\x06\xd2\x5c\xa5\x58\x5a\x65\x90\xb7\x9b\x99\x3e\x32\x57\x0a\x4f\x61\x55\x16\x33\x85\xc2\x93\x19\xb9\x84\xd7\x6f\x3e\xcc\xa4\xc2\x28\xe3\xaa\x70\xc8\x32\xcc\xe4\x4c\xd3\xc8\x81\x74\x28\xbe\x2f\xe1\xe3\xf6\x26\x8c\x59\x7c\x7c\x9a\x61\xc2\x90\x94\x5f\xcf\xc8\x4c\xef\x05\x2a\x2a\xc3\x7c\x2c\xcc\xc8\x76\xe4\x73\xba\x43\x0e\xe2\x19\xa7\x94\x25\x6d\x54\xa6\x83\xd5\x66\xd4\x8d\xd4\x5d\x6d\x8e\x93\x09\x7e\x2b\xd5\xc9\xee\x9a\xa9\xc5\x37\xb3\x3d\xa1\xce\x9c\x50\x9b\xe3\x0f\x11\xce\x6a\x73\x39\xdc\xdf\xd7\xe8\x9f\x2b\x64\x9d\xa9\xb1\x96\x4a\xb2\x24\xff\xbc\x4e\x2d\x21\x8f\x8e\x7c\x35\x3a\x55\x5e\x27\x6b\x9b\xe1\x80\x5f\x8c\xc6\xc7\x34\x53\x61\xd4\x28\x8b\xfb\x3e\x8e\x48\x9a\xb1\x9c\x49\x7b\xe3\x5a\x65\x1e\xcf\x92\x86\xc8\x2a\xac\x0f\xdb\x6a\xd0\x87\x4d\x65\x31\x94\xa4\x8a\x57\x72\x85\x63\x57\x6d\x8a\xf5\x7d\x55\xac\xab\xcd\x3e\x4f\xba\xd5\xc1\x88\x95\x50\xe8\x3d\xf9\x8c\x8f\xfc\x3c\x32\xd1\x93\xf8\xec\xc7\xa1\x84\xbd\xa0\xdd\x76\x5f\x8b\xb6\xde\xed\xc4\xb6\xd8\xd1\x6e\x8f\x45\x4b\x6b\xa4\xed\xfe\xbe\xbd\xdb\x2f\x62\x10\xa1\x9f\xcf\xb7\xec\xf9\x82\xe8\x1c\xda\x3e\x2e\xd3\x47\x92\x5d\xcf\x1e\x1c\x79\x33\x3a\x41\x29\x8f\x51\x5f\x59\xe4\xfe\xc7\x93\x30\xad\xb2\x7c\xa8\xe3\x8e\xc9\x6c\x3a\x83\xf4\x15\x3a\xd1\xcb\xc3\xec\xca\x6d\x51\x79\x82\x25\xc8\x16\x3c\xf1\x4d\xba\x0a\x42\x1b\xd4\xe8\x29\x94\x20\x5d\x8d\xe1\x25\x5c\x20\x1a\x26\x86\x79\x17\xf4\x34\x8b\x76\x7e\xa4\x24\x88\x94\x0d\x69\xc3\x14\xde\x67\x96\xad\x54\x14\x3f\xb6\xfc\xb9\xf9\x9e\x67\xe5\x51\x72\x3f\xdd\xba\x73\xd7\xc9\xe1\xb5\x10\xf7\x5b\x41\xf7\xfb\x75\x81\x77\x78\x5b\x6c\x76\xb7\xe1\xdf\x76\x2b\xb6\xb7\xc5\xbe\x15\x77\xcd\x66\x81\xcc\x4e\xd6\x23\xa7\xcb\x89\x8e\xec\x10\x34\x71\xfc\x54\xbb\xea\x22\xf7\x67\xa9\x9b\x12\x5e\x3f\x3c\x4c\x87\x0b\xbf\x43\x80\x9a\x46\x87\xea\x62\xf5\xe2\xf5\xc3\xc3\x0d\xbc\x0d\x8f\x2c\xcb\x5e\xa6\xd1\x0d\x6d\x25\x75\x57\x35\xc8\xe8\x89\x4b\xf8\x35\x6c\xb8\xf0\xa5\xb0\x84\x49\x76\xf9\x62\x8b\x0b\x76\x32\x88\xd6\x03\x6a\xd9\x92\xe7\x0a\x47\xee\x8d\x2b\x01\xeb\x66\x54\xcd\xe2\xaf\x00\x00\x00\xff\xff\xfe\xd9\xbe\xc8\xcd\x0a\x00\x00"
func mobilenet_ssd_v10YmlBytes() ([]byte, error) {
return bindataRead(
_mobilenet_ssd_v10Yml,
"MobileNet_SSD_v1.0.yml",
)
}
func mobilenet_ssd_v10Yml() (*asset, error) {
bytes, err := mobilenet_ssd_v10YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "MobileNet_SSD_v1.0.yml", size: 2765, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _nasnet_a_largeYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x4f\x8f\xdb\xb6\x13\xbd\xfb\x53\x0c\xe0\x4b\x02\xac\x25\xdb\xda\xdd\x6c\x04\xfc\x7e\x40\xbb\x87\xa6\x40\x61\x14\x41\x80\x1c\x16\x81\x31\x22\x47\x16\x1b\x8a\x24\xc8\x51\xbc\xce\xa7\x2f\xf8\xc7\xb6\x82\x4d\x9b\xa0\x3e\xc8\x12\xe7\xcd\x70\xf8\xe6\xcd\x48\x06\x47\x6a\x61\x87\x61\x47\xbc\xff\x65\xff\x07\xfa\x03\xc1\x12\xe2\x32\xd8\x1e\x4e\x76\xf2\x30\x5a\x49\x7a\xd1\x7b\x1c\xe9\x68\xfd\xe7\x76\x01\x00\x90\x1d\xff\x3c\x7d\xb0\x5e\x0c\xb0\x84\x8b\x19\x7a\xeb\x81\x07\x2a\x6e\x11\xfb\x85\x7c\x50\xd6\xb4\xb0\xa9\xb6\xdf\x40\x8b\x01\x84\x35\x81\x3d\x2a\xc3\x8b\x19\x76\x0d\xcb\x0b\x42\x99\xde\xfa\x11\x39\xdf\x43\xa0\x11\x0d\x2b\x71\xb1\x67\xeb\x42\x58\xc3\xa8\x0c\xf9\x16\x96\x70\x79\x08\x30\x05\x92\xc0\x16\x1c\xf9\x88\xcc\xb9\x81\xf3\x24\x95\x88\x31\x53\x9a\x4b\x18\x27\xcd\xca\x69\x02\xa7\x91\x23\x30\x80\x40\x03\x1d\x41\x70\x24\x54\xaf\x48\x26\x24\x8e\xf2\xfe\x36\xf3\x10\x7f\xc2\x4d\x2d\x78\x54\xce\xdb\xbf\x48\x70\x2d\xd0\x8f\x7a\xe5\x4e\x1c\xb9\x69\x13\x78\x25\xdc\x74\xc1\x1f\x7e\x02\x7f\x28\x78\xe7\xc4\xfd\xad\xa6\x9f\xdd\xac\xc0\x2f\xee\x3f\xde\x6e\xee\x21\x29\x08\xaf\x1c\xa7\x02\xfc\x3f\x05\xf8\x30\x50\xe4\x69\x95\xca\x43\xb2\x30\x47\xcf\x8e\x04\x07\x50\xc6\x4d\x1c\x0b\x32\x2a\xa3\x56\x1d\xb2\x18\x28\x44\xe1\x34\x2b\x31\xa0\x31\xa4\xe1\xfd\x6f\xbf\x82\x1a\xf1\x90\xd7\xc3\x80\x8e\xe0\x55\x03\xcf\xf0\x0e\x9e\xe1\xe3\xeb\x1b\x38\x0e\xe4\x09\xde\x01\x1a\x09\x1f\x01\x3d\x95\xe8\xb9\x62\x1d\x41\xd3\x6c\xaa\x94\x47\x09\x33\xe0\x17\x2a\x26\x6d\x51\x92\x8c\x09\xb0\x05\x04\x8f\xe6\x90\x74\xfb\xb4\xbe\x81\xcd\xa7\x14\x92\x07\x32\x60\xa2\x3c\xb4\xfa\x4a\x12\xa6\xa0\xcc\x01\x46\x42\x03\xff\x83\xa7\x75\x75\x77\x03\xe7\x4b\x76\x08\x2c\x5f\x5a\x16\x9e\x7a\xf2\x64\x04\x85\x28\xad\xeb\x53\x52\x15\xba\x28\xb2\x1a\x8e\xd4\x05\xc5\x14\x6f\x89\x45\x55\x41\x26\xb4\x8b\x3b\x7e\xdb\x12\x2b\x18\x98\x5d\x68\xeb\xfa\xa0\x78\x98\xba\x4a\xd8\xb1\x7e\x44\x49\x86\x6a\xe7\xa9\xb0\xbd\x4a\x0e\xa1\x2a\xb5\x5a\x7a\x72\xde\xca\x49\x28\x73\x58\x79\x0a\x93\xe6\xf0\xdf\xa3\xd5\x9d\xb6\x5d\x3d\x62\x60\xf2\x33\x54\x06\xd5\xe5\xcf\x60\x30\xc4\x95\x3b\x2d\x96\xa0\x95\x20\x13\x12\xbf\xd7\xc3\x94\xc5\x16\x26\xe3\x29\xb0\x57\xb1\x70\x8b\x65\x56\x46\x62\xe7\x8a\xcd\x6b\x6d\x69\xb6\x5e\xf9\xc0\x45\x41\x7c\x72\xf4\x9d\xc1\xb1\x4a\x86\x36\x17\xbe\xe8\x79\x09\x33\x95\x9e\x73\x99\xc5\x2a\xb0\x6f\xa4\x1c\x21\x45\xaa\xb3\x48\x0e\xe3\x20\x62\xf2\xa9\xa4\x29\x85\xeb\xd2\xa5\x7b\x00\x48\xd3\x48\x86\xf7\x39\x97\x5e\x5b\xe4\x66\x3b\xb3\xa7\xc8\x7b\x8d\xa7\x38\x76\xd6\x33\x83\xc6\x93\x9d\xb8\x85\xc7\x77\x1f\x67\xab\xc2\x6a\xeb\xf7\xf1\x90\x6d\x6c\x8e\x99\x45\xaa\x91\x4c\x1c\x67\xa1\x85\xa7\xe6\x26\x0a\x3f\x5d\x3e\xcd\x30\x51\xb8\x2d\x3c\x6d\xb6\x6f\xa2\x34\xe7\x7f\x73\x54\x10\xa8\xa9\xcd\xeb\x0b\x3b\xb1\x9b\xf8\x4c\x7b\xe4\x22\x9d\xb5\x50\x97\xad\xc9\x98\x0f\x28\x34\x86\xa0\x7a\x25\x70\x36\x19\xf1\x7b\xac\x67\xd7\x2b\x69\x8b\xef\x12\x5f\x50\x1a\xbb\x52\xd5\x19\xef\x97\x94\xff\x99\xff\x7f\x67\xdf\x79\xdb\x61\xa7\xb4\x62\x45\xe1\x65\x0d\x7a\x42\x9e\x3c\x85\xfd\xe4\x75\x9b\x9a\xa4\xad\xeb\xd0\x54\x38\xe2\x57\x6b\xf0\x18\x52\xa7\x04\xb6\x9e\xaa\x34\x16\x2b\xeb\x0f\x75\x38\x99\x40\x1c\xea\x24\x16\x43\x5c\x16\x2a\x7e\xe6\x97\x91\xc5\x40\xe2\x73\x98\xc6\x16\x6e\xe5\xb6\xb9\xed\xee\x1e\x9a\x06\x05\xde\xde\xbe\xdd\x3e\xac\xef\xef\x70\xf3\xb0\x96\x5d\xb3\xde\xdc\xe3\x22\x09\x3b\x6a\xed\xfc\x36\x09\x65\x9c\x1e\x3c\xba\x21\x0d\x9f\x23\xa9\xc3\xc0\x01\x3c\x05\x3b\x79\x41\x99\x87\x64\xdf\x3b\xe4\xa1\xbd\x74\xfa\x0f\x4f\x51\x3a\xf8\xdc\xed\xb9\x93\x51\xc7\x37\xfc\xea\x7c\xb2\xca\xe5\x13\xa9\xb0\x47\x2f\x06\xf5\x65\xf6\xa2\xe9\x51\x87\xf8\x2d\xa0\x7a\x08\xc4\x37\x79\x90\xc6\x82\x76\x18\x28\x12\x0a\x2a\x00\x42\xbc\x89\xc3\xd7\x40\x89\x30\xaf\xe9\x40\xb3\xdc\xe7\x07\xcc\x0b\x29\xa4\x24\x63\x99\xe2\xfd\xcc\xb3\x57\x9a\xd2\x37\x46\x38\x8b\xed\x25\x47\x47\xc5\x83\xca\x29\xcd\xb7\xce\x1b\x5e\xcb\xd2\x3d\x6c\x9b\xfb\xcd\xdb\xf5\x5b\x81\xd4\xe0\x1b\x89\x6f\x84\x5c\x77\xbd\xd8\x3c\x6c\xb6\x77\x84\xdd\x02\x99\xbd\xea\x26\xce\xa3\x9d\x9e\xd9\x23\x18\xe2\xf4\x85\x72\xb5\xa5\xd8\x9f\x95\x91\x2d\x3c\xee\x76\xe5\x70\xf1\x39\x26\x68\x68\xf2\xa8\x2f\x5e\xaf\x1e\x77\xbb\x1b\x78\x1f\x2f\x55\x55\xbd\xce\xcd\x15\xc7\xab\x32\x87\xbd\x44\xc6\x40\xdc\xc2\xef\xb1\x08\x3b\xe2\x38\xd2\xf2\xda\xe5\x3b\x25\x8d\xc2\xe2\x90\xbc\x47\x34\xaa\xa7\xc0\x7b\x9c\x78\xb0\xbe\x05\xec\xe4\xa4\xe5\xe2\xef\x00\x00\x00\xff\xff\xd7\x70\x4b\xdb\xc0\x09\x00\x00"
func nasnet_a_largeYmlBytes() ([]byte, error) {
return bindataRead(
_nasnet_a_largeYml,
"NasNet_A_Large.yml",
)
}
func nasnet_a_largeYml() (*asset, error) {
bytes, err := nasnet_a_largeYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "NasNet_A_Large.yml", size: 2496, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _nasnet_a_mobileYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x4d\x8f\xdb\x46\x0f\xbe\xfb\x57\x10\xf0\x25\x01\xd6\xf2\xe7\x6e\x36\x02\xde\x17\x68\xf7\xd0\xf4\x50\xa3\x08\x02\xe4\xb0\x08\x0c\x6a\x44\x59\xd3\x8c\x66\x06\x43\x2a\xbb\xce\xaf\x2f\xe6\xc3\xb6\x82\x4d\x9b\xa0\x7b\xd0\x4a\xe4\x43\x8a\xf3\xf0\x21\x2d\x8b\x03\xd5\xb0\x47\xde\x93\x1c\x7e\x39\xfc\xe1\x1a\x6d\x08\xe6\x10\xed\xe0\x3a\x38\xb9\x31\xc0\xe0\x5a\x32\xb3\x2e\xe0\x40\x4f\x2e\x7c\xae\x67\x00\x00\x39\xf2\xcf\xd3\x07\x17\x54\x0f\x73\xb8\xb8\xa1\x73\x01\xa4\xa7\x12\x16\xb1\x5f\x28\xb0\x76\xb6\x86\x75\xb5\xf9\x06\x5a\x1c\xa0\x9c\x65\x09\xa8\xad\xcc\x26\xd8\x15\xcc\x2f\x08\x6d\x3b\x17\x06\x94\x7c\x0f\x4c\x03\x5a\xd1\xea\xe2\xcf\xde\x99\x72\x56\x50\x5b\x0a\x35\xcc\xe1\xf2\xc0\x30\x32\xb5\x20\x0e\x3c\x85\x88\xcc\xb5\x81\x0f\xd4\x6a\x15\x73\xa6\x32\xe7\x30\x8c\x46\xb4\x37\x04\xde\xa0\x44\x20\x83\x42\x0b\x0d\x01\x7b\x52\xba\xd3\xd4\x26\x24\x0e\xed\xdd\x2e\xf3\x10\xff\x94\x1f\x6b\x08\xa8\x7d\x70\x7f\x91\x92\xa5\xc2\x30\x98\x85\x3f\x49\xe4\xa6\x4e\xe0\x85\xf2\xe3\x05\x7f\xfc\x09\xfc\xb1\xe0\xbd\x57\x77\x3b\x43\x3f\xfb\xb2\x02\xbf\x84\xff\xf8\x75\xd3\x88\x96\x58\x05\xed\x25\x35\xe0\xff\x29\xc1\x87\x9e\x22\x4f\x8b\xd4\x1e\x6a\x0b\x73\xf4\xec\x49\x09\x83\xb6\x7e\x94\xd8\x90\x41\x5b\xbd\x68\x50\x54\x4f\x1c\x85\xb3\x5d\xa8\x1e\xad\x25\x03\xef\x7f\xfb\x15\xf4\x80\xc7\x6c\xe7\x1e\x3d\xc1\xab\x2d\x3c\xc3\x3b\x78\x86\x8f\xaf\x6f\xe0\xa9\xa7\x40\xf0\x0e\xd0\xb6\xf0\x11\x30\x50\xc9\x9e\x3b\xd6\x10\x6c\x36\xbb\x2a\xd5\x51\xd2\xf4\xf8\x85\x8a\xcb\x38\x6c\xa9\x8d\x05\x88\x03\x84\x80\xf6\x98\x74\xfb\xb8\xba\x81\xf5\xa7\x94\x52\x7a\xb2\x60\xa3\x3c\x8c\xfe\x4a\x2d\x8c\xac\xed\x11\x06\x42\x0b\xff\x83\xc7\x55\x75\x7b\x03\xe7\x4b\x0e\x60\x69\x5f\x7a\x66\x81\x3a\x0a\x64\x15\x71\x94\xd6\xf5\x29\xa9\x0a\x7d\x14\xd9\x12\x9e\xa8\x61\x2d\x14\x6f\x49\x54\x55\x41\x26\xb4\x89\x6f\xfc\x76\x24\x16\xd0\x8b\x78\xae\x97\xcb\xa3\x96\x7e\x6c\x2a\xe5\x86\xe5\x03\xb6\x64\x69\xe9\x03\x15\xb6\x17\x29\x80\xab\xd2\xab\x79\x20\x1f\x5c\x3b\x2a\x6d\x8f\x8b\x40\x3c\x1a\xe1\xff\x9e\x6d\xd9\x18\xd7\x2c\x07\x64\xa1\x30\x41\x65\xd0\xb2\xfc\xb3\xc8\x96\xe4\x30\xa4\xc5\x50\xf9\xd3\x6c\x0e\x46\x2b\xb2\x9c\x68\xbe\x9e\xa9\x18\x6b\x18\x6d\x20\x96\xa0\x63\xff\x66\xf3\x2c\x90\x44\xd2\x15\x9b\x6d\x75\x99\xb9\x4e\x07\x96\x22\x24\x39\x79\xfa\xce\xfe\x58\x24\x47\x9d\xfb\x5f\x64\x3d\x87\x89\x58\xcf\xb5\x4c\x72\x15\xd8\x37\x8a\x8e\x90\xa2\xd8\x49\x26\x8f\x71\x1f\x09\x85\xd4\xd9\x54\xc2\xd5\x74\x19\x22\x00\x32\x34\x90\x95\x43\xae\xa5\x33\x0e\x65\xbb\x99\xf8\x53\xe6\x83\xc1\x53\xdc\x3e\xab\x89\xc3\xe0\xc9\x8d\x52\xc3\xc3\xbb\x8f\x13\xab\x72\xc6\x85\x43\x3c\x64\x1d\x67\x64\xe2\x69\xf5\x40\x36\x6e\x35\xae\xe1\x71\x7b\x13\xf5\x9f\x2e\x9f\x26\x98\xa8\xdf\x1a\x1e\xd7\x9b\x37\x51\xa1\xd3\x7f\x53\x14\x2b\x34\x54\x67\xfb\xcc\x8d\xe2\x47\x39\xd3\x1e\xb9\x48\x67\x2d\xd4\x65\x6f\x72\xe6\x03\x2a\x83\xcc\xba\xd3\x0a\x27\x0b\x12\xbf\xc7\x7a\x0e\xbd\x92\x36\xfb\x2e\xf1\x05\x65\xb0\x29\x5d\x9d\xf0\x7e\x29\xf9\x9f\xf9\xff\x77\xf6\x7d\x70\x0d\x36\xda\x68\xd1\xc4\x2f\x7b\xd0\x11\xca\x18\x88\x0f\x63\x30\x75\x9a\x95\x7a\xb9\xe4\x6d\x85\x03\x7e\x75\x16\x9f\x38\x0d\x0c\x8b\x0b\x54\xa5\xed\x58\xb9\x70\x5c\xf2\xc9\x32\x09\x2f\x93\x58\x2c\x49\x31\x54\xf2\x2c\x2f\x33\xab\x9e\xd4\x67\x1e\x87\x1a\x76\xed\x66\xbb\x6b\x6e\xef\xb7\x5b\x54\xb8\xdb\xbd\xdd\xdc\xaf\xee\x6e\x71\x7d\xbf\x6a\x9b\xed\x6a\x7d\x87\xb3\x24\xec\xa8\xb5\xf3\x8f\x0a\x97\xad\x7a\x0c\xe8\xfb\xb4\x83\x9e\x48\x1f\x7b\x61\x08\xc4\x6e\x0c\x8a\x32\x0f\xc9\x7f\xf0\x28\x7d\x7d\x19\xf8\x1f\x9e\xa2\x0c\xf2\x79\xe8\xf3\x40\x63\x1e\xe8\xc5\xf9\x68\x95\xcf\x47\xd2\x7c\xc0\xa0\x7a\xfd\x65\xf2\x83\xd3\xa1\xe1\xf8\x4d\xa0\x3b\x60\x92\x9b\xbc\x50\x63\x47\x1b\x64\x8a\x8c\x82\x66\x40\x88\x37\x71\x09\x5b\x28\x19\xa6\x4d\xed\x69\x52\xfc\xf4\x84\xd9\x90\x52\xb6\x64\x9d\x50\xbc\x9f\x44\x76\xf1\x7b\x24\x7e\x6b\xf0\x59\x6d\x2f\x49\x7a\xd2\xd2\xeb\x5c\xd2\xf4\xd5\xf9\x85\xd7\xbe\xac\x70\x73\x87\xd4\xde\xae\xef\xdf\xbe\x51\xd8\x6e\x76\xbb\x6e\x83\x78\xbb\xdb\xd0\x1b\xb5\xa6\xad\x9a\xa1\x48\xd0\xcd\x28\x79\xc5\xd3\xb3\x04\x04\x4b\x92\xbe\x54\xae\xbe\x94\xfb\xb3\xb6\x6d\x0d\x0f\xfb\x7d\x39\x5c\x7c\x8e\x05\x5a\x1a\x03\x9a\x4b\xd4\xab\x87\xfd\xfe\x06\xde\xc7\x4b\x55\x55\xaf\xf3\x74\xc5\x35\xab\xed\xf1\xd0\xa2\x20\x93\xd4\xf0\x7b\x6c\xc2\x9e\x24\xee\xb4\x6c\xbb\x7c\xaf\xa4\x5d\x58\x02\x52\xf4\x80\x56\x77\xc4\x72\xc0\x51\x7a\x17\x6a\xc0\xa6\x1d\x4d\x3b\xfb\x3b\x00\x00\xff\xff\xf5\x5e\x5b\xc9\xc9\x09\x00\x00"
func nasnet_a_mobileYmlBytes() ([]byte, error) {
return bindataRead(
_nasnet_a_mobileYml,
"NasNet_A_Mobile.yml",
)
}
func nasnet_a_mobileYml() (*asset, error) {
bytes, err := nasnet_a_mobileYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "NasNet_A_Mobile.yml", size: 2505, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _pnasnet_5_largeYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x4b\x8f\xdb\x46\x0c\xbe\xfb\x57\x10\xf0\x25\x01\xd6\xf2\x6b\x5f\x11\xd0\x1e\xba\x87\xa6\x40\x61\x14\x41\x80\x1c\x16\x81\x41\x8d\x28\x6b\x9a\xd1\xcc\x60\x48\x65\xd7\xf9\xf5\xc5\x3c\x6c\x2b\xd8\x6d\x13\xd4\x07\x59\x1a\x7e\xe4\x70\x3e\x7e\xa4\x64\x71\xa0\x1a\xfe\xda\x21\xef\x48\xf6\x37\xfb\x3f\x31\x1c\x08\xe6\x10\xd7\xc1\x75\x70\x74\x63\x80\xc1\xb5\x64\x66\x5d\xc0\x81\x9e\x5c\xf8\x52\xcf\x00\x00\x8a\xe7\xf1\xa3\x0b\xaa\x87\x39\x9c\xcd\xd0\xb9\x00\xd2\x53\x71\x8b\xd8\xaf\x14\x58\x3b\x5b\xc3\xba\xda\x7c\x07\x2d\x06\x50\xce\xb2\x04\xd4\x56\x66\x13\xec\x0a\xe6\x67\x84\xb6\x9d\x0b\x03\x4a\xbe\x07\xa6\x01\xad\x68\x75\xb6\x67\xeb\x4c\x39\x2b\xa8\x2d\x85\x1a\xe6\x70\x7e\x60\x18\x99\x5a\x10\x07\x9e\x42\x44\xe6\xdc\xc0\x07\x6a\xb5\x8a\x31\x53\x9a\x73\x18\x46\x23\xda\x1b\x02\x6f\x50\x22\x90\x41\xa1\x85\x86\x80\x3d\x29\xdd\x69\x6a\x13\x12\x87\xf6\xf6\x3a\xf3\x10\x7f\xca\x8f\x35\x04\xd4\x3e\xb8\xbf\x49\xc9\x52\x61\x18\xcc\xc2\x1f\x25\x72\x53\x27\xf0\x42\xf9\xf1\x8c\x3f\xfc\x04\xfe\x50\xf0\xde\xab\xdb\x6b\x43\x3f\xbb\x59\x81\x9f\xdd\x7f\xbc\xdd\xd4\xa3\x25\x56\x41\x7b\x49\x05\xf8\x35\x05\xf8\xd8\x53\xe4\x69\x91\xca\x43\x6d\x61\x8e\x9e\x3d\x29\x61\xd0\xd6\x8f\x12\x0b\x32\x68\xab\x17\x0d\x8a\xea\x89\xa3\x70\xb6\x0b\xd5\xa3\xb5\x64\xe0\xc3\xef\xbf\x81\x1e\xf0\x90\xd7\xb9\x47\x4f\xf0\x66\x0b\xcf\xf0\x1e\x9e\xe1\xd3\xdb\x2b\x78\xea\x29\x10\xbc\x07\xb4\x2d\x7c\x02\x0c\x54\xa2\xe7\x8a\x35\x04\xdb\xed\xba\x4a\x79\x94\x30\x3d\x7e\xa5\x62\x32\x0e\x5b\x6a\x63\x02\xe2\x00\x21\xa0\x3d\x24\xdd\x3e\xae\xae\x60\xfd\x39\x85\x94\x9e\x2c\xd8\x28\x0f\xa3\xbf\x51\x0b\x23\x6b\x7b\x80\x81\xd0\xc2\x2f\xf0\xb8\xaa\x6e\xae\xe0\x74\xc9\x0e\x2c\xed\x4b\xcb\x2c\x50\x47\x81\xac\x22\x8e\xd2\xba\x3c\x25\x55\xa1\x8f\x22\x5b\xc2\x13\x35\xac\x85\xe2\x2d\x89\xaa\x2a\xc8\x84\x36\x71\xc7\xef\x5b\x62\x01\xbd\x88\xe7\x7a\xb9\x3c\x68\xe9\xc7\xa6\x52\x6e\x58\x3e\x60\x4b\x96\x96\x3e\x50\x61\x7b\x91\x1c\xb8\x2a\xb5\x9a\x07\xf2\xc1\xb5\xa3\xd2\xf6\xb0\x08\xc4\xa3\x11\xfe\xff\xd1\x96\x8d\x71\xcd\x72\x40\x16\x0a\x13\x54\x06\x2d\xcb\x9f\xb7\xc8\x96\xa4\xf2\xc7\xd9\x1c\x8c\x56\x64\x39\x11\x7c\x39\x4d\x59\xac\x61\xb4\x81\x58\x82\x8e\x95\x9b\xcd\xb3\x34\x12\x3d\x17\x6c\x5e\xab\x4b\xb7\x75\x3a\xb0\x14\x09\xc9\xd1\xd3\x2b\x93\x63\x91\x0c\x75\xae\x7c\x11\xf4\x1c\x26\x32\x3d\xe5\x32\x89\x55\x60\xdf\x69\x39\x42\x8a\x56\x27\x91\x3c\xc6\x49\x24\x14\x52\x4d\x53\x0a\x97\xa5\x73\xfb\x00\x90\xa1\x81\xac\xec\x73\x2e\x9d\x71\x28\xdb\xcd\xc4\x9e\x22\xef\x0d\x1e\xe3\xdc\x59\x4d\x0c\x06\x8f\x6e\x94\x1a\x1e\xde\x7f\x9a\xac\x2a\x67\x5c\xd8\xc7\x43\xd6\xb1\x3b\x26\x96\x56\x0f\x64\xe3\x3c\xe3\x1a\x1e\xb7\x57\x51\xf9\xe9\xf2\x79\x82\x89\xca\xad\xe1\x71\xbd\xb9\x8b\xda\x9c\xfe\x4d\x51\xac\xd0\x50\x9d\xd7\x61\xe6\x46\xf1\xa3\x9c\x78\x8f\x64\xa4\xc3\x16\xee\xb2\x35\x19\xf3\x09\x95\x41\x66\xdd\x69\x85\x93\xd9\x88\xaf\xd1\x9e\x5d\x2f\xac\xcd\x5e\x65\xbe\xa0\x0c\x36\xa5\xac\x13\xe2\xcf\x39\xff\x7b\x01\xfe\x9b\x7e\x1f\x5c\x83\x8d\x36\x5a\x34\xf1\xcb\x22\x74\x84\x32\x06\xe2\xfd\x18\x4c\x9d\xda\xa4\x5e\x2e\x79\x5b\xe1\x80\xdf\x9c\xc5\x27\x4e\xbd\xc2\xe2\x02\x55\x69\x30\x56\x2e\x1c\x96\x7c\xb4\x4c\xc2\xcb\xa4\x16\x4b\x52\x16\x2a\x79\x96\x97\x91\x55\x4f\xea\x0b\x8f\x43\x0d\xd7\xed\x66\x7b\xdd\xdc\xdc\x6f\xb7\xa8\xf0\xfa\xfa\xdd\xe6\x7e\x75\x7b\x83\xeb\xfb\x55\xdb\x6c\x57\xeb\x5b\x9c\x25\x65\x47\xb1\x9d\xde\x27\x5c\x06\xea\x21\xa0\xef\xd3\xf8\x79\x22\x7d\xe8\x85\x21\x10\xbb\x31\x28\xca\x3c\x24\xfb\xde\xa3\xf4\xf5\xb9\xd7\x7f\x78\x8a\x53\x0f\x97\x7e\x2f\xbd\x7c\x63\xe2\x4b\x7e\x71\x3a\x5a\xe5\xf3\x91\x34\xef\x31\xa8\x5e\x7f\x9d\xbc\x6b\x3a\x34\x1c\x3f\x07\x74\x07\x4c\x72\x95\x67\x69\xac\x68\x83\x4c\x91\x51\xd0\x0c\x08\xf1\x26\xce\x5f\x0b\x25\xc2\xb4\xa8\x3d\x4d\x92\x9f\x9e\x30\x2f\xa4\x90\x2d\x59\x27\x14\xef\x27\x9e\x9d\x36\x94\x3e\x33\xf8\xa4\xb6\x97\x24\x3d\x69\xe9\x75\x4e\x69\xba\x75\xde\xf0\x52\x97\xd5\x5d\xa3\x56\x8d\xba\x7f\x47\xeb\xf5\xe6\x4e\xad\x6f\xb6\x2d\xdd\xab\xe6\xbe\xbb\xbb\x6b\x57\xef\xee\x36\x33\x14\x09\xba\x19\x25\x4f\x77\x7a\x96\x80\x60\x49\xd2\x47\xca\xc5\x96\x62\x7f\xd1\xb6\xad\xe1\x61\xb7\x2b\x87\x8b\xcf\x31\x41\x4b\x63\x40\x73\xf6\x7a\xf3\xb0\xdb\x5d\xc1\x87\x78\xa9\xaa\xea\x6d\xee\xae\x38\x61\xb5\x3d\xec\x5b\x14\x64\x92\x1a\xfe\x88\x45\xd8\x91\xc4\xa1\x96\xd7\xce\x9f\x2a\x69\x18\x16\x87\xe4\x3d\xa0\xd5\x1d\xb1\xec\x71\x94\xde\x85\x1a\xb0\x69\x47\xd3\xce\xfe\x09\x00\x00\xff\xff\xdf\x0b\x23\xe5\xc4\x09\x00\x00"
func pnasnet_5_largeYmlBytes() ([]byte, error) {
return bindataRead(
_pnasnet_5_largeYml,
"PNasNet_5_Large.yml",
)
}
func pnasnet_5_largeYml() (*asset, error) {
bytes, err := pnasnet_5_largeYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "PNasNet_5_Large.yml", size: 2500, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _polynetYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x41\x6f\xdb\x38\x13\xbd\xfb\x57\x0c\xe0\x4b\xfb\xc1\x96\x65\xc9\x72\x1c\x01\xdf\x1e\x36\x87\xed\x5e\x82\x45\x51\xa0\x87\x20\x30\x46\xd4\xc8\xe2\x96\x22\x09\x72\xd4\xc4\xfd\xf5\x0b\x52\x8c\xad\xa0\xe9\xb6\x58\x1f\x2c\x89\xf3\x66\x38\x9c\xf7\x66\x24\x8d\x03\xd5\xf0\x97\x51\xe7\x7b\x62\x58\x42\x78\x06\xd3\xc1\xd9\x8c\x0e\x06\xd3\x92\x5a\x74\x0e\x07\x7a\x32\xee\x4b\xbd\x00\x00\x48\x1e\xe7\x4f\xc6\x89\x1e\x96\x70\x31\x43\x67\x1c\x70\x4f\xc9\x2d\x60\xbf\x92\xf3\xd2\xe8\x1a\xb6\x59\xf1\x0a\x9a\x0c\x20\x8c\xf6\xec\x50\x6a\x5e\xcc\xb0\x39\x2c\x2f\x08\xa9\x3b\xe3\x06\xe4\xe9\x1e\x3c\x0d\xa8\x59\x8a\x8b\x7d\xb2\x2e\x84\xd1\x8c\x52\x93\xab\x61\x09\x97\x07\x0f\xa3\xa7\x16\xd8\x80\x25\x17\x90\x53\x6e\x60\x1d\xb5\x52\x84\x98\x31\xcd\x25\x0c\xa3\x62\x69\x15\x81\x55\xc8\x01\xe8\x41\xa0\x86\x86\xc0\x5b\x12\xb2\x93\xd4\x46\x24\x0e\xed\x7e\x37\xd5\x21\xfc\x84\x1d\x6b\x70\x28\xad\x33\x7f\x93\xe0\x8d\x40\x37\xa8\xb5\x3d\x73\xa8\x4d\x1d\xc1\x6b\x61\xc7\x0b\xfe\xf4\x0b\xf8\x53\xc2\x5b\x2b\xf6\x3b\x45\xbf\xba\x59\x82\x5f\xdc\x7f\xbe\xdd\xdc\xa3\x25\x2f\x9c\xb4\x1c\x09\xf8\x2d\x06\xf8\xd4\x53\xa8\xd3\x3a\xd2\x43\x6d\xaa\x1c\x3d\x5b\x12\xec\x41\x6a\x3b\x72\x20\x64\x90\x5a\xae\x1b\x64\xd1\x93\x0f\xc2\x29\xd7\xa2\x47\xad\x49\xc1\xc7\x3f\x7e\x07\x39\xe0\x69\x5a\xf7\x3d\x5a\x82\x77\x25\x3c\xc3\x07\x78\x86\xcf\xef\x57\xf0\xd4\x93\x23\xf8\x00\xa8\x5b\xf8\x0c\xe8\x28\x45\x9f\x18\x6b\x08\xca\x72\x9b\xc5\x3c\x52\x98\x1e\xbf\x52\x32\x29\x83\x2d\xb5\x21\x01\x36\x80\xe0\x50\x9f\xa2\x6e\x1f\xf2\x15\x6c\x1f\x63\x48\xee\x49\x83\x0e\xf2\x50\xf2\x1b\xb5\x30\x7a\xa9\x4f\x30\x10\x6a\xf8\x3f\x3c\xe4\xd9\xee\x50\xad\x20\xcf\x76\xd5\x3e\x5e\xf2\xfd\xe4\xe6\xb9\x9d\xec\x45\x71\x1b\x0c\x45\xb1\x9b\x2e\xd5\xe3\xc2\x51\x47\x8e\xb4\x20\x1f\x64\x76\x7d\x8a\x0a\x43\x1b\x04\xb7\x81\x27\x6a\xbc\x64\x0a\xb7\xc4\x22\xcb\x60\x2a\x6e\x13\x76\x7f\xdd\x1e\x6b\xe8\x99\xad\xaf\x37\x9b\x93\xe4\x7e\x6c\x32\x61\x86\xcd\x1d\xb6\xa4\x69\x63\x1d\xa5\xca\xaf\xa3\x83\xcf\x12\x6f\x4b\x47\xd6\x99\x76\x14\x52\x9f\xd6\x8e\xfc\xa8\xd8\xff\xf7\x68\x9b\x46\x99\x66\x33\xa0\x67\x72\x33\xd4\x04\xda\xa4\x8b\x35\xea\xac\x89\x33\x7b\x5e\x2c\x41\x49\x41\xda\xc7\x62\x5f\x4f\x93\x16\x6b\x18\xb5\x23\xcf\x4e\x06\x16\x17\xcb\x49\x26\xb1\x3c\x57\xec\xb4\x56\xa7\xce\xeb\xa4\xf3\x9c\xe4\xc4\x67\x4b\x6f\x4c\x91\x75\x34\xd4\x93\x0a\x92\xb8\x97\x30\x93\xec\x4b\x2e\xb3\x58\x09\xf6\x4a\xd7\x01\x92\x74\x3b\x8b\x64\x31\x4c\x25\x26\x17\x39\x8d\x29\x5c\x97\x2e\xad\x04\x40\x8a\x06\xd2\x7c\x9c\x72\xe9\x94\x41\x2e\x8b\x99\x3d\x46\x3e\x2a\x3c\x87\x19\x94\xcf\x0c\x0a\xcf\x66\xe4\x1a\xee\x3e\x7c\x9e\xad\x0a\xa3\x8c\x3b\x86\x43\xd6\xa1\x53\x66\x96\x56\x0e\xa4\xc3\x6c\xf3\x35\x3c\x94\xab\xd0\x05\xf1\xef\x71\x86\x09\x2a\xae\xe1\x61\x5b\x94\xd9\xfe\xa6\x5a\xc1\x76\xbb\xcf\x8a\x43\xd0\x7e\x5e\x66\x55\x99\x3f\xc2\xf2\x07\x12\xff\x1f\x14\x55\x35\x8b\xe4\x05\x2a\xaa\xe1\xa1\x3a\x64\xe5\x6d\xb5\x82\xea\x26\xdb\x16\x79\xbc\x96\x37\xd5\x63\x2c\xf5\xab\x66\xc8\x52\x33\xa4\x48\x66\x64\x3b\xf2\x0b\x9b\xa1\xc4\xb1\x84\x89\x91\xc9\x1a\x8d\x53\xdd\x84\x42\xef\x65\x27\x05\xce\xa6\x2f\xbe\x45\xe6\xe4\x7a\xe5\x62\xf1\x26\x9f\x09\xa5\xb0\x49\x62\x99\xd1\x79\x39\xe5\x8f\x69\xfd\x77\x52\xad\x33\x0d\x36\x52\x49\x96\xe4\xbf\xa7\xb6\x23\xe4\xd1\x91\x3f\x8e\x4e\xd5\xb1\xf9\xea\xcd\xc6\x97\x19\x0e\xf8\xcd\x68\x7c\xf2\xb1\x03\x3d\x1b\x47\x59\x1c\xbd\x99\x71\xa7\x8d\x3f\x6b\x4f\xec\x37\x51\x83\x9a\x38\x2d\x64\xfc\xcc\xdf\x47\x16\x3d\x89\x2f\x7e\x1c\x6a\xd8\xb5\x45\xb9\x6b\xaa\x43\x59\xa2\xc0\xdd\xee\xb6\x38\xe4\xfb\x0a\xb7\x87\xbc\x6d\xca\x7c\xbb\xc7\x45\xec\x97\x20\xe1\x97\x37\x96\x4f\x23\xfb\xe4\xd0\xf6\x71\xb4\x3d\x91\x3c\xf5\xec\xc1\x91\x37\xa3\x13\x34\xd5\x21\xda\x8f\x16\xb9\xaf\x2f\x13\xe4\xa7\xa7\x78\x99\x0c\x69\x8a\xa4\x09\xb1\x7e\x39\x54\x66\xa7\xc3\x48\x7f\x44\x27\x7a\xf9\x75\xf6\x1e\xeb\x50\x79\x82\x25\xc8\x0e\x3c\xf1\x6a\x9a\xd3\x81\xcb\x06\x3d\x85\x5a\x82\xf4\x80\x10\x6e\xc2\x6c\xd7\x90\x22\xcc\xe9\xec\x69\x96\xf6\xfc\x6c\xd3\x42\x0c\xd9\x92\x36\x4c\xe1\x7e\xe6\xd9\x49\x45\xf1\x13\xc6\xbf\xe8\xec\xfb\xf2\x3c\x49\xee\xe5\x94\xd2\x7c\xeb\x69\xc3\x2b\x23\xed\xf6\xa6\xcb\x6f\x9b\xb6\x6d\x6f\xba\xed\x7e\x7f\xb8\xad\x44\xde\x74\x6d\x53\xdc\x96\xa2\xdc\x17\xc5\x02\x99\x9d\x6c\x46\x9e\xde\x16\xf4\xcc\x0e\x41\x13\xc7\x0f\xa0\xab\x2d\xc6\xfe\x22\x75\x5b\xc3\xdd\xfd\x7d\x3a\x5c\x78\x0e\x09\x6a\x1a\x1d\xaa\x8b\xd7\xbb\xbb\xfb\xfb\x15\x7c\x0c\x7f\x59\x96\xbd\x9f\xfa\x2a\x4c\x6c\xa9\x4f\xc7\x16\x19\x3d\x71\x0d\x7f\x06\x12\xa6\xcf\xb9\xb4\x76\xf9\x0c\x8a\xc3\x35\x39\x44\xef\x01\xb5\xec\xc8\xf3\x11\x47\xee\x8d\xab\x01\x9b\x76\x54\xed\xe2\x9f\x00\x00\x00\xff\xff\xe6\xae\x8d\x6f\x18\x0a\x00\x00"
func polynetYmlBytes() ([]byte, error) {
return bindataRead(
_polynetYml,
"PolyNet.yml",
)
}
func polynetYml() (*asset, error) {
bytes, err := polynetYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "PolyNet.yml", size: 2584, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _resnext_101_32x4dYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x4d\x8f\xdb\x36\x10\xbd\xfb\x57\x0c\xe0\x4b\x52\xd8\xb2\x2c\x59\x5e\xaf\x80\xf6\xd0\x2d\xd0\xf4\xb2\x28\x82\x00\x39\x2c\x16\xc6\x88\x1a\x59\x6c\x24\x92\x20\x47\x59\x3b\xbf\xbe\xe0\xc7\x7a\xb5\x48\xd2\x04\xf5\xc1\x92\x38\x6f\x86\xc3\x79\x6f\x46\x52\x38\x52\x0d\xef\xc9\xdd\xd3\x99\xb7\xf9\xf6\x58\x16\xe7\xdd\x1f\xb0\x04\x6f\x00\xdd\xc1\x45\x4f\x16\x46\xdd\xd2\xb0\xe8\x2c\x8e\xf4\xa4\xed\xa7\x7a\x01\x00\x10\x5d\xff\xbe\x7c\xd0\x56\xf4\xb0\x84\xab\x19\x3a\x6d\x81\x7b\x4a\x6e\x1e\xfb\x99\xac\x93\x5a\xd5\xb0\xcd\x8a\x57\xd0\x64\x00\xa1\x95\x63\x8b\x52\xf1\x62\x86\xcd\x61\x79\x45\x48\xd5\x69\x3b\x22\xc7\x7b\x70\x34\xa2\x62\x29\xae\xf6\x68\x5d\x08\xad\x18\xa5\x22\x5b\xc3\x12\xae\x0f\x0e\x26\x47\x2d\xb0\x06\x43\xd6\x23\x63\x6e\x60\x2c\xb5\x52\xf8\x98\x21\xcd\x25\x8c\xd3\xc0\xd2\x0c\x04\x66\x40\xf6\x40\x07\x02\x15\x34\x04\xce\x90\x90\x9d\xa4\x36\x20\x71\x6c\xf7\xbb\x58\x07\xff\x13\x66\xaa\xc1\xa2\x34\x56\xff\x43\x82\x37\x02\xed\x38\xac\xcd\x85\x7d\x6d\xea\x00\x5e\x0b\x33\x5d\xf1\xa7\x9f\xc0\x9f\x12\xde\x18\xb1\xdf\x0d\xf4\xb3\x9b\x25\xf8\xd5\xfd\xc7\xdb\xcd\x3d\x5a\x72\xc2\x4a\xc3\x81\x80\xdf\x42\x80\x0f\x3d\xf9\x3a\xad\x03\x3d\xd4\xa6\xca\xd1\xd9\x90\x60\x07\x52\x99\x89\x3d\x21\xa3\x54\x72\xdd\x20\x8b\x9e\x9c\x17\x4e\xb9\x16\x3d\x2a\x45\x03\xbc\xff\xf3\x77\x90\x23\x9e\xe2\xba\xeb\xd1\x10\xbc\x29\xe1\x0c\xef\xe0\x0c\x1f\xdf\xae\xe0\xa9\x27\x4b\xf0\x0e\x50\xb5\xf0\x11\xd0\x52\x8a\x1e\x19\x6b\x08\x8a\x62\x97\x85\x3c\x52\x98\x1e\x3f\x53\x32\x0d\x1a\x5b\x6a\x7d\x02\xac\x01\xc1\xa2\x3a\x05\xdd\x3e\xe4\x2b\xd8\x3e\x86\x90\xdc\x93\x02\xe5\xe5\x31\xc8\x2f\xd4\xc2\xe4\xa4\x3a\xc1\x48\xa8\xe0\x57\x78\xc8\xb3\xdd\xa1\x5a\x41\x9e\xed\xaa\x7d\xb8\xe4\xfb\xe8\xe6\xb8\x8d\xf6\xa2\xb8\xf5\x86\xa2\xd8\xc5\x4b\xf5\xb8\xb0\xd4\x91\x25\x25\xc8\x79\x99\xbd\x3c\x05\x85\xa1\xf1\x82\xdb\xc0\x13\x35\x4e\x32\xf9\x5b\x62\x91\x65\x10\x8b\xdb\xf8\xdd\x5f\xb7\xc7\x1a\x7a\x66\xe3\xea\xcd\xe6\x24\xb9\x9f\x9a\x4c\xe8\x71\x73\x87\x2d\x29\xda\x18\x4b\xa9\xf2\xeb\xe0\xe0\xb2\xc4\xdb\xd2\x92\xb1\xba\x9d\x84\x54\xa7\xb5\x25\x37\x0d\xec\xfe\x7f\xb4\x4d\x33\xe8\x66\x33\xa2\x63\xb2\x33\x54\x04\x6d\xd2\xc5\x92\x53\x74\xe6\xcc\x5c\x16\x4b\x18\xa4\x20\xe5\x42\xb1\x5f\x4e\x93\x16\x6b\x98\x94\x25\xc7\x56\x7a\x16\x17\xcb\x28\x93\x50\x9e\x17\x6c\x5c\xab\x53\xe7\x75\xd2\x3a\x4e\x72\xe2\x8b\xa1\x6f\x4c\x91\x75\x30\xd4\x51\x05\x49\xdc\x4b\x98\x49\xf6\x39\x97\x59\xac\x04\x7b\xa5\x6b\x0f\x49\xba\x9d\x45\x32\xe8\xa7\x12\x93\x0d\x9c\x86\x14\x5e\x96\xae\xad\x04\x40\x03\x8d\xa4\xf8\x18\x73\xe9\x06\x8d\x5c\x16\x33\x7b\x88\x7c\x1c\xf0\xe2\x67\x50\x3e\x33\x0c\x78\xd1\x13\xd7\x70\xf7\xee\xe3\x6c\x55\xe8\x41\xdb\xa3\x3f\x64\xed\x3b\x65\x66\x69\xe5\x48\xca\xcf\x36\x57\xc3\x43\xb9\x82\x20\xc0\xa2\xd8\x3d\xce\x30\x5e\xc5\x35\x3c\x6c\x8b\x32\xdb\xdf\x54\x2b\xd8\x6e\xf7\x59\x71\xf0\xda\xcf\xcb\xac\x2a\xf3\x47\x58\x7e\x47\xe2\xbf\x40\x51\x55\xb3\x48\x4e\xe0\x40\x35\x3c\x54\x87\xac\xbc\xad\x56\x50\xdd\x64\xdb\x22\x0f\xd7\xf2\xa6\x7a\x0c\xa5\x7e\xd5\x0c\x59\x6a\x86\x14\x49\x4f\x6c\x26\x7e\x66\xd3\x97\x38\x94\x30\x31\x12\xad\xc1\x18\xeb\x26\x06\x74\x4e\x76\x52\xe0\x6c\xfa\xe2\xb7\xc8\x8c\xae\x2f\x5c\x2c\xbe\xc9\x67\x42\x0d\xd8\x24\xb1\xcc\xe8\xbc\x9e\xf2\xfb\xb4\xfe\x37\xa9\xc6\xea\x06\x1b\x39\x48\x96\xe4\xbe\xa6\xb6\x23\xe4\xc9\x92\x3b\x4e\x76\xa8\x43\xf3\xd5\x9b\x8d\x2b\x33\x1c\xf1\x8b\x56\xf8\xe4\x42\x07\x3a\xd6\x96\xb2\x30\x7a\x33\x6d\x4f\x1b\x77\x51\x8e\xd8\x6d\x82\x06\x15\x71\x5a\xc8\xf8\xcc\x5f\x47\x16\x3d\x89\x4f\x6e\x1a\x6b\xd8\xb5\x45\xb9\x6b\xaa\x43\x59\xa2\xc0\xdd\xee\xb6\x38\xe4\xfb\x0a\xb7\x87\xbc\x6d\xca\x7c\xbb\xc7\x45\xe8\x17\x2f\xe1\xe7\x37\x96\x4b\x23\xfb\x64\xd1\xf4\x61\xb4\x3d\x91\x3c\xf5\xec\xc0\x92\xd3\x93\x15\x14\xeb\x10\xec\x47\x83\xdc\xd7\xd7\x09\xf2\xc3\x53\xa4\xc9\xf0\x3c\x45\xd2\x84\x78\xfe\x92\x68\xd7\xcf\xa7\xcb\x4c\x3c\x95\x74\x47\xb4\xa2\x97\x9f\x67\x2f\xb4\x0e\x07\x47\xb0\x04\xd9\x81\x23\x5e\xc5\x81\xed\x49\x6d\xd0\x91\x2f\x2a\x48\x07\x08\xfe\xc6\x0f\x79\x05\x29\xc2\x9c\xd7\x9e\x66\xf9\xcf\x0f\x19\x17\x42\xc8\x96\x94\x66\xf2\xf7\x33\xcf\x4e\x0e\x14\xbe\x65\xdc\xb3\xe0\xbe\xae\xd3\x93\xe4\x5e\xc6\x94\xe6\x5b\xc7\x0d\x5f\xa8\x39\x1c\x4a\x6a\x9a\x9b\x5d\x21\x9a\x7d\x93\x37\xb7\x65\x57\x8a\xaa\x29\x5a\xda\x57\x24\x44\x85\x0b\x64\xb6\xb2\x99\x38\xbe\x36\xe8\xcc\x16\x41\x11\x87\x2f\xa1\x17\x5b\x88\xfd\x49\xaa\xb6\x86\xbb\xfb\xfb\x74\x38\xff\xec\x13\x54\x34\x59\x1c\xae\x5e\x6f\xee\xee\xef\x57\xf0\xde\xff\x65\x59\xf6\x36\x36\x98\x1f\xdd\x52\x9d\x8e\x2d\x32\x3a\xe2\x1a\xfe\xf2\x24\xdc\x13\xfb\x69\x19\xd7\xae\xdf\x43\x61\xca\x26\x87\xe0\x3d\xa2\x92\x1d\x39\x3e\xe2\xc4\xbd\xb6\x35\x60\xd3\x4e\x43\xbb\xf8\x37\x00\x00\xff\xff\x5b\xb2\xd2\x3a\x2a\x0a\x00\x00"
func resnext_101_32x4dYmlBytes() ([]byte, error) {
return bindataRead(
_resnext_101_32x4dYml,
"ResNext_101_32x4D.yml",
)
}
func resnext_101_32x4dYml() (*asset, error) {
bytes, err := resnext_101_32x4dYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "ResNext_101_32x4D.yml", size: 2602, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _resnext_101_64x4dYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x4d\x8f\xdb\x46\x0c\xbd\xfb\x57\x10\xf0\x25\x29\x6c\x59\x9f\x5e\xaf\x80\xf6\xd0\x2d\xd0\xf4\xb2\x28\x82\x00\x39\x2c\x16\x06\x35\xa2\xac\x69\xa4\x19\x61\x86\xca\xda\xf9\xf5\xc5\x7c\xac\x57\x8b\x24\x4d\x50\x1f\x2c\x69\xf8\xc8\xe1\xf0\x3d\x52\x52\x38\x52\x0d\xef\xc9\xde\xd3\x99\xb3\x34\x3b\xee\xcb\x73\xf9\x07\xac\xc1\x19\x40\x77\x70\xd1\xb3\x81\x51\xb7\x34\xac\x3a\x83\x23\x3d\x69\xf3\xa9\x5e\x01\x00\x04\xd7\xbf\x2f\x1f\xb4\x11\x3d\xac\xe1\x6a\x86\x4e\x1b\xe0\x9e\xa2\x9b\xc3\x7e\x26\x63\xa5\x56\x35\x64\x49\xfe\x0a\x1a\x0d\x20\xb4\xb2\x6c\x50\x2a\x5e\x2d\xb0\x29\xac\xaf\x08\xa9\x3a\x6d\x46\xe4\x70\x0f\x96\x46\x54\x2c\xc5\xd5\x1e\xac\x2b\xa1\x15\xa3\x54\x64\x6a\x58\xc3\xf5\xc1\xc2\x6c\xa9\x05\xd6\x30\x91\x71\xc8\x90\x1b\x4c\x86\x5a\x29\x5c\x4c\x9f\xe6\x1a\xc6\x79\x60\x39\x0d\x04\xd3\x80\xec\x80\x16\x04\x2a\x68\x08\xec\x44\x42\x76\x92\x5a\x8f\xc4\xb1\xdd\x97\xa1\x0e\xee\x27\xa6\xb9\x06\x83\x72\x32\xfa\x1f\x12\xbc\x13\x68\xc6\x61\x3b\x5d\xd8\xd5\xa6\xf6\xe0\xad\x98\xe6\x2b\xfe\xf4\x13\xf8\x53\xc4\x4f\x93\xd8\x97\x03\xfd\xec\x66\x11\x7e\x75\xff\xf1\x76\x4b\x8f\x96\xac\x30\x72\x62\x4f\xc0\x6f\x3e\xc0\x87\x9e\x5c\x9d\xb6\x9e\x1e\x6a\x63\xe5\xe8\x3c\x91\x60\x0b\x52\x4d\x33\x3b\x42\x46\xa9\xe4\xb6\x41\x16\x3d\x59\x27\x9c\x62\x2b\x7a\x54\x8a\x06\x78\xff\xe7\xef\x20\x47\x3c\x85\x75\xdb\xe3\x44\xf0\xa6\x80\x33\xbc\x83\x33\x7c\x7c\xbb\x81\xa7\x9e\x0c\xc1\x3b\x40\xd5\xc2\x47\x40\x43\x31\x7a\x60\xac\x21\xc8\xf3\x32\xf1\x79\xc4\x30\x3d\x7e\xa6\x68\x1a\x34\xb6\xd4\xba\x04\x58\x03\x82\x41\x75\xf2\xba\x7d\x48\x37\x90\x3d\xfa\x90\xdc\x93\x02\xe5\xe4\x31\xc8\x2f\xd4\xc2\x6c\xa5\x3a\xc1\x48\xa8\xe0\x57\x78\x48\x93\xf2\x50\x6d\x20\x4d\xca\x6a\xef\x2f\xe9\x3e\xb8\x59\x6e\x83\x3d\xcf\x6f\x9d\x21\xcf\xcb\x70\xa9\x1e\x57\x86\x3a\x32\xa4\x04\x59\x27\xb3\x97\x27\xaf\x30\x9c\x9c\xe0\x76\xf0\x44\x8d\x95\x4c\xee\x96\x58\x24\x09\x84\xe2\x36\x6e\xf7\xd7\xed\xb1\x85\x9e\x79\xb2\xf5\x6e\x77\x92\xdc\xcf\x4d\x22\xf4\xb8\xbb\xc3\x96\x14\xed\x26\x43\xb1\xf2\x5b\xef\x60\x93\xc8\xdb\xda\xd0\x64\x74\x3b\x0b\xa9\x4e\x5b\x43\x76\x1e\xd8\xfe\xff\x68\xbb\x66\xd0\xcd\x6e\x44\xcb\x64\x16\xa8\x00\xda\xc5\x8b\x21\xab\xe8\xcc\xc9\x74\x59\xad\x61\x90\x82\x94\xf5\xc5\x7e\x39\x4d\x5c\xac\x61\x56\x86\x2c\x1b\xe9\x58\x5c\xad\x83\x4c\x7c\x79\x5e\xb0\x61\xad\x8e\x9d\xd7\x49\x63\x39\xca\x89\x2f\x13\x7d\x63\x8a\x6c\xbd\xa1\x0e\x2a\x88\xe2\x5e\xc3\x42\xb2\xcf\xb9\x2c\x62\x45\xd8\x2b\x5d\x3b\x48\xd4\xed\x22\xd2\x84\x6e\x2a\x31\x19\xcf\xa9\x4f\xe1\x65\xe9\xda\x4a\x00\x34\xd0\x48\x8a\x8f\x21\x97\x6e\xd0\xc8\x45\xbe\xb0\xfb\xc8\xc7\x01\x2f\x6e\x06\xa5\x0b\xc3\x80\x17\x3d\x73\x0d\x77\xef\x3e\x2e\x56\x85\x1e\xb4\x39\xba\x43\xd6\xae\x53\x16\x96\x56\x8e\xa4\xdc\x6c\xb3\x35\x3c\x14\x1b\xf0\x02\xcc\xf3\xf2\x71\x81\x71\x2a\xae\xe1\x21\xcb\x8b\x64\x7f\x53\x6d\x20\xcb\xf6\x49\x7e\x70\xda\x4f\x8b\xa4\x2a\xd2\x47\x58\x7f\x47\xe2\xbf\x40\x5e\x55\x8b\x48\x56\xe0\x40\x35\x3c\x54\x87\xa4\xb8\xad\x36\x50\xdd\x24\x59\x9e\xfa\x6b\x71\x53\x3d\xfa\x52\xbf\x6a\x86\x24\x36\x43\x8c\xa4\x67\x9e\x66\x7e\x66\xd3\x95\xd8\x97\x30\x32\x12\xac\xde\x18\xea\x26\x06\xb4\x56\x76\x52\xe0\x62\xfa\xe2\xb7\xc8\x0c\xae\x2f\x5c\xac\xbe\xc9\x67\x44\x0d\xd8\x44\xb1\x2c\xe8\xbc\x9e\xf2\xfb\xb4\xfe\x37\xa9\x93\xd1\x0d\x36\x72\x90\x2c\xc9\x7e\x4d\x6d\x47\xc8\xb3\x21\x7b\x9c\xcd\x50\xfb\xe6\xab\x77\x3b\x5b\x24\x38\xe2\x17\xad\xf0\xc9\xfa\x0e\xb4\xac\x0d\x25\x7e\xf4\x26\xda\x9c\x76\xf6\xa2\x2c\xb1\xdd\x79\x0d\x2a\xe2\xb8\x90\xf0\x99\xbf\x8e\x2c\x7a\x12\x9f\xec\x3c\xd6\x50\xb6\x79\x51\x36\xd5\xa1\x28\x50\x60\x59\xde\xe6\x87\x74\x5f\x61\x76\x48\xdb\xa6\x48\xb3\x3d\xae\x7c\xbf\x38\x09\x3f\xbf\xb1\x6c\x1c\xd9\x27\x83\x53\xef\x47\xdb\x13\xc9\x53\xcf\x16\x0c\x59\x3d\x1b\x41\xa1\x0e\xde\x7e\x9c\x90\xfb\xfa\x3a\x41\x7e\x78\x8a\x38\x19\x9e\xa7\x48\x9c\x10\xcf\x5f\x12\xed\xf6\xf9\x74\xc9\x14\x4e\x25\xed\x11\x8d\xe8\xe5\xe7\xc5\x0b\xad\xc3\xc1\x12\xac\x41\x76\x60\x89\x37\x61\x60\x3b\x52\x1b\xb4\xe4\x8a\x0a\xd2\x02\x82\xbb\x71\x43\x5e\x41\x8c\xb0\xe4\xb5\xa7\x45\xfe\xcb\x43\x86\x05\x1f\xb2\x25\xa5\x99\xdc\xfd\xc2\xb3\x93\x03\xf9\x6f\x19\xfb\x2c\xb8\xaf\xeb\xf4\x24\xb9\x97\x21\xa5\xe5\xd6\x61\xc3\x17\x6a\xd2\x62\xdf\x95\x69\x56\x74\x88\xe5\x61\x2f\xaa\xa2\xcc\x8a\x7d\x75\x93\x95\x07\x71\xbb\xcf\x0f\xd9\x0a\x99\x8d\x6c\x66\x0e\xaf\x0d\x3a\xb3\x41\x50\xc4\xfe\x4b\xe8\xc5\xe6\x63\x7f\x92\xaa\xad\xe1\xee\xfe\x3e\x1e\xce\x3d\xbb\x04\x15\xcd\x06\x87\xab\xd7\x9b\xbb\xfb\xfb\x0d\xbc\x77\x7f\x49\x92\xbc\x0d\x0d\xe6\x46\xb7\x54\xa7\x63\x8b\x8c\x96\xb8\x86\xbf\x1c\x09\xf7\xc4\x6e\x5a\x86\xb5\xeb\xf7\x90\x9f\xb2\xd1\xc1\x7b\x8f\xa8\x64\x47\x96\x8f\x38\x73\xaf\x4d\x0d\xd8\xb4\xf3\xd0\xae\xfe\x0d\x00\x00\xff\xff\xcd\xa1\x63\xd3\x2a\x0a\x00\x00"
func resnext_101_64x4dYmlBytes() ([]byte, error) {
return bindataRead(
_resnext_101_64x4dYml,
"ResNext_101_64x4D.yml",
)
}
func resnext_101_64x4dYml() (*asset, error) {
bytes, err := resnext_101_64x4dYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "ResNext_101_64x4D.yml", size: 2602, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _senet_154Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x4d\x8f\xdb\x36\x13\xbe\xfb\x57\x0c\xe0\x4b\xf2\xc2\x96\x6d\x7d\x78\xbd\x02\xde\x1e\xba\x28\x9a\x5e\x16\x45\x1a\x20\x87\xc5\xc2\x18\x51\x23\x8b\x8d\x44\x12\xe4\x28\xbb\xce\xaf\x2f\xf8\xb1\xb6\x16\x49\x9a\xa0\x3e\x58\x12\xe7\x99\xe1\x70\x9e\x67\x46\x52\x38\x52\x0d\x7f\xfd\x76\x4f\x7c\xdc\x55\x25\x2c\xc1\xaf\x80\xee\xe0\xac\x27\x0b\xa3\x6e\x69\x58\x74\x16\x47\x7a\xd2\xf6\x53\xbd\x00\x00\x88\x3e\x7f\x9e\x3f\x68\x2b\x7a\x58\xc2\xc5\x0c\x9d\xb6\xc0\x3d\x25\x37\x8f\xfd\x4c\xd6\x49\xad\x6a\xd8\x65\xf9\x2b\x68\x32\x80\xd0\xca\xb1\x45\xa9\x78\x31\xc3\x6e\x61\x79\x41\x48\xd5\x69\x3b\x22\xc7\x7b\x70\x34\xa2\x62\x29\x2e\xf6\x68\x5d\x08\xad\x18\xa5\x22\x5b\xc3\x12\x2e\x0f\x0e\x26\x47\x2d\xb0\x06\x43\xd6\x23\x63\x6e\x60\x2c\xb5\x52\xf8\x98\x21\xcd\x25\x8c\xd3\xc0\xd2\x0c\x04\x66\x40\xf6\x40\x07\x02\x15\x34\x04\xce\x90\x90\x9d\xa4\x36\x20\x71\x6c\xf7\x65\xac\x83\xff\x09\x33\xd5\x60\x51\x1a\xab\xff\x26\xc1\x1b\x81\x76\x1c\xd6\xe6\xcc\xbe\x36\x75\x00\xaf\x85\x99\x2e\xf8\xd3\x4f\xe0\x4f\x09\x6f\x8c\xd8\x97\x03\xfd\xec\x66\x09\x7e\x71\xff\xf1\x76\x73\x8f\x96\x9c\xb0\xd2\x70\x20\xe0\x97\x10\xe0\x43\x4f\xbe\x4e\xeb\x40\x0f\xb5\xa9\x72\xf4\x6c\x48\xb0\x03\xa9\xcc\xc4\x9e\x90\x51\x2a\xb9\x6e\x90\x45\x4f\xce\x0b\xa7\x58\x8b\x1e\x95\xa2\x01\xde\xff\xfe\x2b\xc8\x11\x4f\x71\xdd\xf5\x68\x08\xde\x14\xf0\x0c\xef\xe0\x19\x3e\xbe\x5d\xc1\x53\x4f\x96\xe0\x1d\xa0\x6a\xe1\x23\xa0\xa5\x14\x3d\x32\xd6\x10\xe4\x79\x99\x85\x3c\x52\x98\x1e\x3f\x53\x32\x0d\x1a\x5b\x6a\x7d\x02\xac\x01\xc1\xa2\x3a\x05\xdd\x3e\x6c\x57\xb0\x7b\x0c\x21\xb9\x27\x05\xca\xcb\x63\x90\x5f\xa8\x85\xc9\x49\x75\x82\x91\x50\xc1\xff\xe1\x61\x9b\x95\x87\x6a\x05\xdb\xac\xac\xf6\xe1\xb2\xdd\x47\x37\xc7\x6d\xb4\xe7\xf9\xad\x37\xe4\x79\x19\x2f\xd5\xe3\xc2\x52\x47\x96\x94\x20\xe7\x65\x76\x7d\x0a\x0a\x43\xe3\x05\xb7\x81\x27\x6a\x9c\x64\xf2\xb7\xc4\x22\xcb\x20\x16\xb7\xf1\xbb\xbf\x6e\x8f\x35\xf4\xcc\xc6\xd5\x9b\xcd\x49\x72\x3f\x35\x99\xd0\xe3\xe6\x0e\x5b\x52\xb4\x31\x96\x52\xe5\xd7\xc1\xc1\x65\x89\xb7\xa5\x25\x63\x75\x3b\x09\xa9\x4e\x6b\x4b\x6e\x1a\xd8\xfd\xf7\x68\x9b\x66\xd0\xcd\x66\x44\xc7\x64\x67\xa8\x08\xda\xa4\x8b\x23\x45\x9c\x99\xf3\x62\x09\x83\x14\xa4\x5c\x28\xf5\xf5\x2c\x69\xb1\x86\x49\x59\x72\x6c\xa5\xe7\x70\xb1\x8c\x22\x09\xc5\xb9\x62\xe3\x5a\x9d\xfa\xae\x93\xd6\x71\x12\x13\x9f\x0d\x7d\x63\x86\xac\x83\xa1\x8e\x1a\x48\xd2\x5e\xc2\x4c\xb0\x2f\xb9\xcc\x62\x25\xd8\x2b\x55\x7b\x48\x52\xed\x2c\x92\x41\x3f\x93\x98\x6c\x60\x34\xa4\x70\x5d\xba\x34\x12\x00\x0d\x34\x92\xe2\x63\xcc\xa5\x1b\x34\x72\x91\xcf\xec\x21\xf2\x71\xc0\xb3\x9f\x40\xdb\x99\x61\xc0\xb3\x9e\xb8\x86\xbb\x77\x1f\x67\xab\x42\x0f\xda\x1e\xfd\x21\x6b\xdf\x27\x33\x4b\x2b\x47\x52\x7e\xb2\xb9\x1a\x1e\x8a\x15\x04\xf9\xe5\x79\xf9\x38\xc3\x78\x0d\xd7\xf0\xb0\xcb\x8b\x6c\x7f\x53\xad\x60\xb7\xdb\x67\xf9\xc1\x2b\x7f\x5b\x64\x55\xb1\x7d\x84\xe5\x77\x04\xfe\x3f\xc8\xab\x6a\x16\xc9\x09\x1c\xa8\x86\x87\xea\x90\x15\xb7\xd5\x0a\xaa\x9b\x6c\x97\x6f\xc3\xb5\xb8\xa9\x1e\x43\xa9\x5f\xb5\x42\x96\x5a\x21\x45\xd2\x13\x9b\x89\x5f\xd8\xf4\x25\x0e\x25\x4c\x8c\x44\x6b\x30\xc6\xba\x89\x01\x9d\x93\x9d\x14\x38\x9b\xbd\xf8\x2d\x32\xa3\xeb\x95\x8b\xc5\x37\xf9\x4c\xa8\x01\x9b\x24\x96\x19\x9d\x97\x53\x7e\x9f\xd6\x7f\x27\xd5\x58\xdd\x60\x23\x07\xc9\x92\xdc\xd7\xd4\x76\x84\x3c\x59\x72\xc7\xc9\x0e\x75\x68\xbd\x7a\xb3\x71\x45\x86\x23\x7e\xd1\x0a\x9f\x5c\xe8\x3f\xc7\xda\x52\x16\x06\x6f\xa6\xed\x69\xe3\xce\xca\x11\xbb\x4d\xd0\xa0\x22\x4e\x0b\x19\x3f\xf3\xd7\x91\x45\x4f\xe2\x93\x9b\xc6\x1a\xca\x36\x2f\xca\xa6\x3a\x14\x05\x0a\x2c\xcb\xdb\xfc\xb0\xdd\x57\xb8\x3b\x6c\xdb\xa6\xd8\xee\xf6\xb8\x08\xfd\xe2\x25\xfc\xf2\xbe\x72\x69\x60\x9f\x2c\x9a\x3e\x0c\xb6\x27\x92\xa7\x9e\x1d\x58\x72\x7a\xb2\x82\x62\x1d\x82\xfd\x68\x90\xfb\xfa\x32\x3f\x7e\x78\x8a\x34\x17\x5e\x66\x48\x98\x0f\xbb\xaa\x5c\xbf\x9c\x2a\x33\xf1\x34\xd2\x1d\xd1\x8a\x5e\x7e\x9e\xbd\xc6\x3a\x1c\x1c\xc1\x12\x64\x07\x8e\x78\x15\xc7\xb4\x27\xb3\x41\x47\xbe\x98\x20\x1d\x20\xf8\x1b\x3f\xda\x15\xa4\x08\x73\x3e\x7b\x9a\xe5\x3d\x3f\x5c\x5c\x08\x21\x5b\x52\x9a\xc9\xdf\xcf\x3c\x3b\x39\x50\xf8\x82\x71\x2f\x42\xfb\xba\x3e\x4f\x92\x7b\x19\x53\x9a\x6f\x1d\x37\xbc\x52\x72\x7b\xb8\x15\x05\xde\xe4\xd4\x60\x57\x6c\xab\xdb\x7d\x53\x34\x87\xa6\xdb\x97\x87\xc3\xee\xb0\x45\xb1\x40\x66\x2b\x9b\x89\xe3\xcb\x82\x9e\xd9\x22\x28\xe2\xf0\xfd\x73\xb5\x85\xd8\x9f\xa4\x6a\x6b\xb8\xbb\xbf\x4f\x87\xf3\xcf\x3e\x41\x45\x93\xc5\xe1\xe2\xf5\xe6\xee\xfe\x7e\x05\xef\xfd\x5f\x96\x65\x6f\x63\x63\xf9\x81\x2d\xd5\xe9\xd8\x22\xa3\x23\xae\xe1\x0f\x4f\xc2\x3d\xb1\x9f\x92\x71\xed\xf2\x15\x14\xa6\x6b\x72\x08\xde\x23\x2a\xd9\x91\xe3\x23\x4e\xdc\x6b\x5b\x03\x36\xed\x34\xb4\x8b\x7f\x02\x00\x00\xff\xff\xb4\xb3\xdc\x51\x19\x0a\x00\x00"
func senet_154YmlBytes() ([]byte, error) {
return bindataRead(
_senet_154Yml,
"SENet_154.yml",
)
}
func senet_154Yml() (*asset, error) {
bytes, err := senet_154YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "SENet_154.yml", size: 2585, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _se_resnet_101Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x4d\x8f\xdb\x46\x0f\xbe\xfb\x57\x10\xf0\x25\x79\x61\xcb\xfa\xb0\xb4\x5e\x01\x6f\x0f\x5d\x14\x4d\x2f\x8b\x22\x0d\x90\xc3\x62\x61\x50\x23\xca\x9a\x46\x9a\x11\x66\xa8\xec\x3a\xbf\xbe\x98\x8f\xb5\xb5\x48\xd2\x04\xf5\xc1\x92\x86\x0f\x39\x1c\x3e\x0f\x29\x29\x1c\xa9\x86\xbf\x7e\x3b\xbe\x27\x7b\x4f\x7c\xcc\xd2\x0c\xd6\xe0\x56\x41\x77\x70\xd6\xb3\x81\x51\xb7\x34\xac\x3a\x83\x23\x3d\x69\xf3\xa9\x5e\x01\x00\x04\xbf\x3f\xcf\x1f\xb4\x11\x3d\xac\xe1\x62\x86\x4e\x1b\xe0\x9e\xa2\x9b\xc3\x7e\x26\x63\xa5\x56\x35\x64\x49\xfe\x0a\x1a\x0d\x20\xb4\xb2\x6c\x50\x2a\x5e\x2d\xb0\x29\xac\x2f\x08\xa9\x3a\x6d\x46\xe4\x70\x0f\x96\x46\x54\x2c\xc5\xc5\x1e\xac\x2b\xa1\x15\xa3\x54\x64\x6a\x58\xc3\xe5\xc1\xc2\x6c\xa9\x05\xd6\x30\x91\x71\xc8\x90\x1b\x4c\x86\x5a\x29\x5c\x4c\x9f\xe6\x1a\xc6\x79\x60\x39\x0d\x04\xd3\x80\xec\x80\x16\x04\x2a\x68\x08\xec\x44\x42\x76\x92\x5a\x8f\xc4\xb1\xad\xf6\xa1\x0e\xee\x27\xa6\xb9\x06\x83\x72\x32\xfa\x6f\x12\xbc\x13\x68\xc6\x61\x3b\x9d\xd9\xd5\xa6\xf6\xe0\xad\x98\xe6\x0b\xfe\xf4\x13\xf8\x53\xc4\x4f\x93\xa8\xf6\x03\xfd\xec\x66\x11\x7e\x71\xff\xf1\x76\x4b\x8f\x96\xac\x30\x72\x62\x4f\xc0\x2f\x3e\xc0\x87\x9e\x5c\x9d\xb6\x9e\x1e\x6a\x63\xe5\xe8\x79\x22\xc1\x16\xa4\x9a\x66\x76\x84\x8c\x52\xc9\x6d\x83\x2c\x7a\xb2\x4e\x38\xc5\x56\xf4\xa8\x14\x0d\xf0\xfe\xf7\x5f\x41\x8e\x78\x0a\xeb\xb6\xc7\x89\xe0\x4d\x01\xcf\xf0\x0e\x9e\xe1\xe3\xdb\x0d\x3c\xf5\x64\x08\xde\x01\xaa\x16\x3e\x02\x1a\x8a\xd1\x03\x63\x0d\x41\x9e\xef\x13\x9f\x47\x0c\xd3\xe3\x67\x8a\xa6\x41\x63\x4b\xad\x4b\x80\x35\x20\x18\x54\x27\xaf\xdb\x87\x74\x03\xd9\xa3\x0f\xc9\x3d\x29\x50\x4e\x1e\x83\xfc\x42\x2d\xcc\x56\xaa\x13\x8c\x84\x0a\xfe\x0f\x0f\x69\xb2\x3f\x94\x1b\x48\x93\x7d\x59\xf9\x4b\x5a\x05\x37\xcb\x6d\xb0\xe7\xf9\xad\x33\xe4\xf9\x3e\x5c\xca\xc7\x95\xa1\x8e\x0c\x29\x41\xd6\xc9\xec\xfa\xe4\x15\x86\x93\x13\xdc\x0e\x9e\xa8\xb1\x92\xc9\xdd\x12\x8b\x24\x81\x50\xdc\xc6\xed\xfe\xba\x3d\xb6\xd0\x33\x4f\xb6\xde\xed\x4e\x92\xfb\xb9\x49\x84\x1e\x77\x77\xd8\x92\xa2\xdd\x64\x28\x56\x7e\xeb\x1d\x6c\x12\x79\x5b\x1b\x9a\x8c\x6e\x67\x21\xd5\x69\x6b\xc8\xce\x03\xdb\xff\x1e\x6d\xd7\x0c\xba\xd9\x8d\x68\x99\xcc\x02\x15\x40\xbb\x78\xb1\xa4\x88\x93\xe9\xbc\x5a\xc3\x20\x05\x29\xeb\x4b\x7d\x3d\x4b\x5c\xac\x61\x56\x86\x2c\x1b\xe9\x38\x5c\xad\x83\x48\x7c\x71\xae\xd8\xb0\x56\xc7\xbe\xeb\xa4\xb1\x1c\xc5\xc4\xe7\x89\xbe\x31\x43\xb6\xde\x50\x07\x0d\x44\x69\xaf\x61\x21\xd8\x97\x5c\x16\xb1\x22\xec\x95\xaa\x1d\x24\xaa\x76\x11\x69\x42\x37\x93\x98\x8c\x67\xd4\xa7\x70\x5d\xba\x34\x12\x00\x0d\x34\x92\xe2\x63\xc8\xa5\x1b\x34\x72\x91\x2f\xec\x3e\xf2\x71\xc0\xb3\x9b\x40\xe9\xc2\x30\xe0\x59\xcf\x5c\xc3\xdd\xbb\x8f\x8b\x55\xa1\x07\x6d\x8e\xee\x90\xb5\xeb\x93\x85\xa5\x95\x23\x29\x37\xd9\x6c\x0d\x0f\xc5\x06\xbc\xfc\xf2\x7c\xff\xb8\xc0\x38\x0d\xd7\xf0\x90\xe5\x45\x52\xdd\x94\x1b\xc8\xb2\x2a\xc9\x0f\x4e\xf9\x69\x91\x94\x45\xfa\x08\xeb\xef\x08\xfc\x7f\x90\x97\xe5\x22\x92\x15\x38\x50\x0d\x0f\xe5\x21\x29\x6e\xcb\x0d\x94\x37\x49\x96\xa7\xfe\x5a\xdc\x94\x8f\xbe\xd4\xaf\x5a\x21\x89\xad\x10\x23\xe9\x99\xa7\x99\x5f\xd8\x74\x25\xf6\x25\x8c\x8c\x04\xab\x37\x86\xba\x89\x01\xad\x95\x9d\x14\xb8\x98\xbd\xf8\x2d\x32\x83\xeb\x95\x8b\xd5\x37\xf9\x8c\xa8\x01\x9b\x28\x96\x05\x9d\x97\x53\x7e\x9f\xd6\x7f\x27\x75\x32\xba\xc1\x46\x0e\x92\x25\xd9\xaf\xa9\xed\x08\x79\x36\x64\x8f\xb3\x19\x6a\xdf\x7a\xf5\x6e\x67\x8b\x04\x47\xfc\xa2\x15\x3e\x59\xdf\x7f\x96\xb5\xa1\xc4\x0f\xde\x44\x9b\xd3\xce\x9e\x95\x25\xb6\x3b\xaf\x41\x45\x1c\x17\x12\x7e\xe6\xaf\x23\x8b\x9e\xc4\x27\x3b\x8f\x35\xec\xdb\xbc\xd8\x37\xe5\xa1\x28\x50\xe0\x7e\x7f\x9b\x1f\xd2\xaa\xc4\xec\x90\xb6\x4d\x91\x66\x15\xae\x7c\xbf\x38\x09\xbf\xbc\xaf\x6c\x1c\xd8\x27\x83\x53\xef\x07\xdb\x13\xc9\x53\xcf\x16\x0c\x59\x3d\x1b\x41\xa1\x0e\xde\x7e\x9c\x90\xfb\xfa\x32\x3f\x7e\x78\x8a\x38\x17\x5e\x66\x88\xa5\xa3\x21\xab\x88\xb3\x34\xdb\xbe\x9c\x2c\x99\xc2\x89\xa4\x3d\xa2\x11\xbd\xfc\xbc\x78\x95\x75\x38\x58\x82\x35\xc8\x0e\x2c\xf1\x26\x8c\x6a\x47\x68\x83\x96\x5c\x41\x41\x5a\x40\x70\x37\x6e\xbc\x2b\x88\x11\x96\x9c\xf6\xb4\xc8\x7d\x79\xc0\xb0\xe0\x43\xb6\xa4\x34\x93\xbb\x5f\x78\x76\x72\x20\xff\x15\x63\x5f\xc4\xf6\x75\x8d\x9e\x24\xf7\x32\xa4\xb4\xdc\x3a\x6c\x78\xa5\xe5\x76\x9f\xa1\x38\x14\x55\x9a\x55\x87\xac\x48\x2b\xaa\xca\xbc\xbd\xa9\x1a\x12\xe5\x6d\x55\x75\x87\x15\x32\x1b\xd9\xcc\x1c\x5e\x18\xf4\xcc\x06\x41\x11\xfb\x6f\xa0\xab\xcd\xc7\xfe\x24\x55\x5b\xc3\xdd\xfd\x7d\x3c\x9c\x7b\x76\x09\x2a\x9a\x0d\x0e\x17\xaf\x37\x77\xf7\xf7\x1b\x78\xef\xfe\x92\x24\x79\x1b\x9a\xcb\x0d\x6d\xa9\x4e\xc7\x16\x19\x2d\x71\x0d\x7f\x38\x12\xee\x89\xdd\xa4\x0c\x6b\x97\x2f\x21\x3f\x61\xa3\x83\xf7\x1e\x51\xc9\x8e\x2c\x1f\x71\xe6\x5e\x9b\x1a\xb0\x69\xe7\xa1\x5d\xfd\x13\x00\x00\xff\xff\x88\x3a\x28\x2e\x21\x0a\x00\x00"
func se_resnet_101YmlBytes() ([]byte, error) {
return bindataRead(
_se_resnet_101Yml,
"SE_ResNet_101.yml",
)
}
func se_resnet_101Yml() (*asset, error) {
bytes, err := se_resnet_101YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "SE_ResNet_101.yml", size: 2593, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _se_resnet_152Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x4f\x8f\xdb\xb6\x13\xbd\xfb\x53\x0c\xe0\x4b\xf2\x83\x2d\xcb\x92\xe5\x75\x04\xfc\x7a\xe8\xa2\x68\x7a\x59\x14\x69\x80\x1c\x16\x0b\x63\x44\x8d\x2c\x36\x12\x49\x90\xa3\xec\x3a\x9f\xbe\xe0\x9f\xb5\xb5\xc8\xa6\x09\xea\x83\x25\x71\xde\x0c\x87\xf3\xde\x8c\xa4\x70\xa4\x1a\xfe\xfa\xed\xf8\x81\xdc\x1d\xf1\x71\x5b\x15\xb0\x04\xbf\x0a\xba\x83\xb3\x9e\x2c\x8c\xba\xa5\x61\xd1\x59\x1c\xe9\x51\xdb\xcf\xf5\x02\x00\x20\xfa\xfd\x79\xfe\xa8\xad\xe8\x61\x09\x17\x33\x74\xda\x02\xf7\x94\xdc\x3c\xf6\x0b\x59\x27\xb5\xaa\x61\x9b\x15\x2f\xa0\xc9\x00\x42\x2b\xc7\x16\xa5\xe2\xc5\x0c\x9b\xc3\xf2\x82\x90\xaa\xd3\x76\x44\x8e\xf7\xe0\x68\x44\xc5\x52\x5c\xec\xd1\xba\x10\x5a\x31\x4a\x45\xb6\x86\x25\x5c\x1e\x1c\x4c\x8e\x5a\x60\x0d\x86\xac\x47\xc6\xdc\xc0\x58\x6a\xa5\xf0\x31\x43\x9a\x4b\x18\xa7\x81\xa5\x19\x08\xcc\x80\xec\x81\x0e\x04\x2a\x68\x08\x9c\x21\x21\x3b\x49\x6d\x40\xe2\xd8\xee\x77\xb1\x0e\xfe\x27\xcc\x54\x83\x45\x69\xac\xfe\x9b\x04\x6f\x04\xda\x71\x58\x9b\x33\xfb\xda\xd4\x01\xbc\x16\x66\xba\xe0\x4f\x3f\x81\x3f\x25\xbc\x31\x62\xbf\x1b\xe8\x67\x37\x4b\xf0\x8b\xfb\x8f\xb7\x9b\x7b\xb4\xe4\x84\x95\x86\x03\x01\xbf\x84\x00\x1f\x7b\xf2\x75\x5a\x07\x7a\xa8\x4d\x95\xa3\x27\x43\x82\x1d\x48\x65\x26\xf6\x84\x8c\x52\xc9\x75\x83\x2c\x7a\x72\x5e\x38\xe5\x5a\xf4\xa8\x14\x0d\xf0\xe1\xf7\x5f\x41\x8e\x78\x8a\xeb\xae\x47\x43\xf0\xa6\x84\x27\x78\x0f\x4f\xf0\xe9\xed\x0a\x1e\x7b\xb2\x04\xef\x01\x55\x0b\x9f\x00\x2d\xa5\xe8\x91\xb1\x86\xa0\x28\x76\x59\xc8\x23\x85\xe9\xf1\x0b\x25\xd3\xa0\xb1\xa5\xd6\x27\xc0\x1a\x10\x2c\xaa\x53\xd0\xed\x7d\xbe\x82\xed\x43\x08\xc9\x3d\x29\x50\x5e\x1e\x83\xfc\x4a\x2d\x4c\x4e\xaa\x13\x8c\x84\x0a\xfe\x0f\xf7\x79\xb6\x3b\x54\x2b\xc8\xb3\x5d\xb5\x0f\x97\x7c\x1f\xdd\x1c\xb7\xd1\x5e\x14\xef\xbc\xa1\x28\x76\xf1\x52\x3d\x2c\x2c\x75\x64\x49\x09\x72\x5e\x66\xd7\xa7\xa0\x30\x34\x5e\x70\x1b\x78\xa4\xc6\x49\x26\x7f\x4b\x2c\xb2\x0c\x62\x71\x1b\xbf\xfb\xcb\xf6\x58\x43\xcf\x6c\x5c\xbd\xd9\x9c\x24\xf7\x53\x93\x09\x3d\x6e\x6e\xb1\x25\x45\x1b\x63\x29\x55\x7e\x1d\x1c\x5c\x96\x78\x5b\x5a\x32\x56\xb7\x93\x90\xea\xb4\xb6\xe4\xa6\x81\xdd\x7f\x8f\xb6\x69\x06\xdd\x6c\x46\x74\x4c\x76\x86\x8a\xa0\x4d\xba\x38\x52\xc4\x99\x39\x2f\x96\x30\x48\x41\xca\x85\x52\x5f\xcf\x92\x16\x6b\x98\x94\x25\xc7\x56\x7a\x0e\x17\xcb\x28\x92\x50\x9c\x2b\x36\xae\xd5\xa9\xef\x3a\x69\x1d\x27\x31\xf1\xd9\xd0\x2b\x33\x64\x1d\x0c\x75\xd4\x40\x92\xf6\x12\x66\x82\x7d\xce\x65\x16\x2b\xc1\x5e\xa8\xda\x43\x92\x6a\x67\x91\x0c\xfa\x99\xc4\x64\x03\xa3\x21\x85\xeb\xd2\xa5\x91\x00\x68\xa0\x91\x14\x1f\x63\x2e\xdd\xa0\x91\xcb\x62\x66\x0f\x91\x8f\x03\x9e\xfd\x04\xca\x67\x86\x01\xcf\x7a\xe2\x1a\x6e\xdf\x7f\x9a\xad\x0a\x3d\x68\x7b\xf4\x87\xac\x7d\x9f\xcc\x2c\xad\x1c\x49\xf9\xc9\xe6\x6a\xb8\x2f\x57\x10\xe4\x57\x14\xbb\x87\x19\xc6\x6b\xb8\x86\xfb\x6d\x51\x66\xfb\x9b\x6a\x05\xdb\xed\x3e\x2b\x0e\x5e\xf9\x79\x99\x55\x65\xfe\x00\xcb\xef\x08\xfc\x7f\x50\x54\xd5\x2c\x92\x13\x38\x50\x0d\xf7\xd5\x21\x2b\xdf\x55\x2b\xa8\x6e\xb2\x6d\x91\x87\x6b\x79\x53\x3d\x84\x52\xbf\x68\x85\x2c\xb5\x42\x8a\xa4\x27\x36\x13\x3f\xb3\xe9\x4b\x1c\x4a\x98\x18\x89\xd6\x60\x8c\x75\x13\x03\x3a\x27\x3b\x29\x70\x36\x7b\xf1\x35\x32\xa3\xeb\x95\x8b\xc5\xab\x7c\x26\xd4\x80\x4d\x12\xcb\x8c\xce\xcb\x29\xbf\x4f\xeb\xbf\x93\x6a\xac\x6e\xb0\x91\x83\x64\x49\xee\x5b\x6a\x3b\x42\x9e\x2c\xb9\xe3\x64\x87\x3a\xb4\x5e\xbd\xd9\xb8\x32\xc3\x11\xbf\x6a\x85\x8f\x2e\xf4\x9f\x63\x6d\x29\x0b\x83\x37\xd3\xf6\xb4\x71\x67\xe5\x88\xdd\x26\x68\x50\x11\xa7\x85\x8c\x9f\xf8\xdb\xc8\xa2\x27\xf1\xd9\x4d\x63\x0d\xbb\xb6\x28\x77\x4d\x75\x28\x4b\x14\xb8\xdb\xbd\x2b\x0e\xf9\xbe\xc2\xed\x21\x6f\x9b\x32\xdf\xee\x71\x11\xfa\xc5\x4b\xf8\xf9\x7d\xe5\xd2\xc0\x3e\x59\x34\x7d\x18\x6c\x8f\x24\x4f\x3d\x3b\xb0\xe4\xf4\x64\x05\xc5\x3a\x04\xfb\xd1\x20\xf7\xf5\x65\x7e\xfc\xf0\x14\x69\x2e\x3c\xcf\x10\x47\x47\x4b\x4e\x11\x6f\xab\x62\xfd\x7c\xb2\xcc\xc4\x13\x49\x77\x44\x2b\x7a\xf9\x65\xf6\x2a\xeb\x70\x70\x04\x4b\x90\x1d\x38\xe2\x55\x1c\xd5\x9e\xd0\x06\x1d\xf9\x82\x82\x74\x80\xe0\x6f\xfc\x78\x57\x90\x22\xcc\x39\xed\x69\x96\xfb\xfc\x80\x71\x21\x84\x6c\x49\x69\x26\x7f\x3f\xf3\xec\xe4\x40\xe1\x2b\xc6\x3d\x8b\xed\xdb\x1a\x3d\x4a\xee\x65\x4c\x69\xbe\x75\xdc\xf0\x4a\x4b\xde\x1d\x0e\x45\x53\x6e\x77\x62\xbf\x2f\x89\xf6\x3b\x6a\xb1\x2b\xf2\x6d\x43\x2d\x56\xdb\x9b\x6a\x81\xcc\x56\x36\x13\xc7\x17\x06\x3d\xb1\x45\x50\xc4\xe1\x1b\xe8\x6a\x0b\xb1\x3f\x4b\xd5\xd6\x70\x7b\x77\x97\x0e\xe7\x9f\x7d\x82\x8a\x26\x8b\xc3\xc5\xeb\xcd\xed\xdd\xdd\x0a\x3e\xf8\xbf\x2c\xcb\xde\xc6\xe6\xf2\x43\x5b\xaa\xd3\xb1\x45\x46\x47\x5c\xc3\x1f\x9e\x84\x3b\x62\x3f\x29\xe3\xda\xe5\x4b\x28\x4c\xd8\xe4\x10\xbc\x47\x54\xb2\x23\xc7\x47\x9c\xb8\xd7\xb6\x06\x6c\xda\x69\x68\x17\xff\x04\x00\x00\xff\xff\xb5\x4c\x7e\x9a\x21\x0a\x00\x00"
func se_resnet_152YmlBytes() ([]byte, error) {
return bindataRead(
_se_resnet_152Yml,
"SE_ResNet_152.yml",
)
}
func se_resnet_152Yml() (*asset, error) {
bytes, err := se_resnet_152YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "SE_ResNet_152.yml", size: 2593, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _se_resnet_50Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x4d\x8f\xdb\x36\x13\xbe\xfb\x57\x0c\xe0\x4b\xf2\xc2\x96\x6d\x7d\x78\xbd\x02\xde\x1e\xba\x28\x9a\x5e\x16\x45\x1a\x20\x87\xc5\xc2\x18\x51\x23\x8b\x8d\x44\x12\xe4\x28\xbb\xce\xaf\x2f\xf8\xb1\xb6\x16\x49\x9a\xa0\x3e\x58\x12\xe7\x99\xe1\x70\x9e\x67\x46\x52\x38\x52\x0d\x7f\xfd\x76\x7c\x4f\xee\x9e\xf8\x58\x6d\x61\x09\x7e\x11\x74\x07\x67\x3d\x59\x18\x75\x4b\xc3\xa2\xb3\x38\xd2\x93\xb6\x9f\xea\x05\x00\x40\x74\xfb\xf3\xfc\x41\x5b\xd1\xc3\x12\x2e\x66\xe8\xb4\x05\xee\x29\xb9\x79\xec\x67\xb2\x4e\x6a\x55\xc3\x2e\xcb\x5f\x41\x93\x01\x84\x56\x8e\x2d\x4a\xc5\x8b\x19\xd6\x27\xf2\x82\x90\xaa\xd3\x76\x44\x8e\xf7\xe0\x68\x44\xc5\x52\x5c\xec\xd1\xba\x10\x5a\x31\x4a\x45\xb6\x86\x25\x5c\x1e\x1c\x4c\x8e\x5a\x60\x0d\x86\xac\x47\xc6\xdc\xc0\x58\x6a\xa5\xf0\x31\x43\x9a\x4b\x18\xa7\x81\xa5\x19\x08\xcc\x80\xec\x81\x0e\x04\x2a\x68\x08\x9c\x21\x21\x3b\x49\x6d\x40\xe2\xd8\xee\xcb\x58\x07\xff\x13\x66\xaa\xc1\xa2\x34\x56\xff\x4d\x82\x37\x02\xed\x38\xac\xcd\x99\x7d\x6d\xea\x00\x5e\x0b\x33\x5d\xf0\xa7\x9f\xc0\x9f\x12\xde\x18\xb1\x2f\x07\xfa\xd9\xcd\x12\xfc\xe2\xfe\xe3\xed\xe6\x1e\x2d\x39\x61\xa5\xe1\x40\xc0\x2f\x21\xc0\x87\x9e\x7c\x9d\xd6\x81\x1e\x6a\x53\xe5\xe8\xd9\x90\x60\x07\x52\x99\x89\x3d\x21\xa3\x54\x72\xdd\x20\x8b\x9e\x9c\x17\x4e\xb1\x16\x3d\x2a\x45\x03\xbc\xff\xfd\x57\x90\x23\x9e\xe2\xba\xeb\xd1\x10\xbc\x29\xe0\x19\xde\xc1\x33\x7c\x7c\xbb\x82\xa7\x9e\x2c\xc1\x3b\x40\xd5\xc2\x47\x40\x4b\x29\x7a\x64\xac\x21\xc8\xf3\x32\x0b\x79\xa4\x30\x3d\x7e\xa6\x64\x1a\x34\xb6\xd4\xfa\x04\x58\x03\x82\x45\x75\x0a\xba\x7d\xd8\xae\x60\xf7\x18\x42\x72\x4f\x0a\x94\x97\xc7\x20\xbf\x50\x0b\x93\x93\xea\x04\x23\xa1\x82\xff\xc3\xc3\x36\x2b\x0f\xd5\x0a\xb6\x59\x59\xed\xc3\x65\xbb\x8f\x6e\x8e\xdb\x68\xcf\xf3\x5b\x6f\xc8\xf3\x32\x5e\xaa\xc7\x85\xa5\x8e\x2c\x29\x41\xce\xcb\xec\xfa\x14\x14\x86\xc6\x0b\x6e\x03\x4f\xd4\x38\xc9\xe4\x6f\x89\x45\x96\x41\x2c\x6e\xe3\x77\x7f\xdd\x1e\x6b\xe8\x99\x8d\xab\x37\x9b\x93\xe4\x7e\x6a\x32\xa1\xc7\xcd\x1d\xb6\xa4\x68\x63\x2c\xa5\xca\xaf\x83\x83\xcb\x12\x6f\x4b\x4b\xc6\xea\x76\x12\x52\x9d\xd6\x96\xdc\x34\xb0\xfb\xef\xd1\x36\xcd\xa0\x9b\xcd\x88\x8e\xc9\xce\x50\x11\xb4\x49\x17\x47\x8a\x38\x33\xe7\xc5\x12\x06\x29\x48\xb9\x50\xea\xeb\x59\xd2\x62\x0d\x93\xb2\xe4\xd8\x4a\xcf\xe1\x62\x19\x45\x12\x8a\x73\xc5\xc6\xb5\x3a\xf5\x5d\x27\xad\xe3\x24\x26\x3e\x1b\xfa\xc6\x0c\x59\x07\x43\x1d\x35\x90\xa4\xbd\x84\x99\x60\x5f\x72\x99\xc5\x4a\xb0\x57\xaa\xf6\x90\xa4\xda\x59\x24\x83\x7e\x26\x31\xd9\xc0\x68\x48\xe1\xba\x74\x69\x24\x00\x1a\x68\x24\xc5\xc7\x98\x4b\x37\x68\xe4\x22\x9f\xd9\x43\xe4\xe3\x80\x67\x3f\x81\xb6\x33\xc3\x80\x67\x3d\x71\x0d\x77\xef\x3e\xce\x56\x85\x1e\xb4\x3d\xfa\x43\xd6\xbe\x4f\x66\x96\x56\x8e\xa4\xfc\x64\x73\x35\x3c\x14\x2b\x08\xf2\xcb\xf3\xf2\x71\x86\xf1\x1a\xae\xe1\x61\x97\x17\xd9\xfe\xa6\x5a\xc1\x6e\xb7\xcf\xf2\x83\x57\xfe\xb6\xc8\xaa\x62\xfb\x08\xcb\xef\x08\xfc\x7f\x90\x57\xd5\x2c\x92\x13\x38\x50\x0d\x0f\xd5\x21\x2b\x6e\xab\x15\x54\x37\xd9\x2e\xdf\x86\x6b\x71\x53\x3d\x86\x52\xbf\x6a\x85\x2c\xb5\x42\x8a\xa4\x27\x36\x13\xbf\xb0\xe9\x4b\x1c\x4a\x98\x18\x89\xd6\x60\x8c\x75\x13\x03\x3a\x27\x3b\x29\x70\x36\x7b\xf1\x5b\x64\x46\xd7\x2b\x17\x8b\x6f\xf2\x99\x50\x03\x36\x49\x2c\x33\x3a\x2f\xa7\xfc\x3e\xad\xff\x4e\xaa\xb1\xba\xc1\x46\x0e\x92\x25\xb9\xaf\xa9\xed\x08\x79\xb2\xe4\x8e\x93\x1d\xea\xd0\x7a\xf5\x66\xe3\x8a\x0c\x47\xfc\xa2\x15\x3e\xb9\xd0\x7f\x8e\xb5\xa5\x2c\x0c\xde\x4c\xdb\xd3\xc6\x9d\x95\x23\x76\x9b\xa0\x41\x45\x9c\x16\x32\x7e\xe6\xaf\x23\x8b\x9e\xc4\x27\x37\x8d\x35\x94\x6d\x5e\x94\x4d\x75\x28\x0a\x14\x58\x96\xb7\xf9\x61\xbb\xaf\x70\x77\xd8\xb6\x4d\xb1\xdd\xed\x71\x11\xfa\xc5\x4b\xf8\xe5\x7d\xe5\xd2\xc0\x3e\x59\x34\x7d\x18\x6c\x4f\x24\x4f\x3d\x3b\xb0\xe4\xf4\x64\x05\xc5\x3a\x04\xfb\xd1\x20\xf7\xf5\x65\x7e\xfc\xf0\x14\x69\x2e\xbc\xcc\x10\x47\x47\x4b\x4e\x11\x57\xdb\xf5\xcb\xc1\x32\x13\x0f\x24\xdd\x11\xad\xe8\xe5\xe7\xd9\x9b\xac\xc3\xc1\x11\x2c\x41\x76\xe0\x88\x57\x71\x52\x7b\x3e\x1b\x74\xe4\xeb\x09\xd2\x01\x82\xbf\xf1\xd3\x5d\x41\x8a\x30\xa7\xb4\xa7\x59\xea\xf3\xf3\xc5\x85\x10\xb2\x25\xa5\x99\xfc\xfd\xcc\xb3\x93\x03\x85\x8f\x18\xf7\xa2\xb5\xaf\x4b\xf4\x24\xb9\x97\x31\xa5\xf9\xd6\x71\xc3\x2b\x2b\xd5\x6d\x7b\x5b\x16\xb7\xe5\xae\x2c\xcb\x43\x23\xf6\x65\x99\x17\x07\x6a\xf2\x1b\x41\xb7\x25\xdd\xe0\x02\x99\xad\x6c\x26\x8e\xef\x0b\x7a\x66\x8b\xa0\x88\xc3\x27\xd0\xd5\x16\x62\x7f\x92\xaa\xad\xe1\xee\xfe\x3e\x1d\xce\x3f\xfb\x04\x15\x4d\x16\x87\x8b\xd7\x9b\xbb\xfb\xfb\x15\xbc\xf7\x7f\x59\x96\xbd\x8d\xbd\xe5\x67\xb6\x54\xa7\x63\x8b\x8c\x8e\xb8\x86\x3f\x3c\x09\xf7\xc4\x7e\x50\xc6\xb5\xcb\x87\x50\x18\xb0\xc9\x21\x78\x8f\xa8\x64\x47\x8e\x8f\x38\x71\xaf\x6d\x0d\xd8\xb4\xd3\xd0\x2e\xfe\x09\x00\x00\xff\xff\x87\x53\xb4\xd8\x1f\x0a\x00\x00"
func se_resnet_50YmlBytes() ([]byte, error) {
return bindataRead(
_se_resnet_50Yml,
"SE_ResNet_50.yml",
)
}
func se_resnet_50Yml() (*asset, error) {
bytes, err := se_resnet_50YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "SE_ResNet_50.yml", size: 2591, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _se_resnext_101_32x4dYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\xcf\x8f\xdb\xb8\x0e\xbe\xe7\xaf\x20\x90\x4b\xfb\x90\x38\x8e\x1d\x67\x32\x06\xde\x3b\xbc\xd9\xc5\x76\x2f\x83\x45\xb7\x40\x0f\x83\x41\x40\xcb\x74\xac\xad\x2d\x09\x12\xdd\x49\xfa\xd7\x2f\xf4\x63\x32\x1e\xb4\xdd\x16\x9b\x43\x6c\x8b\x1f\x29\x91\xdf\x47\xda\x0a\x47\xaa\xe1\xcf\x5f\x8f\xef\xc9\xdd\xd3\x99\x8f\xdb\x7c\x7b\x2c\x8b\xf3\xee\x17\x58\x82\x37\x82\xee\xe0\xa2\x27\x0b\xa3\x6e\x69\x58\x74\x16\x47\x7a\xd2\xf6\x53\xbd\x00\x00\x88\xee\x7f\x5c\x3e\x68\x2b\x7a\x58\xc2\xd5\x0c\x9d\xb6\xc0\x3d\x25\x37\x8f\xfd\x4c\xd6\x49\xad\x6a\xd8\x66\xc5\x2b\x68\x32\x80\xd0\xca\xb1\x45\xa9\x78\x31\xc3\xe6\xb0\xbc\x22\xa4\xea\xb4\x1d\x91\xe3\x3d\x38\x1a\x51\xb1\x14\x57\x7b\xb4\x2e\x84\x56\x8c\x52\x91\xad\x61\x09\xd7\x07\x07\x93\xa3\x16\x58\x83\x21\xeb\x91\xf1\x6c\x60\x2c\xb5\x52\xf8\x98\xe1\x98\x4b\x18\xa7\x81\xa5\x19\x08\xcc\x80\xec\x81\x0e\x04\x2a\x68\x08\x9c\x21\x21\x3b\x49\x6d\x40\xe2\xd8\xee\x77\xb1\x0e\xfe\x27\xcc\x54\x83\x45\x69\xac\xfe\x8b\x04\x6f\x04\xda\x71\x58\x9b\x0b\xfb\xda\xd4\x01\xbc\x16\x66\xba\xe2\x4f\x3f\x81\x3f\x25\xbc\x31\x62\xbf\x1b\xe8\x67\x37\x4b\xf0\xab\xfb\x8f\xb7\x9b\x7b\xb4\xe4\x84\x95\x86\x03\x01\xff\x0b\x01\x3e\xf4\xe4\xeb\xb4\x0e\xf4\x50\x9b\x2a\x47\x67\x43\x82\x1d\x48\x65\x26\xf6\x84\x8c\x52\xc9\x75\x83\x2c\x7a\x72\x5e\x38\xe5\x5a\xf4\xa8\x14\x0d\xf0\xfe\xb7\xff\x83\x1c\xf1\x14\xd7\x5d\x8f\x86\xe0\x4d\x09\x67\x78\x07\x67\xf8\xf8\x76\x05\x4f\x3d\x59\x82\x77\x80\xaa\x85\x8f\x80\x96\x52\xf4\xc8\x58\x43\x50\x14\xbb\x2c\x9c\x23\x85\xe9\xf1\x33\x25\xd3\xa0\xb1\xa5\xd6\x1f\x80\x35\x20\x58\x54\xa7\xa0\xdb\x87\x7c\x05\xdb\xc7\x10\x92\x7b\x52\xa0\xbc\x3c\x06\xf9\x85\x5a\x98\x9c\x54\x27\x18\x09\x15\xfc\x17\x1e\xf2\x6c\x77\xa8\x56\x90\x67\xbb\x6a\x1f\x2e\xf9\x3e\xba\x39\x6e\xa3\xbd\x28\x6e\xbd\xa1\x28\x76\xf1\x52\x3d\x2e\x2c\x75\x64\x49\x09\x72\x5e\x66\x2f\x4f\x41\x61\x68\xbc\xe0\x36\xf0\x44\x8d\x93\x4c\xfe\x96\x58\x64\x19\xc4\xe2\x36\x7e\xf7\xd7\xed\xb1\x86\x9e\xd9\xb8\x7a\xb3\x39\x49\xee\xa7\x26\x13\x7a\xdc\xdc\x61\x4b\x8a\x36\xc6\x52\xaa\xfc\x3a\x38\xb8\x2c\xf1\xb6\xb4\x64\xac\x6e\x27\x21\xd5\x69\x6d\xc9\x4d\x03\xbb\x7f\x1f\x6d\xd3\x0c\xba\xd9\x8c\xe8\x98\xec\x0c\x15\x41\x9b\x74\x71\xa4\x88\x33\x73\x59\x2c\x61\x90\x82\x94\x0b\xa5\x7e\xc9\x25\x2d\xd6\x30\x29\x4b\x8e\xad\xf4\x1c\x2e\x96\x51\x24\xa1\x38\x2f\xd8\xb8\x56\xa7\xbe\xeb\xa4\x75\x9c\xc4\xc4\x17\x43\xdf\x98\x21\xeb\x60\xa8\xa3\x06\x92\xb4\x97\x30\x13\xec\xf3\x59\x66\xb1\x12\xec\x95\xaa\x3d\x24\xa9\x76\x16\xc9\xa0\x9f\x49\x4c\x36\x30\x1a\x8e\xf0\xb2\x74\x6d\x24\x00\x1a\x68\x24\xc5\xc7\x78\x96\x6e\xd0\xc8\x65\x31\xb3\x87\xc8\xc7\x01\x2f\x7e\x02\xe5\x33\xc3\x80\x17\x3d\x71\x0d\x77\xef\x3e\xce\x56\x85\x1e\xb4\x3d\xfa\x24\x6b\xdf\x27\x33\x4b\x2b\x47\x52\x7e\xb2\xb9\x1a\x1e\xca\x15\x04\xf9\x15\xc5\xee\x71\x86\xf1\x1a\xae\xe1\x61\x5b\x94\xd9\xfe\xa6\x5a\xc1\x76\xbb\xcf\x8a\x83\x57\x7e\x5e\x66\x55\x99\x3f\xc2\xf2\x3b\x02\xff\x0f\x14\x55\x35\x8b\xe4\x04\x0e\x54\xc3\x43\x75\xc8\xca\xdb\x6a\x05\xd5\x4d\xb6\x2d\xf2\x70\x2d\x6f\xaa\xc7\x50\xea\x57\xad\x90\xa5\x56\x48\x91\xf4\xc4\x66\xe2\x67\x36\x7d\x89\x43\x09\x13\x23\xd1\x1a\x8c\xb1\x6e\x62\x40\xe7\x64\x27\x05\xce\x66\x2f\x7e\x8b\xcc\xe8\xfa\xc2\xc5\xe2\x9b\x7c\x26\xd4\x80\x4d\x12\xcb\x8c\xce\x6b\x96\xdf\xa7\xf5\x9f\x49\x35\x56\x37\xd8\xc8\x41\xb2\x24\xf7\x35\xb5\x1d\x21\x4f\x96\xdc\x71\xb2\x43\x1d\x5a\xaf\xde\x6c\x5c\x99\xe1\x88\x5f\xb4\xc2\x27\x17\xfa\xcf\xb1\xb6\x94\x85\xc1\x9b\x69\x7b\xda\xb8\x8b\x72\xc4\x6e\x13\x34\xa8\x88\xd3\x42\xc6\x67\xfe\x3a\xb2\xe8\x49\x7c\x72\xd3\x58\xc3\xae\x2d\xca\x5d\x53\x1d\xca\x12\x05\xee\x76\xb7\xc5\x21\xdf\x57\xb8\x3d\xe4\x6d\x53\xe6\xdb\x3d\x2e\x42\xbf\x78\x09\x3f\xbf\xaf\x5c\x1a\xd8\x27\x8b\xa6\x0f\x83\xed\x89\xe4\xa9\x67\x07\x96\x9c\x9e\xac\xa0\x58\x87\x60\x3f\x1a\xe4\xbe\xbe\xce\x8f\x1f\x66\x91\xe6\xc2\xf3\x0c\x71\x74\xb4\xe4\x14\x9d\xf9\xf9\x53\xa2\x5d\x3f\x27\x98\x99\x98\x98\x74\x47\xb4\xa2\x97\x9f\x67\x6f\xb4\x0e\x07\x47\xb0\x04\xd9\x81\x23\x5e\xc5\x89\xed\x79\x6d\xd0\x91\xaf\x2b\x48\x07\x08\xfe\xc6\x4f\x79\x05\x29\xc2\x9c\xda\x9e\x66\x29\xcc\xf3\x8c\x0b\x21\x64\x4b\x4a\x33\xf9\xfb\x99\x67\x27\x07\x0a\x1f\x33\xee\x59\x73\x5f\x97\xea\x49\x72\x2f\xe3\x91\xe6\x5b\xc7\x0d\x5f\xd8\x29\xab\xb2\xed\xca\xdb\xc3\x4d\xd9\xb4\x37\x79\x79\x7b\x53\xdd\x6e\xbb\x8a\xf6\x87\xb6\xeb\xba\x83\x68\x16\xc8\x6c\x65\x33\x71\x7c\x6f\xd0\x99\x2d\x82\x22\x0e\x9f\x42\x2f\xb6\x10\xfb\x93\x54\x6d\x0d\x77\xf7\xf7\x29\x39\xff\xec\x0f\xa8\x68\xb2\x38\x5c\xbd\xde\xdc\xdd\xdf\xaf\xe0\xbd\xff\xcb\xb2\xec\x6d\xec\x31\x3f\xbb\xa5\x3a\x1d\x5b\x64\x74\xc4\x35\xfc\xee\x49\xb8\x27\xf6\x03\x33\xae\x5d\x3f\x88\xc2\xa0\x4d\x0e\xc1\x7b\x44\x25\x3b\x72\x7c\xc4\x89\x7b\x6d\x6b\xc0\xa6\x9d\x86\x76\xf1\x77\x00\x00\x00\xff\xff\xda\x10\x29\x5b\x2f\x0a\x00\x00"
func se_resnext_101_32x4dYmlBytes() ([]byte, error) {
return bindataRead(
_se_resnext_101_32x4dYml,
"SE_ResNext_101_32x4D.yml",
)
}
func se_resnext_101_32x4dYml() (*asset, error) {
bytes, err := se_resnext_101_32x4dYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "SE_ResNext_101_32x4D.yml", size: 2607, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _se_resnext_50_32x4dYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x4d\x8f\xdb\x46\x0c\xbd\xfb\x57\x10\xf0\x25\x29\x6c\x59\xd6\x87\xd7\x2b\xa0\x3d\x74\x5b\x34\xbd\x2c\x8a\x34\x40\x0e\x8b\x85\x41\x8d\x28\x6b\x1a\x69\x46\x98\xa1\xb2\x76\x7e\x7d\x31\x1f\x6b\x6b\x91\x4d\x13\xd4\x07\x4b\x1a\x3e\x72\x86\x7c\x8f\x94\x14\x0e\x54\xc1\xdf\xbf\x1f\xde\x93\xbd\xa7\x13\x1f\xca\xf4\x90\x67\xa7\xe2\x37\x58\x82\xb3\x81\x6e\xe1\xac\x27\x03\x83\x6e\xa8\x5f\xb4\x06\x07\x7a\xd2\xe6\x53\xb5\x00\x00\x08\xde\x7f\x9d\x3f\x68\x23\x3a\x58\xc2\xc5\x0c\xad\x36\xc0\x1d\x45\x37\x87\xfd\x4c\xc6\x4a\xad\x2a\xd8\x26\xd9\x0b\x68\x34\x80\xd0\xca\xb2\x41\xa9\x78\x31\xc3\xa6\xb0\xbc\x20\xa4\x6a\xb5\x19\x90\xc3\x3d\x58\x1a\x50\xb1\x14\x17\x7b\xb0\x2e\x84\x56\x8c\x52\x91\xa9\x60\x09\x97\x07\x0b\x93\xa5\x06\x58\xc3\x48\xc6\x21\xc3\xd9\x60\x34\xd4\x48\xe1\x62\xfa\x63\x2e\x61\x98\x7a\x96\x63\x4f\x30\xf6\xc8\x0e\x68\x41\xa0\x82\x9a\xc0\x8e\x24\x64\x2b\xa9\xf1\x48\x1c\x9a\x5d\x11\xea\xe0\x7e\x62\x9c\x2a\x30\x28\x47\xa3\xff\x21\xc1\x1b\x81\x66\xe8\xd7\xe3\x99\x5d\x6d\x2a\x0f\x5e\x8b\x71\xba\xe0\x8f\x3f\x80\x3f\x46\xfc\x38\x8a\x5d\xd1\xd3\x8f\x6e\x16\xe1\x17\xf7\xef\x6f\x37\xf7\x68\xc8\x0a\x23\x47\xf6\x04\xfc\xe2\x03\x7c\xe8\xc8\xd5\x69\xed\xe9\xa1\x26\x56\x8e\x4e\x23\x09\xb6\x20\xd5\x38\xb1\x23\x64\x90\x4a\xae\x6b\x64\xd1\x91\x75\xc2\xc9\xd7\xa2\x43\xa5\xa8\x87\xf7\x7f\xfc\x0a\x72\xc0\x63\x58\xb7\x1d\x8e\x04\x6f\x72\x38\xc1\x3b\x38\xc1\xc7\xb7\x2b\x78\xea\xc8\x10\xbc\x03\x54\x0d\x7c\x04\x34\x14\xa3\x07\xc6\x6a\x82\x2c\x2b\x12\x7f\x8e\x18\xa6\xc3\xcf\x14\x4d\xbd\xc6\x86\x1a\x77\x00\xd6\x80\x60\x50\x1d\xbd\x6e\x1f\xd2\x15\x6c\x1f\x7d\x48\xee\x48\x81\x72\xf2\xe8\xe5\x17\x6a\x60\xb2\x52\x1d\x61\x20\x54\xf0\x33\x3c\xa4\x49\xb1\x2f\x57\x90\x26\x45\xb9\xf3\x97\x74\x17\xdc\x2c\x37\xc1\x9e\x65\xb7\xce\x90\x65\x45\xb8\x94\x8f\x0b\x43\x2d\x19\x52\x82\xac\x93\xd9\xf5\xc9\x2b\x0c\x47\x27\xb8\x0d\x3c\x51\x6d\x25\x93\xbb\x25\x16\x49\x02\xa1\xb8\xb5\xdb\xfd\x65\x7b\xac\xa1\x63\x1e\x6d\xb5\xd9\x1c\x25\x77\x53\x9d\x08\x3d\x6c\xee\xb0\x21\x45\x9b\xd1\x50\xac\xfc\xda\x3b\xd8\x24\xf2\xb6\x34\x34\x1a\xdd\x4c\x42\xaa\xe3\xda\x90\x9d\x7a\xb6\xff\x3f\xda\xa6\xee\x75\xbd\x19\xd0\x32\x99\x19\x2a\x80\x36\xf1\x62\x49\x11\x27\xe3\x79\xb1\x84\x5e\x0a\x52\xd6\x97\xfa\x9a\x4b\x5c\xac\x60\x52\x86\x2c\x1b\xe9\x38\x5c\x2c\x83\x48\x7c\x71\xae\xd8\xb0\x56\xc5\xbe\x6b\xa5\xb1\x1c\xc5\xc4\xe7\x91\x5e\x99\x21\x6b\x6f\xa8\x82\x06\xa2\xb4\x97\x30\x13\xec\xf3\x59\x66\xb1\x22\xec\x85\xaa\x1d\x24\xaa\x76\x16\x69\x44\x37\x93\x98\x8c\x67\xd4\x1f\xe1\xba\x74\x69\x24\x00\xea\x69\x20\xc5\x87\x70\x96\xb6\xd7\xc8\x79\x36\xb3\xfb\xc8\x87\x1e\xcf\x6e\x02\xa5\x33\x43\x8f\x67\x3d\x71\x05\x77\xef\x3e\xce\x56\x85\xee\xb5\x39\xb8\x24\x2b\xd7\x27\x33\x4b\x23\x07\x52\x6e\xb2\xd9\x0a\x1e\xf2\x15\x78\xf9\x65\x59\xf1\x38\xc3\x38\x0d\x57\xf0\xb0\xcd\xf2\x64\x77\x53\xae\x60\xbb\xdd\x25\xd9\xde\x29\x3f\xcd\x93\x32\x4f\x1f\x61\xf9\x0d\x81\xff\x04\x59\x59\xce\x22\x59\x81\x3d\x55\xf0\x50\xee\x93\xfc\xb6\x5c\x41\x79\x93\x6c\xb3\xd4\x5f\xf3\x9b\xf2\xd1\x97\xfa\x45\x2b\x24\xb1\x15\x62\x24\x3d\xf1\x38\xf1\x33\x9b\xae\xc4\xbe\x84\x91\x91\x60\xf5\xc6\x50\x37\xd1\xa3\xb5\xb2\x95\x02\x67\xb3\x17\x5f\x23\x33\xb8\x5e\xb9\x58\xbc\xca\x67\x44\xf5\x58\x47\xb1\xcc\xe8\xbc\x64\xf9\x6d\x5a\xff\x9b\xd4\xd1\xe8\x1a\x6b\xd9\x4b\x96\x64\xbf\xa6\xb6\x25\xe4\xc9\x90\x3d\x4c\xa6\xaf\x7c\xeb\x55\x9b\x8d\xcd\x13\x1c\xf0\x8b\x56\xf8\x64\x7d\xff\x59\xd6\x86\x12\x3f\x78\x13\x6d\x8e\x1b\x7b\x56\x96\xd8\x6e\xbc\x06\x15\x71\x5c\x48\xf8\xc4\x5f\x47\x16\x1d\x89\x4f\x76\x1a\x2a\x28\x9a\x2c\x2f\xea\x72\x9f\xe7\x28\xb0\x28\x6e\xb3\x7d\xba\x2b\x71\xbb\x4f\x9b\x3a\x4f\xb7\x3b\x5c\xf8\x7e\x71\x12\x7e\x7e\x5f\xd9\x38\xb0\x8f\x06\xc7\xce\x0f\xb6\x27\x92\xc7\x8e\x2d\x18\xb2\x7a\x32\x82\x42\x1d\xbc\xfd\x30\x22\x77\xd5\x65\x7e\x7c\x37\x8b\x38\x17\x9e\x67\x88\xa5\x83\x21\xab\xe8\xc4\xf1\x4b\xa2\x59\x3f\xe7\x97\x8c\x21\x2f\x69\x0f\x68\x44\x27\x3f\xcf\x5e\x68\x2d\xf6\x96\x60\x09\xb2\x05\x4b\xbc\x0a\x03\xdb\xd1\x5a\xa3\x25\x57\x56\x90\x16\x10\xdc\x8d\x1b\xf2\x0a\x62\x84\x39\xb3\x1d\xcd\x32\x98\xa7\x19\x16\x7c\xc8\x86\x94\x66\x72\xf7\x33\xcf\x56\xf6\xe4\xbf\x65\xec\xb3\xe4\xbe\xae\xd4\x93\xe4\x4e\x86\x23\xcd\xb7\x0e\x1b\x5e\xc9\xc9\x8b\x46\xe4\x4d\x7b\x9b\xa7\x5b\x6a\x44\x2e\x0a\xc7\x53\x9a\x96\xfb\x1b\xdc\xdd\x50\x73\xbb\x40\x66\x23\xeb\x89\xc3\x6b\x83\x4e\x6c\x10\x14\xb1\xff\x12\xba\xda\x7c\xec\x4f\x52\x35\x15\xdc\xdd\xdf\xc7\xe4\xdc\xb3\x3b\xa0\xa2\xc9\x60\x7f\xf1\x7a\x73\x77\x7f\xbf\x82\xf7\xee\x2f\x49\x92\xb7\xa1\xc5\xdc\xe8\x96\xea\x78\x68\x90\xd1\x12\x57\xf0\xa7\x23\xe1\x9e\xd8\xcd\xcb\xb0\x76\xf9\x1e\xf2\x73\x36\x3a\x78\xef\x01\x95\x6c\xc9\xf2\x01\x27\xee\xb4\xa9\x00\xeb\x66\xea\x9b\xc5\xbf\x01\x00\x00\xff\xff\xba\x88\x1c\x40\x2d\x0a\x00\x00"
func se_resnext_50_32x4dYmlBytes() ([]byte, error) {
return bindataRead(
_se_resnext_50_32x4dYml,
"SE_ResNext_50_32x4D.yml",
)
}
func se_resnext_50_32x4dYml() (*asset, error) {
bytes, err := se_resnext_50_32x4dYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "SE_ResNext_50_32x4D.yml", size: 2605, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _srgan_v10Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\x41\x6f\xeb\x36\x0c\xbe\xfb\x57\x10\xc8\x65\x03\x5a\xdb\x4d\xf3\xf2\x5a\x1f\x06\x6c\x3d\x74\xa7\x6c\xe8\x1e\xb6\xc3\x30\x18\x8c\x4c\xd9\x5a\x6d\x49\x90\xa8\xe6\x65\xbf\x7e\x90\xe4\x24\x6e\xd7\xe1\x35\x87\x40\xe6\xf7\x91\xa2\x3e\x92\x92\xc6\x89\x1a\xf8\xed\xe9\xf1\xc7\x5d\xfb\x72\x53\xd6\xb0\x82\x68\x02\x23\xe1\x68\x82\x83\xc9\x74\x34\x16\xd2\xe1\x44\x07\xe3\x9e\x9b\x02\x00\x20\x3b\xfd\x7a\xfc\x62\x9c\x18\x60\x05\x67\x18\xa4\x71\xc0\x03\xcd\x6e\x91\xfb\x42\xce\x2b\xa3\x1b\xb8\x29\xd7\xaf\xa8\x33\x00\xc2\x68\xcf\x0e\x95\xe6\x62\xc1\x8d\x89\x9c\x18\x4a\x4b\xe3\x26\xe4\xbc\x06\x4f\x13\x6a\x56\xe2\x8c\x67\xb4\x10\x46\x33\x2a\x4d\xae\x81\x15\x9c\x3f\x3c\x04\x4f\x1d\xb0\x01\x4b\x2e\x32\x73\x6e\x60\x1d\x75\x4a\xc4\x98\x29\xcd\x15\x4c\x61\x64\x65\x47\x02\x3b\x22\x47\xa2\x07\x81\x1a\xf6\x04\xde\x92\x50\x52\x51\x97\x98\x38\x75\xdb\x4d\xd6\x21\xfe\x84\x0d\x0d\x38\x54\xd6\x99\xbf\x49\x70\x25\xd0\x4d\xe3\xb5\x3d\x72\xd4\xa6\x49\xe4\x6b\x61\xc3\x99\xdf\x7f\x80\xdf\xcf\x7c\x6b\xc5\x76\x33\xd2\x47\x37\x9b\xe9\x67\xf7\x6f\x6f\xb7\xf4\xe8\xc8\x0b\xa7\x2c\xa7\x02\xfc\x90\x02\x7c\x19\x94\x9f\xe5\x52\x1e\x10\x1c\xd9\x51\x89\x5c\x08\x23\x2f\x85\x86\xec\xbb\xa7\x2e\xd6\x27\x9a\x53\x43\x81\x0d\xfb\x13\xbf\x2c\x1c\x49\x72\xa4\x05\xf9\x58\x9f\xcb\x57\x2a\x0d\xda\x58\xa9\x0a\x0e\xb4\xf7\x8a\x29\x2e\x89\x45\x59\x9e\x22\x2b\xdd\xbf\xe9\xab\x6b\x18\x98\xad\x6f\xaa\xaa\x57\x3c\x84\x7d\x29\xcc\x54\x8d\x24\x99\x07\x33\xa1\xaf\x52\x06\x6f\x98\xe8\xbe\xaa\x97\xd2\xb8\xbe\xb2\x9d\xac\x6e\xb6\xf5\x7d\x59\x6f\xee\xea\x75\x69\x3b\x59\xac\x60\x54\x82\xb4\xa7\x57\x47\x2b\x66\x63\x03\x41\x3b\xf2\xec\x94\x60\xea\x8a\x15\x28\x6d\x03\xa7\xe4\x2f\xdc\x6c\x6b\xe6\x86\x92\xca\x79\xce\x3c\xe0\xa3\xa5\x77\x86\xe3\x3a\x01\x0d\xa8\x09\x7b\x9a\x6b\xb6\x82\x45\x25\x4e\xb9\x2c\x62\xcd\xb4\x57\xe5\x8a\x94\xbc\xd1\x32\x92\xc5\x38\x6c\x4c\x2e\x29\x9e\x52\xb8\x98\xce\x1d\x02\x40\x23\x4d\xa4\xb9\xcd\xb9\xc8\xd1\x20\xdf\xae\x17\x78\x8a\xdc\x8e\x78\x8c\xa3\x55\x2f\x80\x11\x8f\x26\x70\x03\x0f\x3f\xff\xb1\xb0\x0a\x33\x1a\xd7\xc6\x43\x36\xf0\xf4\xf8\xd3\x02\x99\x08\x75\x03\x7f\xd6\x65\x7d\x05\xa7\xbf\xbf\x16\xb8\x17\x38\x52\x03\xeb\x4f\x9f\x0a\x13\xd8\x06\x3e\x49\x19\xcf\x97\xf2\x9f\xe5\xc8\x68\x02\xdf\x0a\xb8\x02\x7c\x4f\xc0\xec\x71\x39\x7f\xf1\xae\x86\x33\xeb\x12\x6d\x21\xe1\x39\xcf\xff\x97\xf2\xb5\x90\x4a\xf3\x76\x53\xa4\x62\x47\xfd\x4f\xb7\xc8\x69\xa2\x7a\x87\x76\x00\xd4\x1d\x1c\x48\xf5\x03\x7b\x70\xe4\x4d\x70\x82\x72\xc0\x84\xb7\x16\x79\x68\xce\x0d\xec\x6f\x4b\x9c\xf0\x1f\xa3\xf1\xe0\x53\xc3\x7b\x36\x8e\xca\x34\xd4\xa9\xaf\x53\x68\x5f\xcd\xf3\x5d\x79\xd7\xa3\x6e\x35\xf1\x63\x4b\xd6\x88\xa1\xdd\xb4\x37\x75\x5d\xda\x2c\x9d\xf2\x2d\x3a\x31\xa8\x97\xc5\x0d\x23\x71\xf4\x04\x2b\x50\x12\x3c\xf1\x55\x54\x25\x4f\xf4\x1e\x3d\xb5\xc1\xcd\x37\x41\x5c\xb0\x01\xd4\x30\x47\x58\xaa\x33\xd0\x22\xf9\xe5\x09\xb3\x21\x85\xec\x48\x1b\xa6\xb8\x5e\x78\x4a\x35\x52\x7a\x5c\xfc\xa9\x6c\xff\x15\xe9\xa0\x78\x98\x2f\x99\xe5\xd6\x79\x43\x31\x90\x78\xf6\x61\x6a\x60\x4d\x78\x77\x2b\xb7\xf4\x79\xb3\x59\xd7\x72\x5b\xdf\xd7\x6b\xaa\x3f\x6f\xe4\xbe\xa6\xbb\xfb\xdb\x4e\x16\xc8\xec\xd4\x3e\x70\xbe\x8e\xe8\x2b\x3b\x04\x4d\x9c\x9e\xa6\x0b\x96\x62\x3f\x2b\xdd\x35\xf0\xb0\xdb\xcd\x87\x8b\xdf\x31\x41\x4d\xc1\xe1\x78\xf6\xfa\xee\x61\xb7\xbb\x82\xa7\xf8\x57\x96\xe5\xf7\xb9\x3b\xe3\xc3\xa6\x74\xdf\x76\xc8\xe8\x89\x1b\xf8\xfd\x97\x87\x84\x4c\xa8\x95\x24\xcf\x2d\x06\x1e\x8c\x6b\x00\xf7\x5d\x18\xbb\xe2\xdf\x00\x00\x00\xff\xff\xa2\x9a\xab\x5a\x91\x07\x00\x00"
func srgan_v10YmlBytes() ([]byte, error) {
return bindataRead(
_srgan_v10Yml,
"SRGAN_v1.0.yml",
)
}
func srgan_v10Yml() (*asset, error) {
bytes, err := srgan_v10YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "SRGAN_v1.0.yml", size: 1937, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _torchvision_alexnetYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\xcf\x8f\xdb\x3a\x0e\xbe\xe7\xaf\x20\x90\x4b\xbb\xc8\xd8\x8e\x1d\x67\x12\x03\xbb\x40\xb7\x87\xed\x5e\x06\x0f\x45\xf1\x7a\x18\x0c\x02\x5a\xa6\x63\xbd\xca\x92\x21\xd1\x33\x49\xff\xfa\x07\xc9\x4a\xe2\xe9\x8f\xd7\xce\x61\x62\x8b\x1f\x29\x8a\xdf\x47\xca\x1a\x7b\xaa\xe0\x93\xb1\xa2\xfb\x53\x3a\x69\xf4\xe1\x9d\xa2\xd3\x03\x31\x2c\xc1\xdb\xc0\xb4\x70\x36\xa3\x85\xde\x34\xa4\x16\xad\xc5\x9e\x5e\x8c\xfd\x52\x2d\x00\x00\x26\xef\x3f\xce\xc1\x1f\x96\x70\x35\x43\x6b\x2c\x70\x47\xd1\xcd\x63\x9f\xc9\xfa\xf8\x15\xac\x93\xfc\x15\x34\x1a\x40\x18\xed\xd8\xa2\xd4\xbc\x98\x61\x33\x58\x5e\x11\x52\xb7\xc6\xf6\xc8\xd3\x33\x38\xea\x51\xb3\x14\x57\xfb\x64\x5d\x08\xa3\x19\xa5\x26\x5b\xc1\x12\xae\x2f\x0e\x46\x47\x0d\xb0\x81\x81\xac\x47\x4e\xb9\xc1\x60\xa9\x91\xc2\xc7\x0c\x69\x2e\xa1\x1f\x15\xcb\x41\x11\x0c\x0a\xd9\x03\x1d\x08\xd4\x50\x13\xb8\x81\x84\x6c\x25\x35\x01\x89\x7d\xb3\xdd\x4c\x75\xf0\x7f\x62\x18\x2b\xb0\x28\x07\x6b\xfe\x22\xc1\xa9\x40\xdb\xab\xbb\xe1\xcc\xbe\x36\x55\x00\xdf\x89\x61\xbc\xe2\x8f\xbf\x81\x3f\x46\xfc\x30\x88\xed\x46\xd1\xef\x6e\x16\xe1\x57\xf7\x5f\x6f\x37\xf7\x68\xc8\x09\x2b\x07\x0e\x04\xfc\x27\x04\xf8\xd4\x49\x17\xcb\x25\x1d\x20\x58\x1a\x94\x14\x13\x11\xa6\xbd\x11\x0d\x93\x6f\x4d\x8d\xe7\xc7\x2f\x5f\xd4\x34\x8c\xf5\xc5\x23\x09\x21\xdf\xa9\x50\xfa\xbb\xc0\x38\x35\x93\xbf\x03\x3a\x0d\x24\x18\xa4\x1e\x46\x06\xd9\xe3\x91\x1c\x68\x4f\xab\x92\x5f\x6f\x51\x9d\x57\xe6\x0b\x9e\x57\x20\x13\x4a\xa0\x97\x5a\xde\xd5\xc8\xa2\x23\xe7\xf3\x29\xee\x44\x87\x5a\x93\x82\x8f\xff\xfb\xef\x25\x8a\x69\xc1\x75\x38\x10\xbc\x29\xe0\x04\x1f\xe0\x04\x9f\xdf\xae\xe0\xa5\x23\x4b\xf0\x01\x50\x37\xf0\x19\xd0\x52\xcc\x60\x52\x4a\x4d\x80\x0c\x8a\xd0\x31\xe4\xf9\x26\x81\x4f\x1d\x5d\xe2\x75\xf8\x4c\x11\xa3\x0c\x36\x31\x39\xe3\xab\x83\xfa\x18\x1a\xe7\x31\x5b\xc1\xfa\x29\xc4\xe6\x8e\xf4\xfc\x20\xa3\x93\xfa\x08\x3d\xa1\x86\x7f\xc3\x63\x96\x6c\x76\xe5\x0a\xb2\x64\x53\x6e\xc3\x4f\xb6\x9d\xdc\x1c\x37\x93\x3d\xcf\xf7\xde\x90\xe7\x9b\xe9\xa7\x7c\x5a\x58\x6a\xc9\x92\x16\xe4\xbc\xce\x6f\x6f\x41\xe2\x38\x78\xc5\xa7\xf0\x42\xb5\x93\x4c\xfe\x91\x58\x24\xc9\x85\x21\xbf\xfb\xeb\xfe\xbc\x83\x8e\x79\x70\x55\x9a\xa2\x3d\xc9\xe7\xc4\xd8\x63\x8a\xb5\x4b\xd7\x9b\x6c\x93\x94\xfb\xfd\xfd\x37\xa8\xa3\xe4\x6e\xac\x13\x61\xfa\x34\xaa\x28\x7d\x0e\x13\x24\xad\x95\xa9\xd3\x1e\x1d\x93\x4d\x83\x21\xae\x4f\x14\xa7\xa8\xe8\xa4\x89\x93\xe1\xfc\x4d\xc4\x18\x26\xec\xdc\x18\xe1\x52\xc7\x58\x2b\x7a\x15\x43\xea\x86\x4e\x49\xc7\xbd\x5a\x2c\x41\x49\x41\xda\xd1\x2b\x09\x2e\xe2\x62\x05\xa3\xb6\xe4\xd8\x4a\x4f\xe6\x62\x39\x49\x2a\x14\xe7\x86\x9d\xd6\xaa\xd8\xf8\xad\xb4\xee\x22\x3d\x3e\x0f\xf4\x83\x21\x76\x17\x0c\xd5\xa4\x81\xd8\x5b\x4b\x98\x75\xcc\x25\x97\x59\xac\x08\x7b\xd5\x56\x1e\x32\xd3\x78\x84\x0c\xe8\x87\x22\x93\x0d\x8c\x86\x14\x6e\x4b\xd7\x4e\x06\x20\x45\x3d\x69\x3e\x4c\xb9\xb4\xca\x20\x17\xf9\xcc\x1e\x22\x1f\x14\x9e\xfd\x08\xcc\x66\x06\x85\x67\x33\x72\x05\xef\x3f\x7c\x9e\xad\x0a\xa3\x8c\x3d\xf8\x43\x56\xbe\x61\x66\x96\x46\xf6\xa4\x7d\xdd\x5d\x05\x8f\xc5\x0a\x82\xfc\xf2\x7c\xf3\x34\xc3\x78\x0d\x57\xf0\xb8\xce\x8b\x64\x7b\x5f\xae\x60\xbd\xde\x26\xf9\xce\x2b\x3f\x2b\x92\xb2\xc8\x9e\x60\xf9\x13\x81\xff\x0b\xf2\xb2\x9c\x45\x72\x02\x15\x55\xf0\x58\xee\x92\x62\x5f\xae\xa0\xbc\x4f\xd6\x79\x16\x7e\x8b\xfb\xf2\x29\x94\xfa\x55\x2b\x24\xb1\x15\x62\x24\x33\xf2\x30\xf2\x85\x4d\x5f\xe2\x50\xc2\xc8\xc8\x64\x0d\xc6\xa9\x6e\x42\xa1\x73\xb2\x8d\x53\x29\x7a\xe1\x8f\xc8\x9c\x5c\x6f\x5c\x2c\x7e\xc8\x67\x44\x29\xac\xa3\x58\x66\x74\x5e\x4f\xf9\x73\x5a\xff\x99\xd4\xc1\x9a\x1a\x6b\xa9\x24\x4b\x72\xdf\x53\xdb\x12\xf2\x68\xc9\x1d\x46\xab\xaa\xd0\x50\x55\x9a\xba\x22\xc1\x1e\xbf\x1a\x8d\x2f\x2e\xf4\xa9\x63\x63\x29\x09\x93\x3f\x34\x99\x3b\x6b\x47\xec\xd2\xa0\x41\x4d\x1c\x17\x12\x3e\xf1\xf7\x91\x45\x47\xe2\x8b\x1b\xfb\x0a\x36\x4d\x5e\x6c\xea\x72\x57\x14\x28\x70\xb3\xd9\xe7\xbb\x6c\x5b\xe2\x7a\x97\x35\x75\x91\xad\xb7\xb8\x08\xfd\xe2\x25\x7c\xb9\x30\x2f\x97\xc7\xd1\xe2\xd0\x85\xc1\xf6\x42\xf2\xd8\xb1\x03\x4b\xce\x8c\x56\xd0\x54\x87\x60\x3f\x0c\xc8\x5d\x75\x9d\x0a\xbf\x3c\x45\x1c\x2b\x97\x21\x74\x1d\x2f\xd3\x19\xa4\x3b\xa0\x15\x9d\x7c\x9e\xdd\x9e\x2d\x2a\x47\xb0\x04\xd9\x82\x23\x5e\x4d\xc3\xd9\x53\x58\xa3\x23\x5f\xc2\xe9\x96\xf3\x0f\x7e\xa0\x6b\x88\x11\xe6\x2c\x76\x34\xcb\x76\x7e\xa4\x69\x21\x84\x6c\x48\x1b\x26\xff\x3c\xf3\x6c\xa5\xa2\xf0\xe1\xe4\x2e\xf2\xfa\xbe\x2a\x2f\x92\xbb\x78\xd5\xcd\xb7\x9e\x36\xbc\x11\x51\x66\xb8\xc3\xac\xbd\x17\xf5\x5e\x14\x02\x71\xd7\xfa\x95\x7d\x5d\xee\x71\x97\x67\xb8\x5f\x20\xb3\x95\xf5\xc8\xd3\x15\x41\x27\xb6\x08\x9a\x38\x7c\x76\xdd\x6c\x21\xf6\x17\xa9\x9b\x0a\xde\x3f\x3c\xc4\xc3\xf9\x77\x9f\xa0\xa6\xd1\xa2\xba\x7a\xbd\x79\xff\xf0\xb0\x82\x8f\xfe\x5f\x92\x24\x6f\xa7\x76\xf2\x57\xb8\xd4\xc7\x43\x83\x8c\x8e\xb8\x82\xff\x7b\x41\x4d\x1f\x91\x71\xed\xfa\xf1\x15\x66\x6a\x74\x08\xde\x3d\x6a\xd9\x92\xe3\x03\x8e\xdc\x19\x5b\x01\xd6\xcd\xa8\x9a\xc5\xdf\x01\x00\x00\xff\xff\x14\x98\xc7\xd3\x9a\x0a\x00\x00"
func torchvision_alexnetYmlBytes() ([]byte, error) {
return bindataRead(
_torchvision_alexnetYml,
"TorchVision_AlexNet.yml",
)
}
func torchvision_alexnetYml() (*asset, error) {
bytes, err := torchvision_alexnetYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "TorchVision_AlexNet.yml", size: 2714, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _torchvision_deeplabv3_resnet101Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x5b\x6f\xe3\xc6\x0e\x7e\xf7\xaf\x20\xe0\x97\x73\x0e\x62\xdd\x6c\xf9\x22\xe0\xf4\xa1\x29\xd0\x7d\x28\xb2\x8b\xed\xa2\x45\x11\x04\x02\x35\xa2\xa4\x69\xa4\x19\x61\x86\x72\xd6\xfb\xeb\x8b\x19\xc9\xb2\xb2\x9b\xa2\xdb\x3c\xc4\x12\xf9\xf1\x32\xe4\x47\x8e\x14\x76\x94\xc1\x27\x6d\x44\xf3\x9b\xb4\x52\xab\xfc\x27\xa2\xfe\x17\x2c\xce\xdb\xfc\x23\x59\x45\x1c\x47\x31\xac\xc1\xe1\x40\x57\x70\xd1\x83\x81\x4e\x97\xd4\xae\x2a\x83\x1d\xbd\x68\xf3\x9c\xad\x00\x00\x46\x4f\x1f\x2e\xde\x17\xac\x61\x56\x43\xa5\x0d\x70\x43\x93\x99\xc3\x9e\xc9\xb8\x58\x19\xc4\x41\xf2\x0a\x3a\x29\x40\x68\x65\xd9\xa0\x54\xbc\x5a\x60\x23\x58\xcf\x08\xa9\x2a\x6d\x3a\xe4\xf1\x19\x2c\x75\xa8\x58\x8a\x59\x3f\x6a\x57\x42\x2b\x46\xa9\xc8\x64\xb0\x86\xf9\xc5\xc2\x60\xa9\x04\xd6\xd0\x93\x71\xc8\x31\x37\xe8\x0d\x95\x52\x38\x9f\x3e\xcd\x35\x74\x43\xcb\xb2\x6f\x09\xfa\x16\xd9\x01\x2d\x08\x54\x50\x10\xd8\x9e\x84\xac\x24\x95\x1e\x89\x5d\xb9\xdf\x8d\x75\x70\x7f\xa2\x1f\x32\x30\x28\x7b\xa3\xff\x24\xc1\xa1\x40\xd3\xb5\x9b\xfe\xc2\xae\x36\x99\x07\x6f\x44\x3f\xcc\xf8\xfa\x3b\xf0\xf5\x84\xef\x7b\xb1\xdf\xb5\xf4\xbd\xc1\x26\xf8\x6c\xfe\xcf\xe1\x96\x16\x25\x59\x61\x64\xcf\xbe\x01\x3f\x78\x07\x9f\x1a\x02\xd9\x61\x4d\x16\x1a\x3c\x93\x2b\x62\x41\xd0\x6a\x2c\xa9\x74\x9d\x60\x0d\x08\x06\x55\xed\xf9\xf2\x18\xdd\x41\xfc\x04\xa8\x4a\x47\x01\x05\xca\xb5\xa5\x95\x5f\xa8\x84\xc1\x4a\x55\x43\x47\xa8\xe0\xff\xf0\x18\x05\xbb\x63\x7a\x07\x51\xb0\x4b\xf7\xfe\x27\xda\x8f\x66\x96\xcb\x51\x9f\x24\x27\xa7\x48\x92\xdd\xf8\x93\x3e\x05\x2b\x43\x15\x19\x52\x82\xac\xeb\xef\xed\xcd\xb7\x16\x7b\xd7\xe9\x10\x5e\xa8\xb0\x92\xc9\x3d\x12\x8b\x20\x80\xf1\x54\x85\x0b\xff\x9a\x97\x1b\x68\x98\x7b\x9b\x85\x21\x9a\xcf\xf2\x1c\x68\x53\x87\x7d\x59\x85\xf1\x21\xda\x07\x51\x9a\x1e\x0f\x41\x5f\x56\x5f\x41\x6b\xc9\xcd\x50\x04\x42\x77\xe1\x54\xc2\xf0\xec\x47\x29\x2c\x5a\x5d\x84\x1d\x5a\x26\x13\x7a\xc5\x24\xf7\x01\x6d\x68\xa9\xee\x48\xb1\xe7\x70\x58\x12\xf5\xad\x1b\xbb\xa0\xbf\x7c\x15\x60\xf2\xea\xb3\x29\xb5\xb0\xa1\x65\x2c\x5a\x7a\xc3\x65\xd0\x70\xd7\xae\xd6\xd0\x4a\x41\xca\xfa\x06\xdc\x0e\x38\x09\x33\x18\x94\x21\xcb\x46\x0a\xa6\x72\xb5\x06\xa9\xfa\x81\x7d\xc5\x6e\xd8\x51\x96\x4d\x53\x50\x49\x63\x79\xc4\x01\x5f\x7a\x7a\x63\xa2\x37\x5e\x91\x8d\xcc\x98\x88\xb6\x86\x05\x7d\xae\xb9\x2c\x7c\x4d\xb0\x57\x1c\x73\x90\x31\xd0\xd2\x53\x8f\x6e\x43\x30\x19\xdf\x66\x9f\xc2\x4d\x34\xd3\x1a\x80\x5a\x72\x15\xcd\xc7\x5c\xaa\x56\x23\x6f\x93\x85\xde\x7b\xce\x5b\xbc\xb8\x7d\x10\x2d\x14\x2d\x5e\xf4\xc0\x19\xdc\xbf\xfb\x7d\x21\x15\xba\xd5\x26\x77\x87\xcc\xe0\xe3\xcf\x3f\x2e\x34\x8e\xb5\x19\x3c\xc6\xc9\x36\xd8\x1f\xd2\x3b\x88\xe3\x7d\x90\x1c\x1d\xd7\xa3\x6d\x90\x6e\xa3\x27\x58\xff\x0d\xa5\xff\x07\x49\x9a\x2e\x3c\x59\x81\x2d\x65\xf0\x98\x1e\x83\xed\x29\xbd\x83\xf4\x10\xc4\x49\xe4\x7f\xb7\x87\xf4\xc9\x97\xf1\x15\xf9\x83\x89\xfc\x93\x27\x3d\x70\x3f\xb0\xeb\xd4\x78\xe8\xeb\x22\x9c\xc8\xb5\x7a\xa3\xbe\xa3\xc9\x6d\x65\x4e\x50\x58\x03\xbe\xd5\xb1\x09\x3e\x17\x7c\xf5\xaa\x1f\xab\x6f\xeb\x2e\x15\xef\x77\x5e\xde\xa1\x7d\xb6\xd7\x7a\xff\x3a\xc5\xfb\x30\x2f\xd9\xb1\x75\x15\x21\x0f\x86\x6c\x3e\x98\x36\x9b\x49\x6f\xb7\x01\x76\xf8\x45\x2b\x7c\xb1\x7e\xb6\x2c\x6b\x43\x81\x5f\x55\x7e\x12\xa6\x21\x62\x52\x56\x9b\xaa\xd5\x2f\x57\xc9\x3c\x49\x79\xa7\xce\x49\xde\xa3\x2b\x71\xee\x6f\x93\x1c\x87\x3a\x4f\xa2\xf8\x98\x47\x71\x9e\x9c\xc2\x51\xb7\x39\x6b\xb1\x11\x2d\x5a\x4b\x36\xe0\xcf\xfc\x3a\x2b\xd1\x90\x78\xb6\x43\x97\xc1\x49\xd0\x6e\x7b\x2a\x44\x55\xec\x76\x62\x1b\xed\x68\x77\xc2\xa8\xa2\x18\x69\x7b\x3a\x56\xfb\xd3\xca\x27\xe0\x18\x7a\xbd\x1c\xec\x74\xaf\xd4\x06\xfb\xc6\x6f\xb3\x17\x92\x75\xc3\x16\x0c\x59\x3d\x18\x41\x63\x09\xbc\x3e\xef\x91\x9b\x7f\x5f\x80\xeb\xce\xb9\x1d\xdb\x5c\xef\xed\xa0\x1f\xcf\x22\x6d\x8e\x46\x34\xf2\xbc\xb8\x35\x2a\x6c\x2d\xc1\x1a\x64\x05\x96\xf8\x6e\xdc\xce\xae\xdd\x05\x5a\x72\xad\x00\x69\x01\xc1\x3d\xb8\x8d\xae\x60\xf2\x30\x3b\x58\x7b\xf4\x2d\xf3\xe5\xf1\x46\x81\x77\x59\x92\xd2\x4c\xee\x79\x61\x59\xc9\x96\xfc\x07\x83\xbd\x92\xec\xdb\x0a\xbd\x48\x6e\xe4\x98\xd2\x32\xf4\x18\xf0\xd6\x94\x23\x96\x62\x17\x63\x72\x88\xf6\x51\x51\x61\x59\xd1\xbe\x12\x25\x45\x49\x59\x55\xe9\x09\xa3\x15\x32\x1b\x59\x0c\x3c\x5e\x11\xf4\x99\x0d\x82\x22\xf6\x9f\x1b\x37\x9d\xf7\xfd\x2c\x55\x99\xc1\xfd\xc3\xc3\x74\x38\xf7\xee\x12\x54\x34\x18\x6c\x67\xab\xff\xdc\x3f\x3c\xdc\xc1\x47\xf7\x2f\x08\x82\xff\x7a\x53\x4f\x2f\xa9\xea\xbc\x44\x46\x4b\x6e\x95\xbc\xbf\x7f\x0f\x49\x14\x1f\xdc\x1e\x1c\x85\xf3\x57\x87\xdf\x9f\x93\xc5\x34\x28\x4a\x56\x64\x39\xc7\x81\x1b\x6d\x32\xf8\x83\xd4\xe6\x9d\x95\xa8\x6a\xb8\x6f\x50\xd5\xab\xbf\x02\x00\x00\xff\xff\xb2\x73\x1f\x35\xa9\x09\x00\x00"
func torchvision_deeplabv3_resnet101YmlBytes() ([]byte, error) {
return bindataRead(
_torchvision_deeplabv3_resnet101Yml,
"TorchVision_DeepLabv3_Resnet101.yml",
)
}
func torchvision_deeplabv3_resnet101Yml() (*asset, error) {
bytes, err := torchvision_deeplabv3_resnet101YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "TorchVision_DeepLabv3_Resnet101.yml", size: 2473, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _torchvision_densenet_121Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x4f\x8f\xdb\xb6\x13\xbd\xfb\x53\x0c\xe0\x4b\xf2\x83\x57\xb2\x24\xdb\xf1\x0a\xf8\x15\x68\x53\xa0\xe9\x65\x51\x04\x41\x73\x58\x2c\x8c\x11\x35\xb2\xd8\x50\x24\x41\x8e\x76\xd7\xf9\xf4\x05\x29\xda\xd6\xe6\x4f\x93\x3d\xac\x25\xce\xcc\xe3\x70\xde\x9b\xa1\x34\x0e\x54\xc3\x07\xe3\x44\xff\xb7\xf4\xd2\xe8\xc3\xef\xa4\x3d\xdd\x11\x1f\x8a\xb2\x80\x25\x04\x07\x30\x1d\x9c\xcc\xe8\x60\x30\x2d\xa9\x45\xe7\x70\xa0\x27\xe3\x3e\xd5\x0b\x00\x80\x09\xe2\xaf\x53\x04\x81\x25\x5c\xcc\xd0\x19\x07\xdc\x53\x0a\x0b\xbe\x8f\xe4\xc2\x26\x35\x14\x59\xf9\xc2\x35\x19\x40\x18\xed\xd9\xa1\xd4\xbc\x98\xf9\xae\x61\x79\xf1\x90\xba\x33\x6e\x40\x9e\x9e\xc1\xd3\x80\x9a\xa5\xb8\xd8\x27\xeb\x42\x18\xcd\x28\x35\xb9\x1a\x96\x70\x79\xf1\x30\x7a\x6a\x81\x0d\x58\x72\xc1\x73\xca\x0d\xac\xa3\x56\x8a\x80\x19\xd3\x5c\xc2\x30\x2a\x96\x56\x11\x58\x85\x1c\x1c\x3d\x08\xd4\xd0\x10\x78\x4b\x42\x76\x92\xda\xe8\x89\x43\xbb\xdb\x4c\x75\x08\x7f\xc2\x8e\x35\x38\x94\xd6\x99\x7f\x48\x70\x2e\xd0\x0d\xea\xc6\x9e\x38\xd4\xa6\x8e\xce\x37\xc2\x8e\x17\xff\xe3\x4f\xf8\x1f\x93\xbf\xb5\x62\xb7\x51\xf4\xb3\x9b\x25\xf7\x4b\xf8\x8f\xb7\x9b\x47\xb4\xe4\x85\x93\x96\x23\x01\xbf\x44\x80\x0f\xbd\xf4\xa9\x5c\xd2\x03\x82\x23\xab\xa4\x98\x88\x30\xdd\x95\x68\x98\x62\x1b\x6a\x03\x3f\x61\xf9\x2c\x29\xb0\x63\x73\x0e\xc9\x22\xe6\xaf\x2a\xd6\xfe\x26\x52\x4e\xed\x04\xe0\x81\x9e\x2d\x09\x06\xa9\xed\xc8\x20\x07\x3c\x92\x07\x1d\x78\x55\xf2\xf3\x15\xd6\x07\x69\x3e\xe1\x69\x05\x32\xa3\x0c\x06\xa9\xe5\x4d\x83\x2c\x7a\xf2\x21\xa1\xea\x46\xf4\xa8\x35\x29\x78\xff\xc7\x6f\x67\x14\xd3\x81\xef\xd1\x12\xbc\xaa\xe0\x19\xde\xc1\x33\x7c\x7c\xbd\x82\xa7\x9e\x1c\xc1\x3b\x40\xdd\xc2\x47\x40\x47\x29\x83\x49\x2a\x0d\x01\x32\x28\x42\xcf\x50\x96\x9b\x0c\x3e\xf4\x74\xc6\xeb\xf1\x91\x92\x8f\x32\xd8\xa6\xe4\x4c\x28\x0f\xea\x63\xec\x9c\xfb\xf5\x0a\x8a\x87\x88\xcd\x3d\xe9\xf9\x41\x46\x2f\xf5\x11\x06\x42\x0d\xff\x87\xfb\x75\xb6\xd9\x6f\x57\xb0\xce\x36\xdb\x5d\xfc\x59\xef\xa6\x30\xcf\xed\x64\x2f\xcb\xdb\x60\x28\xcb\xcd\xf4\xb3\x7d\x58\x38\xea\xc8\x91\x16\xe4\x83\xd0\xaf\x6f\x51\xe3\x68\x83\xe4\x73\x78\xa2\xc6\x4b\xa6\xf0\x48\x2c\xb2\xec\x4c\x51\xd8\xfd\x65\x83\xde\x40\xcf\x6c\x7d\x9d\xe7\xe8\x9e\xe5\x63\x66\xdc\x31\xb7\x6d\x97\x17\xbb\xf5\x3e\x5b\xef\x6e\x6f\xab\xcc\xb6\xdd\x17\xae\x47\xc9\xfd\xd8\x64\xc2\x0c\x79\xd2\x52\xfe\x18\x87\x49\xde\x28\xd3\xe4\x03\x7a\x26\x97\x47\x43\x5a\x9f\x78\xce\xdb\x20\x0c\x4d\x9c\xd9\xd3\x17\x90\x09\x27\xee\xdf\x1a\xe1\x73\xcf\xd8\x28\x7a\x01\x22\x75\x4b\xcf\x59\xcf\x83\x5a\x2c\x41\x49\x11\xc0\x5e\x28\x71\x91\x16\x6b\x18\xb5\x23\xcf\x4e\x06\x4a\x17\xcb\x49\x58\xb1\x44\x57\xdf\x69\xad\x4e\xfd\xdf\x49\xe7\xcf\x02\xe4\x93\xa5\x6f\xcc\xb2\x9b\x68\xa8\x27\x25\xa4\x16\x5b\xc2\xac\x71\xce\xb9\xcc\xb0\x92\xdb\x8b\xee\x0a\x2e\x33\xa5\x27\x17\x8b\x61\x36\x32\xb9\xc8\x6b\x4c\xe1\xba\x74\x69\x68\x00\x52\x34\x90\xe6\xc3\x94\x4b\xa7\x0c\x72\x55\xce\xec\x11\xf9\xa0\xf0\x14\x26\xe1\x7a\x66\x50\x78\x32\x23\xd7\xf0\xf6\xdd\xc7\xd9\xaa\x30\xca\xb8\x43\x38\x64\x1d\xda\x66\x66\x69\xe5\x40\x3a\xd4\xdd\xd7\x70\x5f\xad\x20\x8a\xb0\x2c\x37\x0f\x33\x9f\xa0\xe4\x1a\xee\x8b\xb2\xca\x76\x6f\xb6\x2b\x28\x8a\x5d\x56\xee\x83\xfe\xd7\x55\xb6\xad\xd6\x0f\xb0\xfc\x8e\xcc\xff\x07\xe5\x76\x3b\x43\xf2\x02\x15\xd5\x70\xbf\xdd\x67\xd5\xed\x76\x05\xdb\x37\x59\x51\xae\xe3\x6f\xf5\x66\xfb\x10\x4b\xfd\xa2\x21\xb2\xd4\x10\x09\xc9\x8c\x6c\x47\x3e\xb3\x19\x4a\x1c\x4b\x98\x18\x99\xac\xd1\x38\xd5\x4d\x28\xf4\x5e\x76\x69\x36\xa5\x28\xfc\x16\x99\x53\xe8\x95\x8b\xc5\x37\xf9\x4c\x5e\x0a\x9b\x24\x96\x19\x9d\x97\x53\x7e\x9f\xd6\xff\x26\xd5\x3a\xd3\x60\x23\x95\x64\x49\xfe\x6b\x6a\x3b\x42\x1e\x1d\xf9\xc3\xe8\x54\x1d\x1b\xaa\xce\x73\x5f\x65\x38\xe0\x67\xa3\xf1\xc9\xc7\x46\xf5\x6c\x1c\x65\xf1\x02\x88\x4d\xe6\x4f\xda\x13\xfb\x3c\x6a\x50\x13\xa7\x85\x8c\x9f\xf9\x6b\x64\xd1\x93\xf8\xe4\xc7\xa1\x86\x4d\x5b\x56\x9b\x66\xbb\xaf\x2a\x14\xb8\xd9\xdc\x96\xfb\xf5\x6e\x8b\xc5\x7e\xdd\x36\xd5\xba\xd8\xe1\x22\xf6\x4b\x90\xf0\xf9\xde\x3c\xdf\x21\x47\x87\xb6\x8f\xe3\xed\x89\xe4\xb1\x67\x0f\x8e\xbc\x19\x9d\xa0\xa9\x0e\xd1\x7e\xb0\xc8\x7d\x7d\x99\x0a\x3f\x3c\x45\x9a\x2b\xe7\x29\x74\x9e\x2f\x45\x59\x64\x76\x3a\x87\xf4\x07\x74\xa2\x97\x8f\xb3\x8b\xb4\x43\xe5\x09\x96\x20\x3b\xf0\xc4\xab\x69\x4c\x07\x1a\x1b\xf4\x14\xca\x38\x5d\x78\xe1\x21\x8c\x76\x0d\x09\x61\xce\x64\x4f\xb3\x8c\xe7\xc7\x9a\x16\x22\x64\x4b\xda\x30\x85\xe7\x59\x64\x27\x15\xc5\x6f\x28\x7f\x96\xd8\xd7\x95\x79\x92\xdc\xa7\x4b\x6f\xbe\xf5\xb4\xe1\x95\x8c\x06\xa9\xa8\xda\x62\x5f\x6e\xda\x4d\x53\xb6\xfb\xa6\x29\xba\xdb\xdb\xa6\xdb\x57\xb4\x6e\x9a\x76\xb3\x40\x66\x27\x9b\x91\xa7\xcb\x82\x9e\xd9\x21\x68\xe2\xf8\x05\x76\xb5\x45\xec\x4f\x52\xb7\x35\xbc\xbd\xbb\x4b\x87\x0b\xef\x21\x41\x4d\xa3\x43\x75\x89\x7a\xf5\xf6\xee\x6e\x05\xef\xc3\xbf\x2c\xcb\x5e\x4f\x2d\x15\x2e\x73\xa9\x8f\x87\x16\x19\x3d\x71\x0d\x7f\x06\x51\x85\x0f\x80\x25\xa4\xb5\xcb\x77\x58\x9c\xab\x29\x20\x46\x0f\xa8\x65\x47\x9e\x0f\x38\x72\x6f\x5c\x0d\xd8\xb4\xa3\x6a\x17\xff\x06\x00\x00\xff\xff\x4f\x3b\x84\x1f\xaa\x0a\x00\x00"
func torchvision_densenet_121YmlBytes() ([]byte, error) {
return bindataRead(
_torchvision_densenet_121Yml,
"TorchVision_DenseNet_121.yml",
)
}
func torchvision_densenet_121Yml() (*asset, error) {
bytes, err := torchvision_densenet_121YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "TorchVision_DenseNet_121.yml", size: 2730, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _torchvision_densenet_161Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\xdf\x8f\xdb\x38\x0e\x7e\xcf\x5f\x41\x20\x2f\xed\x21\x63\x3b\x76\x9c\x49\x0c\xdc\x01\x77\x3d\x60\xbb\x2f\x83\x45\x51\x6c\x1f\x06\x83\x80\x96\xe9\x58\x5b\x59\x32\x24\x7a\x26\xe9\x5f\xbf\x90\xac\x24\x9e\xfe\xd8\x76\x1e\x26\xb6\x48\x7e\xa2\xf8\x7d\xa4\xac\xb1\xa7\x0a\x3e\x1a\x2b\xba\x3f\xa5\x93\x46\x1f\xfe\x4f\xda\xd1\x03\xf1\x61\xbd\x5d\xc3\x12\xbc\x03\x98\x16\xce\x66\xb4\xd0\x9b\x86\xd4\xa2\xb5\xd8\xd3\x8b\xb1\x9f\xab\x05\x00\xc0\x04\xf1\xc7\x39\x80\xc0\x12\xae\x66\x68\x8d\x05\xee\x28\x86\x79\xdf\x67\xb2\x7e\x93\x0a\xd6\x49\xfe\xca\x35\x1a\x40\x18\xed\xd8\xa2\xd4\xbc\x98\xf9\x66\xb0\xbc\x7a\x48\xdd\x1a\xdb\x23\x4f\xcf\xe0\xa8\x47\xcd\x52\x5c\xed\x93\x75\x21\x8c\x66\x94\x9a\x6c\x05\x4b\xb8\xbe\x38\x18\x1d\x35\xc0\x06\x06\xb2\xde\x73\xca\x0d\x06\x4b\x8d\x14\x1e\x33\xa4\xb9\x84\x7e\x54\x2c\x07\x45\x30\x28\x64\xef\xe8\x40\xa0\x86\x9a\xc0\x0d\x24\x64\x2b\xa9\x09\x9e\xd8\x37\xdb\xcd\x54\x07\xff\x27\x86\xb1\x02\x8b\x72\xb0\xe6\x2f\x12\x9c\x0a\xb4\xbd\xba\x1b\xce\xec\x6b\x53\x05\xe7\x3b\x31\x8c\x57\xff\xe3\x2f\xf8\x1f\xa3\xff\x30\x88\xed\x46\xd1\xaf\x6e\x16\xdd\xaf\xe1\x3f\xdf\x6e\x1e\xd1\x90\x13\x56\x0e\x1c\x08\xf8\x4f\x00\xf8\xd8\x49\x17\xcb\x25\x1d\x20\x58\x1a\x94\x14\x13\x11\xa6\xbd\x11\x0d\x53\x6c\x4d\x8d\xe7\xc7\x2f\x5f\x24\x05\xc3\x58\x5f\x42\x92\x80\xf9\x5f\x15\x6a\x7f\x17\x28\xa7\x66\x02\x70\x40\xa7\x81\x04\x83\xd4\xc3\xc8\x20\x7b\x3c\x92\x03\xed\x79\x55\xf2\xcb\x0d\xd6\x79\x69\xbe\xe0\x79\x05\x32\xa1\x04\x7a\xa9\xe5\x5d\x8d\x2c\x3a\x72\x3e\xa1\xe2\x4e\x74\xa8\x35\x29\xf8\xf0\xdb\xff\x2e\x28\xa6\x05\xd7\xe1\x40\xf0\xa6\x80\x13\xbc\x87\x13\x7c\x7a\xbb\x82\x97\x8e\x2c\xc1\x7b\x40\xdd\xc0\x27\x40\x4b\x31\x83\x49\x2a\x35\x01\x32\x28\x42\xc7\x90\xe7\x9b\x04\x3e\x76\x74\xc1\xeb\xf0\x99\xa2\x8f\x32\xd8\xc4\xe4\x8c\x2f\x0f\xea\x63\xe8\x9c\xc7\x6c\x05\xeb\xa7\x80\xcd\x1d\xe9\xf9\x41\x46\x27\xf5\x11\x7a\x42\x0d\xff\x86\xc7\x2c\xd9\xec\xca\x15\x64\xc9\xa6\xdc\x86\x9f\x6c\x3b\x85\x39\x6e\x26\x7b\x9e\xef\xbd\x21\xcf\x37\xd3\x4f\xf9\xb4\xb0\xd4\x92\x25\x2d\xc8\x79\xa1\xdf\xde\x82\xc6\x71\xf0\x92\x4f\xe1\x85\x6a\x27\x99\xfc\x23\xb1\x48\x92\x0b\x45\x7e\xf7\xd7\x0d\x7a\x07\x1d\xf3\xe0\xaa\x34\x45\x7b\x92\xcf\x89\xb1\xc7\x74\x68\xda\x74\xbd\xcd\x76\x49\xb6\xdd\xef\x8b\x64\x68\xda\xaf\x5c\x8f\x92\xbb\xb1\x4e\x84\xe9\xd3\xa8\xa5\xf4\x39\x0c\x93\xb4\x56\xa6\x4e\x7b\x74\x4c\x36\x0d\x86\xb8\x3e\xf1\x9c\x36\x5e\x18\x9a\x38\x19\xce\x5f\x41\x46\x9c\xb0\x7f\x63\x84\x4b\x1d\x63\xad\xe8\x15\x88\xd4\x0d\x9d\x92\x8e\x7b\xb5\x58\x82\x92\xc2\x83\xbd\x52\xe2\x22\x2e\x56\x30\x6a\x4b\x8e\xad\xf4\x94\x2e\x96\x93\xb0\x42\x89\x6e\xbe\xd3\x5a\x15\xfb\xbf\x95\xd6\x5d\x04\xc8\xe7\x81\xbe\x33\xcb\xee\x82\xa1\x9a\x94\x10\x5b\x6c\x09\xb3\xc6\xb9\xe4\x32\xc3\x8a\x6e\xaf\xba\xcb\xbb\xcc\x94\x1e\x5d\x06\xf4\xb3\x91\xc9\x06\x5e\x43\x0a\xb7\xa5\x6b\x43\x03\x90\xa2\x9e\x34\x1f\xa6\x5c\x5a\x65\x90\x8b\x7c\x66\x0f\xc8\x07\x85\x67\x3f\x09\xb3\x99\x41\xe1\xd9\x8c\x5c\xc1\xbb\xf7\x9f\x66\xab\xc2\x28\x63\x0f\xfe\x90\x95\x6f\x9b\x99\xa5\x91\x3d\x69\x5f\x77\x57\xc1\x63\xb1\x82\x20\xc2\x3c\xdf\x3c\xcd\x7c\xbc\x92\x2b\x78\x5c\xe7\x45\xb2\xbd\x2f\x57\xb0\x5e\x6f\x93\x7c\xe7\xf5\x9f\x15\x49\x59\x64\x4f\xb0\xfc\x81\xcc\xff\x05\x79\x59\xce\x90\x9c\x40\x45\x15\x3c\x96\xbb\xa4\xd8\x97\x2b\x28\xef\x93\x75\x9e\x85\xdf\xe2\xbe\x7c\x0a\xa5\x7e\xd5\x10\x49\x6c\x88\x88\x64\x46\x1e\x46\xbe\xb0\xe9\x4b\x1c\x4a\x18\x19\x99\xac\xc1\x38\xd5\x4d\x28\x74\x4e\xb6\x71\x36\xc5\x28\xfc\x1e\x99\x53\xe8\x8d\x8b\xc5\x77\xf9\x8c\x5e\x0a\xeb\x28\x96\x19\x9d\xd7\x53\xfe\x98\xd6\x7f\x26\x75\xb0\xa6\xc6\x5a\x2a\xc9\x92\xdc\xb7\xd4\xb6\x84\x3c\x5a\x72\x87\xd1\xaa\x2a\x34\x54\x95\xa6\xae\x48\xb0\xc7\x2f\x46\xe3\x8b\x0b\x8d\xea\xd8\x58\x4a\xc2\x05\x10\x9a\xcc\x9d\xb5\x23\x76\x69\xd0\xa0\x26\x8e\x0b\x09\x9f\xf8\x5b\x64\xd1\x91\xf8\xec\xc6\xbe\x82\x4d\x93\x17\x9b\xba\xdc\x15\x05\x0a\xdc\x6c\xf6\xf9\x2e\xdb\x96\xb8\xde\x65\x4d\x5d\x64\xeb\x2d\x2e\x42\xbf\x78\x09\x5f\xee\xcd\xcb\x1d\x72\xb4\x38\x74\x61\xbc\xbd\x90\x3c\x76\xec\xc0\x92\x33\xa3\x15\x34\xd5\x21\xd8\x0f\x03\x72\x57\x5d\xa7\xc2\x4f\x4f\x11\xe7\xca\x65\x0a\x5d\xe6\xcb\x7a\xbb\x4e\x86\xe9\x1c\xd2\x1d\xd0\x8a\x4e\x3e\xcf\x2e\xd2\x16\x95\x23\x58\x82\x6c\xc1\x11\xaf\xa6\x31\xed\x69\xac\xd1\x91\x2f\xe3\x74\xe1\xf9\x07\x3f\xda\x35\x44\x84\x39\x93\x1d\xcd\x32\x9e\x1f\x6b\x5a\x08\x90\x0d\x69\xc3\xe4\x9f\x67\x91\xad\x54\x14\xbe\xa1\xdc\x45\x62\xdf\x56\xe6\x45\x72\x17\x2f\xbd\xf9\xd6\xd3\x86\x37\x32\xf6\xf7\x82\xf2\x66\x57\xb4\x9b\x7d\x4d\x0d\xed\x4b\x5a\x6f\xfd\x43\xd6\xee\xf7\x59\xd9\x96\x0b\x64\xb6\xb2\x1e\x79\xba\x2c\xe8\xc4\x16\x41\x13\x87\x2f\xb0\x9b\x2d\x60\x7f\x96\xba\xa9\xe0\xdd\xc3\x43\x3c\x9c\x7f\xf7\x09\x6a\x1a\x2d\xaa\x6b\xd4\x9b\x77\x0f\x0f\x2b\xf8\xe0\xff\x25\x49\xf2\x76\x6a\x29\x7f\x99\x4b\x7d\x3c\x34\xc8\xe8\x88\x2b\xf8\xdd\x8b\xca\x7f\x00\x2c\x21\xae\x5d\xbf\xc3\xc2\x5c\x8d\x01\x21\xba\x47\x2d\x5b\x72\x7c\xc0\x91\x3b\x63\x2b\xc0\xba\x19\x55\xb3\xf8\x3b\x00\x00\xff\xff\xa7\x74\xad\xf1\xaa\x0a\x00\x00"
func torchvision_densenet_161YmlBytes() ([]byte, error) {
return bindataRead(
_torchvision_densenet_161Yml,
"TorchVision_DenseNet_161.yml",
)
}
func torchvision_densenet_161Yml() (*asset, error) {
bytes, err := torchvision_densenet_161YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "TorchVision_DenseNet_161.yml", size: 2730, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _torchvision_densenet_169Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x5d\x8f\xdb\x3a\x0e\x7d\xcf\xaf\x20\x90\x97\x76\x91\xb1\x1d\x3b\x76\x13\x03\xbb\xc0\x6e\x17\xd8\xee\xcb\x60\x51\x14\xdb\x87\xc1\x20\xa0\x65\x3a\xd6\xad\x2c\x19\x12\x3d\x33\xe9\xaf\xbf\x90\xac\x24\x9e\x7e\xdc\x76\x1e\x26\xb6\x48\x1e\x51\x3c\x87\x94\x35\x0e\x54\xc3\x27\x63\x45\xff\x7f\xe9\xa4\xd1\xc7\x7f\x93\x76\x74\x4f\x7c\xdc\x56\x07\x58\x83\x77\x00\xd3\xc1\xd9\x4c\x16\x06\xd3\x92\x5a\x75\x16\x07\x7a\x36\xf6\x4b\xbd\x02\x00\x98\x21\xfe\x77\x0e\x20\xb0\x86\xab\x19\x3a\x63\x81\x7b\x8a\x61\xde\xf7\x89\xac\xdf\xa4\x86\x6d\x92\xbf\x72\x8d\x06\x10\x46\x3b\xb6\x28\x35\xaf\x16\xbe\x19\xac\xaf\x1e\x52\x77\xc6\x0e\xc8\xf3\x33\x38\x1a\x50\xb3\x14\x57\xfb\x6c\x5d\x09\xa3\x19\xa5\x26\x5b\xc3\x1a\xae\x2f\x0e\x26\x47\x2d\xb0\x81\x91\xac\xf7\x9c\x73\x83\xd1\x52\x2b\x85\xc7\x0c\x69\xae\x61\x98\x14\xcb\x51\x11\x8c\x0a\xd9\x3b\x3a\x10\xa8\xa1\x21\x70\x23\x09\xd9\x49\x6a\x83\x27\x0e\x6d\xb5\x9b\xeb\xe0\xff\xc4\x38\xd5\x60\x51\x8e\xd6\xfc\x41\x82\x53\x81\x76\x50\x77\xe3\x99\x7d\x6d\xea\xe0\x7c\x27\xc6\xe9\xea\x7f\xfa\x0d\xff\x53\xf4\x1f\x47\x51\xed\x14\xfd\xee\x66\xd1\xfd\x1a\xfe\xeb\xed\x96\x11\x2d\x39\x61\xe5\xc8\x81\x80\x7f\x04\x80\x4f\xbd\x74\xb1\x5c\xd2\x01\x82\xa5\x51\x49\x31\x13\x61\xba\x1b\xd1\x30\xc7\x36\xd4\x7a\x7e\xfc\xf2\x45\x52\x30\x4e\xcd\x25\x24\x09\x98\xff\x54\xa1\xf6\x77\x81\x72\x6a\x67\x00\x07\xf4\x32\x92\x60\x90\x7a\x9c\x18\xe4\x80\x27\x72\xa0\x3d\xaf\x4a\x7e\xbd\xc1\x3a\x2f\xcd\x67\x3c\x6f\x40\x26\x94\xc0\x20\xb5\xbc\x6b\x90\x45\x4f\xce\x27\x54\xdc\x89\x1e\xb5\x26\x05\x1f\xff\xf3\xaf\x0b\x8a\xe9\xc0\xf5\x38\x12\xbc\x29\xe0\x05\x3e\xc0\x0b\x7c\x7e\xbb\x81\xe7\x9e\x2c\xc1\x07\x40\xdd\xc2\x67\x40\x4b\x31\x83\x59\x2a\x0d\x01\x32\x28\x42\xc7\x90\xe7\xbb\x04\x3e\xf5\x74\xc1\xeb\xf1\x89\xa2\x8f\x32\xd8\xc6\xe4\x8c\x2f\x0f\xea\x53\xe8\x9c\x87\x6c\x03\xdb\xc7\x80\xcd\x3d\xe9\xe5\x41\x26\x27\xf5\x09\x06\x42\x0d\x7f\x87\x87\x2c\xd9\xed\xcb\x0d\x64\xc9\xae\xac\xc2\x4f\x56\xcd\x61\x8e\xdb\xd9\x9e\xe7\x07\x6f\xc8\xf3\xdd\xfc\x53\x3e\xae\x2c\x75\x64\x49\x0b\x72\x5e\xe8\xb7\xb7\xa0\x71\x1c\xbd\xe4\x53\x78\xa6\xc6\x49\x26\xff\x48\x2c\x92\xe4\x42\x91\xdf\xfd\x75\x83\xde\x41\xcf\x3c\xba\x3a\x4d\xd1\xbe\xc8\xa7\xc4\xd8\x53\x3a\xb6\x5d\xba\xad\xb2\x7d\x92\x55\x87\x43\x91\x8c\x6d\xf7\x8d\xeb\x49\x72\x3f\x35\x89\x30\x43\x1a\xb5\x94\x3e\x85\x61\x92\x36\xca\x34\xe9\x80\x8e\xc9\xa6\xc1\x10\xd7\x67\x9e\xd3\xd6\x0b\x43\x13\x27\xe3\xf9\x1b\xc8\x88\x13\xf6\x6f\x8d\x70\xa9\x63\x6c\x14\xbd\x02\x91\xba\xa5\x97\xa4\xe7\x41\xad\xd6\xa0\xa4\xf0\x60\xaf\x94\xb8\x8a\x8b\x35\x4c\xda\x92\x63\x2b\x3d\xa5\xab\xf5\x2c\xac\x50\xa2\x9b\xef\xbc\x56\xc7\xfe\xef\xa4\x75\x17\x01\xf2\x79\xa4\x1f\xcc\xb2\xbb\x60\xa8\x67\x25\xc4\x16\x5b\xc3\xa2\x71\x2e\xb9\x2c\xb0\xa2\xdb\xab\xee\xf2\x2e\x0b\xa5\x47\x97\x11\xfd\x6c\x64\xb2\x81\xd7\x90\xc2\x6d\xe9\xda\xd0\x00\xa4\x68\x20\xcd\xc7\x39\x97\x4e\x19\xe4\x22\x5f\xd8\x03\xf2\x51\xe1\xd9\x4f\xc2\x6c\x61\x50\x78\x36\x13\xd7\xf0\xfe\xc3\xe7\xc5\xaa\x30\xca\xd8\xa3\x3f\x64\xed\xdb\x66\x61\x69\xe5\x40\xda\xd7\xdd\xd5\xf0\x50\x6c\x20\x88\x30\xcf\x77\x8f\x0b\x1f\xaf\xe4\x1a\x1e\xb6\x79\x91\x54\xef\xca\x0d\x6c\xb7\x55\x92\xef\xbd\xfe\xb3\x22\x29\x8b\xec\x11\xd6\x3f\x91\xf9\xdf\x20\x2f\xcb\x05\x92\x13\xa8\xa8\x86\x87\x72\x9f\x14\x87\x72\x03\xe5\xbb\x64\x9b\x67\xe1\xb7\x78\x57\x3e\x86\x52\xbf\x6a\x88\x24\x36\x44\x44\x32\x13\x8f\x13\x5f\xd8\xf4\x25\x0e\x25\x8c\x8c\xcc\xd6\x60\x9c\xeb\x26\x14\x3a\x27\xbb\x38\x9b\x62\x14\xfe\x88\xcc\x39\xf4\xc6\xc5\xea\x87\x7c\x46\x2f\x85\x4d\x14\xcb\x82\xce\xeb\x29\x7f\x4e\xeb\x5f\x93\x3a\x5a\xd3\x60\x23\x95\x64\x49\xee\x7b\x6a\x3b\x42\x9e\x2c\xb9\xe3\x64\x55\x1d\x1a\xaa\x4e\x53\x57\x24\x38\xe0\x57\xa3\xf1\xd9\x85\x46\x75\x6c\x2c\x25\xe1\x02\x08\x4d\xe6\xce\xda\x11\xbb\x34\x68\x50\x13\xc7\x85\x84\x5f\xf8\x7b\x64\xd1\x93\xf8\xe2\xa6\xa1\x86\x5d\x9b\x17\xbb\xa6\xdc\x17\x05\x0a\xdc\xed\x0e\xf9\x3e\xab\x4a\xdc\xee\xb3\xb6\x29\xb2\x6d\x85\xab\xd0\x2f\x5e\xc2\x97\x7b\xf3\x72\x87\x9c\x2c\x8e\x7d\x18\x6f\xcf\x24\x4f\x3d\x3b\xb0\xe4\xcc\x64\x05\xcd\x75\x08\xf6\xe3\x88\xdc\xd7\xd7\xa9\xf0\xcb\x53\xc4\xb9\x72\x99\x42\x97\xf9\xb2\xad\x0e\xc9\x38\x9f\x43\xba\x23\x5a\xd1\xcb\xa7\xc5\x45\xda\xa1\x72\x04\x6b\x90\x1d\x38\xe2\xcd\x3c\xa6\x3d\x8d\x0d\x3a\xf2\x65\x9c\x2f\x3c\xff\xe0\x47\xbb\x86\x88\xb0\x64\xb2\xa7\x45\xc6\xcb\x63\xcd\x0b\x01\xb2\x25\x6d\x98\xfc\xf3\x22\xb2\x93\x8a\xc2\x37\x94\xbb\x48\xec\xfb\xca\x3c\x4b\xee\xe3\xa5\xb7\xdc\x7a\xde\xf0\x46\x46\x53\xe1\xbe\x6a\xa8\x29\xdb\xc3\xa1\xc8\xf7\x87\x0c\x0b\xca\x2a\xdc\x55\xdd\xa1\x2c\x9a\x02\x57\xc8\x6c\x65\x33\xf1\x7c\x59\xd0\x0b\x5b\x04\x4d\x1c\xbe\xc0\x6e\xb6\x80\xfd\x45\xea\xb6\x86\xf7\xf7\xf7\xf1\x70\xfe\xdd\x27\xa8\x69\xb2\xa8\xae\x51\x6f\xde\xdf\xdf\x6f\xe0\xa3\xff\x97\x24\xc9\xdb\xb9\xa5\xfc\x65\x2e\xf5\xe9\xd8\x22\xa3\x23\xae\xe1\xbf\x5e\x54\xfe\x03\x60\x0d\x71\xed\xfa\x1d\x16\xe6\x6a\x0c\x08\xd1\x03\x6a\xd9\x91\xe3\x23\x4e\xdc\x1b\x5b\x03\x36\xed\xa4\xda\xd5\x9f\x01\x00\x00\xff\xff\xfd\x54\x3b\xc5\xaa\x0a\x00\x00"
func torchvision_densenet_169YmlBytes() ([]byte, error) {
return bindataRead(
_torchvision_densenet_169Yml,
"TorchVision_DenseNet_169.yml",
)
}
func torchvision_densenet_169Yml() (*asset, error) {
bytes, err := torchvision_densenet_169YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "TorchVision_DenseNet_169.yml", size: 2730, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _torchvision_densenet_201Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\xdf\x8f\xdb\x38\x0e\x7e\xcf\x5f\x41\x20\x2f\xed\x21\x63\x3b\xb6\x93\x49\x0c\xdc\x01\x77\x3d\x60\xbb\x2f\x83\x45\x51\x6c\x1f\x06\x83\x80\x96\xe9\x58\x5b\x59\x32\x24\x7a\x26\xe9\x5f\xbf\x90\xac\x24\x9e\xfe\xd8\x76\x1e\x26\xb6\x48\x7e\xa2\xf8\x7d\xa4\xac\xb1\xa7\x0a\x3e\x1a\x2b\xba\x3f\xa5\x93\x46\x1f\xfe\x4f\xda\xd1\x03\xf1\x21\xcf\xd6\xb0\x04\xef\x00\xa6\x85\xb3\x19\x2d\xf4\xa6\x21\xb5\x68\x2d\xf6\xf4\x62\xec\xe7\x6a\x01\x00\x30\x41\xfc\x71\x0e\x20\xb0\x84\xab\x19\x5a\x63\x81\x3b\x8a\x61\xde\xf7\x99\xac\xdf\xa4\x82\x75\x92\xbf\x72\x8d\x06\x10\x46\x3b\xb6\x28\x35\x2f\x66\xbe\x19\x2c\xaf\x1e\x52\xb7\xc6\xf6\xc8\xd3\x33\x38\xea\x51\xb3\x14\x57\xfb\x64\x5d\x08\xa3\x19\xa5\x26\x5b\xc1\x12\xae\x2f\x0e\x46\x47\x0d\xb0\x81\x81\xac\xf7\x9c\x72\x83\xc1\x52\x23\x85\xc7\x0c\x69\x2e\xa1\x1f\x15\xcb\x41\x11\x0c\x0a\xd9\x3b\x3a\x10\xa8\xa1\x26\x70\x03\x09\xd9\x4a\x6a\x82\x27\xf6\xcd\xb6\x9c\xea\xe0\xff\xc4\x30\x56\x60\x51\x0e\xd6\xfc\x45\x82\x53\x81\xb6\x57\x77\xc3\x99\x7d\x6d\xaa\xe0\x7c\x27\x86\xf1\xea\x7f\xfc\x05\xff\x63\xf4\x1f\x06\xb1\x2d\x15\xfd\xea\x66\xd1\xfd\x1a\xfe\xf3\xed\xe6\x11\x0d\x39\x61\xe5\xc0\x81\x80\xff\x04\x80\x8f\x9d\x74\xb1\x5c\xd2\x01\x82\xa5\x41\x49\x31\x11\x61\xda\x1b\xd1\x30\xc5\xd6\xd4\x78\x7e\xfc\xf2\x45\x52\x30\x8c\xf5\x25\x24\x09\x98\xff\x55\xa1\xf6\x77\x81\x72\x6a\x26\x00\x07\x74\x1a\x48\x30\x48\x3d\x8c\x0c\xb2\xc7\x23\x39\xd0\x9e\x57\x25\xbf\xdc\x60\x9d\x97\xe6\x0b\x9e\x57\x20\x13\x4a\xa0\x97\x5a\xde\xd5\xc8\xa2\x23\xe7\x13\x2a\xee\x44\x87\x5a\x93\x82\x0f\xbf\xfd\xef\x82\x62\x5a\x70\x1d\x0e\x04\x6f\x0a\x38\xc1\x7b\x38\xc1\xa7\xb7\x2b\x78\xe9\xc8\x12\xbc\x07\xd4\x0d\x7c\x02\xb4\x14\x33\x98\xa4\x52\x13\x20\x83\x22\x74\x0c\x79\x5e\x26\xf0\xb1\xa3\x0b\x5e\x87\xcf\x14\x7d\x94\xc1\x26\x26\x67\x7c\x79\x50\x1f\x43\xe7\x3c\x66\x2b\x58\x3f\x05\x6c\xee\x48\xcf\x0f\x32\x3a\xa9\x8f\xd0\x13\x6a\xf8\x37\x3c\x66\x49\xb9\xdb\xac\x20\x4b\xca\xcd\x36\xfc\x64\xdb\x29\xcc\x71\x33\xd9\xf3\x7c\xef\x0d\x79\x5e\x4e\x3f\x9b\xa7\x85\xa5\x96\x2c\x69\x41\xce\x0b\xfd\xf6\x16\x34\x8e\x83\x97\x7c\x0a\x2f\x54\x3b\xc9\xe4\x1f\x89\x45\x92\x5c\x28\xf2\xbb\xbf\x6e\xd0\x3b\xe8\x98\x07\x57\xa5\x29\xda\x93\x7c\x4e\x8c\x3d\xa6\x43\xd3\xa6\xeb\x6d\xb6\x4b\xb2\xed\x7e\x5f\x24\x43\xd3\x7e\xe5\x7a\x94\xdc\x8d\x75\x22\x4c\x9f\x46\x2d\xa5\xcf\x61\x98\xa4\xb5\x32\x75\xda\xa3\x63\xb2\x69\x30\xc4\xf5\x89\xe7\xb4\xf1\xc2\xd0\xc4\xc9\x70\xfe\x0a\x32\xe2\x84\xfd\x1b\x23\x5c\xea\x18\x6b\x45\xaf\x40\xa4\x6e\xe8\x94\x74\xdc\xab\xc5\x12\x94\x14\x1e\xec\x95\x12\x17\x71\xb1\x82\x51\x5b\x72\x6c\xa5\xa7\x74\xb1\x9c\x84\x15\x4a\x74\xf3\x9d\xd6\xaa\xd8\xff\xad\xb4\xee\x22\x40\x3e\x0f\xf4\x9d\x59\x76\x17\x0c\xd5\xa4\x84\xd8\x62\x4b\x98\x35\xce\x25\x97\x19\x56\x74\x7b\xd5\x5d\xde\x65\xa6\xf4\xe8\x32\xa0\x9f\x8d\x4c\x36\xf0\x1a\x52\xb8\x2d\x5d\x1b\x1a\x80\x14\xf5\xa4\xf9\x30\xe5\xd2\x2a\x83\x5c\xe4\x33\x7b\x40\x3e\x28\x3c\xfb\x49\x98\xcd\x0c\x0a\xcf\x66\xe4\x0a\xde\xbd\xff\x34\x5b\x15\x46\x19\x7b\xf0\x87\xac\x7c\xdb\xcc\x2c\x8d\xec\x49\xfb\xba\xbb\x0a\x1e\x8b\x15\x04\x11\xe6\x79\xf9\x34\xf3\xf1\x4a\xae\xe0\x71\x9d\x17\xc9\xf6\x7e\xb3\x82\xf5\x7a\x9b\xe4\x3b\xaf\xff\xac\x48\x36\x45\xf6\x04\xcb\x1f\xc8\xfc\x5f\x90\x6f\x36\x33\x24\x27\x50\x51\x05\x8f\x9b\x5d\x52\xec\x37\x2b\xd8\xdc\x27\xeb\x3c\x0b\xbf\xc5\xfd\xe6\x29\x94\xfa\x55\x43\x24\xb1\x21\x22\x92\x19\x79\x18\xf9\xc2\xa6\x2f\x71\x28\x61\x64\x64\xb2\x06\xe3\x54\x37\xa1\xd0\x39\xd9\xc6\xd9\x14\xa3\xf0\x7b\x64\x4e\xa1\x37\x2e\x16\xdf\xe5\x33\x7a\x29\xac\xa3\x58\x66\x74\x5e\x4f\xf9\x63\x5a\xff\x99\xd4\xc1\x9a\x1a\x6b\xa9\x24\x4b\x72\xdf\x52\xdb\x12\xf2\x68\xc9\x1d\x46\xab\xaa\xd0\x50\x55\x9a\xba\x22\xc1\x1e\xbf\x18\x8d\x2f\x2e\x34\xaa\x63\x63\x29\x09\x17\x40\x68\x32\x77\xd6\x8e\xd8\xa5\x41\x83\x9a\x38\x2e\x24\x7c\xe2\x6f\x91\x45\x47\xe2\xb3\x1b\xfb\x0a\xca\x26\x2f\xca\x7a\xb3\x2b\x0a\x14\x58\x96\xfb\x7c\x97\x6d\x37\xb8\xde\x65\x4d\x5d\x64\xeb\x2d\x2e\x42\xbf\x78\x09\x5f\xee\xcd\xcb\x1d\x72\xb4\x38\x74\x61\xbc\xbd\x90\x3c\x76\xec\xc0\x92\x33\xa3\x15\x34\xd5\x21\xd8\x0f\x03\x72\x57\x5d\xa7\xc2\x4f\x4f\x11\xe7\xca\x65\x0a\x5d\xe6\x4b\x9e\xad\x93\x61\x3a\x87\x74\x07\xb4\xa2\x93\xcf\xb3\x8b\xb4\x45\xe5\x08\x96\x20\x5b\x70\xc4\xab\x69\x4c\x7b\x1a\x6b\x74\xe4\xcb\x38\x5d\x78\xfe\xc1\x8f\x76\x0d\x11\x61\xce\x64\x47\xb3\x8c\xe7\xc7\x9a\x16\x02\x64\x43\xda\x30\xf9\xe7\x59\x64\x2b\x15\x85\x6f\x28\x77\x91\xd8\xb7\x95\x79\x91\xdc\xc5\x4b\x6f\xbe\xf5\xb4\xe1\x8d\x8c\x6c\x9d\x8b\x92\x9a\xe6\x7e\xbb\xaf\xc5\xbe\x2c\xcb\x66\x97\x15\xf7\x6d\xbd\x69\xef\x77\xfb\x5d\x91\x2f\x90\xd9\xca\x7a\xe4\xe9\xb2\xa0\x13\x5b\x04\x4d\x1c\xbe\xc0\x6e\xb6\x80\xfd\x59\xea\xa6\x82\x77\x0f\x0f\xf1\x70\xfe\xdd\x27\xa8\x69\xb4\xa8\xae\x51\x6f\xde\x3d\x3c\xac\xe0\x83\xff\x97\x24\xc9\xdb\xa9\xa5\xfc\x65\x2e\xf5\xf1\xd0\x20\xa3\x23\xae\xe0\x77\x2f\x2a\xff\x01\xb0\x84\xb8\x76\xfd\x0e\x0b\x73\x35\x06\x84\xe8\x1e\xb5\x6c\xc9\xf1\x01\x47\xee\x8c\xad\x00\xeb\x66\x54\xcd\xe2\xef\x00\x00\x00\xff\xff\x7e\x76\x64\xc5\xaa\x0a\x00\x00"
func torchvision_densenet_201YmlBytes() ([]byte, error) {
return bindataRead(
_torchvision_densenet_201Yml,
"TorchVision_DenseNet_201.yml",
)
}
func torchvision_densenet_201Yml() (*asset, error) {
bytes, err := torchvision_densenet_201YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "TorchVision_DenseNet_201.yml", size: 2730, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _torchvision_fcn_resnet101Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x4d\x6f\xe3\x36\x13\xbe\xfb\x57\x0c\xe0\xcb\xfb\x16\x31\xf5\xed\xc4\x02\xda\x43\x03\xb4\x7b\xca\x2e\xb6\x8b\x16\x45\x10\x08\x23\x6a\x24\xb1\x91\x48\x81\xa4\x9c\xf5\xfe\xfa\x82\xa4\x6c\x2b\xbb\x29\xba\xf5\xc1\xa2\x66\x9e\xf9\xe0\xcc\xc3\xa1\x24\x8e\x54\xc2\x27\xa5\x79\xff\xbb\x30\x42\xc9\xea\x17\x2e\xab\x8f\x64\x24\xd9\x24\x4e\x60\x0b\x0e\x01\xaa\x85\x93\x9a\x35\x8c\xaa\xa1\x61\xd3\x6a\x1c\xe9\x45\xe9\xe7\x72\x03\x00\x10\x7c\x7c\x38\x79\x2f\xb0\x85\x8b\x1a\x5a\xa5\xc1\xf6\xb4\x98\x39\xec\x91\xb4\x8b\x52\x42\xc2\xd2\x57\xd0\x45\x01\x5c\x49\x63\x35\x0a\x69\x37\x2b\x6c\x0c\xdb\x0b\x42\xc8\x56\xe9\x11\x6d\x58\x83\xa1\x11\xa5\x15\xfc\xa2\x0f\xda\x0d\x57\xd2\xa2\x90\xa4\x4b\xd8\xc2\xe5\xc5\xc0\x6c\xa8\x01\xab\x60\x22\xed\x90\x21\x37\x98\x34\x35\x82\x3b\x9f\x3e\xcd\x2d\x8c\xf3\x60\xc5\x34\x10\x4c\x03\x5a\x07\x34\xc0\x51\x42\x4d\x60\x26\xe2\xa2\x15\xd4\x78\x24\x8e\xcd\x3e\x0f\x75\x70\x3f\x3e\xcd\x25\x68\x14\x93\x56\x7f\x11\xb7\x11\x47\x3d\x0e\xbb\xe9\x64\x5d\x6d\x4a\x0f\xde\xf1\x69\xbe\xe0\xbb\xef\xc0\x77\x0b\x7e\x9a\xf8\x3e\x1f\xe8\x7b\x83\x2d\xf0\x8b\xf9\xbf\x87\x5b\x5b\x34\x64\xb8\x16\x93\xf5\x0d\xf8\xc9\x3b\xf8\xd4\x13\x88\x11\x3b\x32\xd0\xe3\x91\x5c\x11\x6b\x82\x41\x61\x43\x8d\xeb\x84\x55\x80\xa0\x51\x76\x9e\x2f\x8f\xf1\x0d\x24\x4f\x80\xb2\x71\x14\x90\x20\x5d\x5b\x06\xf1\x85\x1a\x98\x8d\x90\x1d\x8c\x84\x12\x7e\x84\xc7\x98\xe5\x77\xc5\x0d\xc4\x2c\x2f\xf6\xfe\x11\xef\x83\x99\xb1\x4d\xd0\xa7\xe9\xc1\x29\xd2\x34\x0f\x8f\xe2\x89\x6d\x34\xb5\xa4\x49\x72\x32\xae\xbf\xd7\x37\xdf\x5a\x9c\x5c\xa7\x23\x78\xa1\xda\x08\x4b\x6e\x49\x96\x33\x06\x61\x57\xb5\x0b\xff\x9a\x97\x3b\xe8\xad\x9d\x4c\x19\x45\xa8\x3f\x8b\x23\x53\xba\x8b\xa6\xa6\x8d\x92\x3c\x49\x58\x1e\x67\x77\x6c\x6a\xda\xaf\x90\x9d\xb0\xfd\x5c\x33\xae\xc6\x68\xa9\x60\x74\xf4\x67\x28\xaa\x07\x55\x47\xc7\x98\xe5\x2c\x8e\xbc\x62\x91\xfb\x78\x26\x32\xd4\x8d\x24\xad\xa7\x70\xd4\x72\xc9\xa6\xd3\x57\xae\x17\x7f\x3e\x8d\x46\x71\x13\x19\x8b\xf5\x40\x6f\x38\x63\xbd\x1d\x87\xcd\x16\x06\xc1\x49\x1a\x5f\xf9\xeb\xce\x16\x61\x09\xb3\xd4\x64\xac\x16\xdc\x52\xb3\xd9\x82\x90\xd3\x6c\x7d\xa9\xae\xd8\x20\x2b\x17\xfa\xb7\x42\x1b\x1b\x70\x60\x4f\x13\xbd\x71\x94\x77\x5e\x51\x06\x4a\x2c\x0c\xdb\xc2\x8a\x37\xe7\x5c\x56\xbe\x16\xd8\x2b\x72\x39\x48\x08\xb4\xf6\x34\xa1\x1b\x0d\x96\xb4\xef\xaf\x4f\xe1\x2a\xba\xf0\x19\x80\x06\x72\xb5\xac\x42\x2e\xed\xa0\xd0\x66\xe9\x4a\xef\x3d\x57\x03\x9e\xdc\x20\x88\x57\x8a\x01\x4f\x6a\xb6\x25\xdc\xbf\xfb\x63\x25\xe5\x6a\x50\xba\x72\x9b\x2c\xe1\xe3\xaf\x3f\xaf\x34\x8e\xae\x25\x3c\x26\x69\xc6\xf6\xb7\xc5\x0d\x24\xc9\x9e\xa5\x77\x8e\xe4\x71\xc6\x8a\x2c\x7e\x82\xed\x3f\x70\xf9\x07\x48\x8b\x62\xe5\xc9\x70\x1c\xa8\x84\xc7\xe2\x8e\x65\x87\xe2\x06\x8a\x5b\x96\xa4\xb1\x7f\x66\xb7\xc5\x93\x2f\xe3\x2b\xd6\xb3\x85\xf5\x8b\x27\x35\xdb\x69\xb6\xae\x53\x61\xd3\xe7\x09\xb8\xd0\x6a\xf3\x46\x7d\x83\xc9\x75\x56\x2e\x50\xd8\x02\xbe\xd5\xb1\x05\x7e\x29\xf8\xe6\x55\x3f\x36\xdf\xd6\x5d\x48\xbb\xcf\xbd\x7c\x44\xf3\x6c\xce\xf5\xfe\x6d\x89\xf7\xe1\x32\x5d\x43\xeb\x5a\x42\x3b\x6b\x32\xd5\xac\x87\xf2\x42\x7a\x93\x31\x1c\xf1\x8b\x92\xf8\x62\xfc\xa9\x32\x56\x69\x62\x7e\x46\xf9\x93\xb0\x1c\x1f\x4b\xd2\x28\xdd\x0e\xea\xe5\x2c\x69\x88\xa6\x01\xeb\x63\x56\x8d\xf2\x98\x56\x13\xba\x12\x57\xfe\x1a\xa9\x70\xee\xaa\x34\x4e\xee\xaa\x38\xa9\xd2\x43\x14\x74\xbb\xa3\xe2\x3b\x3e\xa0\x31\x64\x98\xfd\x6c\x5f\x67\xc5\x7b\xe2\xcf\x66\x1e\x4b\x38\x70\xca\xb3\x43\xcd\xdb\x3a\xcf\x79\x16\xe7\x94\x1f\x30\x6e\x29\x41\xca\x0e\x77\xed\xfe\xb0\xf1\x09\x38\x86\x9e\x6f\x05\xb3\x5c\x28\x9d\xc6\xa9\xf7\x63\xec\x85\x44\xd7\x5b\x03\x9a\x8c\x9a\x35\xa7\x50\x02\xaf\xaf\x26\xb4\xfd\x7f\x2f\xc0\x79\xda\xb4\x5c\x56\xfa\x7c\x55\xb3\x29\xec\x42\x98\x0a\x35\xef\xc5\x71\x75\x51\xb4\x38\x18\x82\x2d\x88\x16\x0c\xd9\x9b\x30\x90\x5d\xa3\x6b\x34\xe4\x9a\x00\xc2\x00\x82\x5b\xb8\x21\x2e\x61\xf1\x70\x71\xb0\xf5\xe8\x6b\xce\xeb\x8d\x05\x81\x77\xd9\x90\x54\x96\xdc\x7a\x65\xd9\x8a\x81\xfc\x37\x82\x39\xd3\xeb\xdb\xda\xbc\x08\xdb\x8b\x90\xd2\x3a\x74\x08\x78\x6d\x47\x41\x71\x9d\x35\x31\x16\x87\xbc\x29\xf6\x09\x16\xfb\x3d\xdd\x1e\x52\xbc\x3d\x34\x78\xc8\xf8\x61\x83\xd6\x6a\x51\xcf\x36\xdc\x0a\xf4\xd9\x6a\x04\x49\xd6\x7f\x61\x5c\x75\xde\xf7\xb3\x90\x4d\x09\xf7\x0f\x0f\xcb\xe6\xdc\xbb\x4b\x50\xd2\xac\x71\xb8\x58\xfd\xef\xfe\xe1\xe1\x06\x3e\xba\x3f\xc6\xd8\xff\xbd\xa9\x27\x96\x90\x5d\xd5\xa0\x45\x43\x6e\x88\xbc\xbf\x7f\x0f\x69\x9c\xdc\xba\x09\x18\x84\x97\x0f\x0d\x3f\x39\x17\x8b\xe5\x88\x48\xd1\x92\xb1\x15\xce\xb6\x57\xba\x84\x3f\x49\xee\xde\x19\x81\xb2\x83\xfb\x1e\x65\xb7\xf9\x3b\x00\x00\xff\xff\xf2\x79\x64\xee\x96\x09\x00\x00"
func torchvision_fcn_resnet101YmlBytes() ([]byte, error) {
return bindataRead(
_torchvision_fcn_resnet101Yml,
"TorchVision_Fcn_Resnet101.yml",
)
}
func torchvision_fcn_resnet101Yml() (*asset, error) {
bytes, err := torchvision_fcn_resnet101YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "TorchVision_Fcn_Resnet101.yml", size: 2454, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _torchvision_resnet_101Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x5b\x6f\xdb\xb8\x12\x7e\xf7\xaf\x18\xc0\x2f\xed\x81\xa3\xab\xe5\x24\x02\xce\x01\xce\xf6\x61\xbb\x2f\xc1\xa2\x28\xb6\x0f\x41\x60\x8c\xa8\x91\xc5\xad\x44\x0a\xe4\x28\xb1\xfb\xeb\x17\xbc\xd8\x56\x7a\xd9\x36\x0f\xb1\xc4\x99\xf9\x38\x9c\xef\x9b\xa1\x14\x8e\x54\xc3\x47\x6d\x44\xff\x97\xb4\x52\xab\xfd\x07\xb2\x0f\xc4\xfb\x3c\xcb\x61\x0d\xce\x0c\xba\x83\x93\x9e\x0d\x8c\xba\xa5\x61\xd5\x19\x1c\xe9\x45\x9b\xcf\xf5\x0a\x00\x20\x00\xfc\x79\xf2\x10\xb0\x86\x8b\x19\x3a\x6d\x80\x7b\x8a\x61\xce\xf7\x99\x8c\xdb\xa2\x86\x3c\x29\x5e\xb9\x46\x03\x08\xad\x2c\x1b\x94\x8a\x57\x0b\xdf\x0c\xd6\x17\x0f\xa9\x3a\x6d\x46\xe4\xf0\x0c\x96\x46\x54\x2c\xc5\xc5\x1e\xac\x2b\xa1\x15\xa3\x54\x64\x6a\x58\xc3\xe5\xc5\xc2\x6c\xa9\x05\xd6\x30\x91\x71\x9e\x21\x37\x98\x0c\xb5\x52\x38\x4c\x9f\xe6\x1a\xc6\x79\x60\x39\x0d\x04\xd3\x80\xec\x1c\x2d\x08\x54\xd0\x10\xd8\x89\x84\xec\x24\xb5\xde\x13\xc7\x76\xb7\x0d\x75\x70\x7f\x62\x9a\x6b\x30\x28\x27\xa3\xff\x26\xc1\xa9\x40\x33\x0e\x37\xd3\x89\x5d\x6d\x6a\xef\x7c\x23\xa6\xf9\xe2\x7f\xf8\x05\xff\x43\xf4\x9f\x26\xb1\xdb\x0e\xf4\xab\x9b\x45\xf7\x4b\xf8\xcf\xb7\x5b\x46\xb4\x64\x85\x91\x13\x7b\x02\xfe\xe7\x01\x3e\xf6\xd2\xc6\x72\x49\x0b\x08\x86\xa6\x41\x8a\x40\x84\xee\xae\x44\x43\x88\x6d\xa8\x75\xfc\xb8\xe5\x20\x28\x98\xe6\xe6\x1c\x90\x78\xc4\xff\x0f\xbe\xf2\x37\x9e\x70\x6a\x43\xb8\x05\x3a\x4e\x24\x18\xa4\x9a\x66\x06\x39\xe2\x81\x2c\x28\xc7\xea\x20\xbf\x5c\x41\xad\x13\xe6\x0b\x9e\x36\x20\x13\x4a\x60\x94\x4a\xde\x34\xc8\xa2\x27\xeb\xd2\x29\x6f\x44\x8f\x4a\xd1\x00\x1f\x7e\xff\xed\x8c\xa2\x3b\xb0\x3d\x4e\x04\x6f\x4a\x38\xc2\x7b\x38\xc2\xa7\xb7\x1b\x78\xe9\xc9\x10\xbc\x07\x54\x2d\x7c\x02\x34\x14\x33\x08\x42\x69\x08\x90\x61\x20\xb4\x0c\x45\xb1\x4d\xe0\x63\x4f\x67\xbc\x1e\x9f\x29\xfa\x0c\x1a\xdb\x98\x9c\x76\xc5\x41\x75\xf0\x7d\xf3\x98\x6d\x20\x7f\xf2\xd8\xdc\x93\x5a\x1e\x64\xb6\x52\x1d\x60\x24\x54\xf0\x5f\x78\xcc\x92\xed\x5d\xb5\x81\x2c\xd9\x56\x3b\xff\x93\xed\x42\x98\xe5\x36\xd8\x8b\xe2\xde\x19\x8a\x62\x1b\x7e\xaa\xa7\x95\xa1\x8e\x0c\x29\x41\xd6\xc9\xfc\xfa\xe6\x15\x8e\x93\x13\x7c\x0a\x2f\xd4\x58\xc9\xe4\x1e\x89\x45\x92\x9c\x09\x72\xbb\xbf\x6e\xcf\x1b\xe8\x99\x27\x5b\xa7\xe9\x41\x72\x3f\x37\x89\xd0\x63\x1a\xe5\x91\x3e\xfb\xe9\x90\x36\x83\x6e\xd2\x11\x2d\x93\x49\xbd\x21\xae\x07\xf2\x52\x43\x56\x11\x27\xd3\xe9\x2b\xc0\x88\x92\x68\x73\x48\x5b\x2d\x6c\x6a\x19\x9b\x81\x5e\x41\x48\xd5\xd2\x31\xe9\x79\xfc\x3a\x1b\x34\x47\xf9\xec\x43\xa7\xb6\x4b\xf3\x2a\x2f\x92\xac\x2c\xef\xaa\x64\x6a\xbb\xd5\x1a\x06\x29\x48\x59\x7a\xa5\xc2\x55\x5c\xac\x61\x56\x86\x2c\x1b\xe9\x08\x5d\xad\x83\xac\x7c\x81\xae\xbe\x61\xad\x8e\xbd\xdf\x49\x63\xcf\xf2\xe3\xd3\x44\xdf\x99\x63\x37\xde\x50\x07\x1d\xc4\xf6\x5a\xc3\xa2\x69\xce\xb9\x2c\xb0\xa2\xdb\xab\xce\x72\x2e\x0b\x9d\x47\x97\x09\xdd\x5c\x64\x32\x9e\x55\x9f\xc2\x75\xe9\xd2\xcc\x00\x34\xd0\x48\x8a\xf7\x21\x97\x6e\xd0\xc8\x65\xb1\xb0\x7b\xe4\xfd\x80\x27\x37\x05\xb3\x85\x61\xc0\x93\x9e\xb9\x86\x77\xef\x3f\x2d\x56\x85\x1e\xb4\xd9\xbb\x43\xd6\xae\x69\x16\x96\x56\x8e\xa4\x1c\x45\xb6\x86\xc7\x72\x03\x5e\x82\x45\xb1\x7d\x5a\xf8\x38\x1d\xd7\xf0\x98\x17\x65\xb2\xbb\xad\x36\x90\xe7\xbb\xa4\xb8\x73\xea\xcf\xca\xa4\x2a\xb3\x27\x58\xff\x40\xe4\xff\x81\xa2\xaa\x16\x48\x56\xe0\x40\x35\x3c\x56\x77\x49\x79\x5f\x6d\xa0\xba\x4d\xf2\x22\xf3\xbf\xe5\x6d\xf5\xe4\x4b\xfd\xaa\x1d\x92\xd8\x0e\x11\x49\xcf\x3c\xcd\x7c\x66\xd3\x95\xd8\x97\x30\x32\x12\xac\xde\x18\xea\x26\x06\xb4\x56\x76\x71\x32\xc5\x28\xfc\x1e\x99\x21\xf4\xca\xc5\xea\xbb\x7c\x46\xaf\x01\x9b\x28\x96\x05\x9d\x97\x53\xfe\x98\xd6\x7f\x27\x75\x32\xba\xc1\x46\x0e\x92\x25\xd9\x6f\xa9\xed\x08\x79\x36\x64\xf7\xb3\x19\x6a\xdf\x3e\x75\x9a\xda\x32\xc1\x11\xbf\x68\x85\x2f\xd6\x77\xb4\x65\x6d\x28\xf1\xc3\xdf\x37\x95\x3d\x29\x4b\x6c\x53\xaf\x41\x45\x1c\x17\x12\x3e\xf2\xb7\xc8\xa2\x27\xf1\xd9\xce\x63\x0d\xdb\xb6\x28\xb7\x4d\x75\x57\x96\x28\x70\xbb\xbd\x2f\xee\xb2\x5d\x85\xf9\x5d\xd6\x36\x65\x96\xef\x70\xe5\xfb\xc5\x49\xf8\x7c\x67\x9e\xef\x8f\x83\xc1\xa9\xf7\xc3\xed\x85\xe4\xa1\x67\x0b\x86\xac\x9e\x8d\xa0\x50\x07\x6f\xdf\x4f\xc8\x7d\x7d\x99\x01\x3f\x3d\x45\x1c\x40\xe7\x71\x15\x06\x51\x9e\xe5\xc9\x14\x4e\x21\xed\x1e\x8d\xe8\xe5\xf3\xe2\x0a\xed\x70\xb0\x04\x6b\x90\x1d\x58\xe2\x4d\x18\xd1\x8e\xc4\x06\x2d\xb9\x22\x86\xab\xce\x3d\xb8\xb1\xae\x20\x22\x2c\x79\xec\x69\x91\xef\xf2\x50\x61\xc1\x43\xb6\xa4\x34\x93\x7b\x5e\x44\x76\x72\x20\xff\xf5\x64\xcf\x02\xfb\xb6\x2e\x2f\x92\xfb\x78\xe1\x2d\xb7\x0e\x1b\x5e\xa9\x10\xdb\x66\x57\x6d\xf3\xa6\x11\x84\x65\x71\x2f\x44\x7b\xdb\xb5\x55\xd3\x34\xb7\xc5\x6d\x59\xb6\xdd\x0a\x99\x8d\x6c\x66\x0e\x17\x05\x1d\xd9\x20\x28\x62\xff\xed\x75\xb5\x79\xec\xcf\x52\xb5\x35\xbc\x7b\x78\x88\x87\x73\xef\x2e\x41\x45\xb3\xc1\xe1\x12\xf5\xe6\xdd\xc3\xc3\x06\x3e\xb8\x7f\x49\x92\xbc\x0d\x0d\xe5\x2e\x72\xa9\x0e\xfb\x16\x19\x2d\x71\x0d\x7f\x38\x49\xb9\xcb\x7f\x0d\x71\xed\xf2\x05\xe6\xa7\x6a\x0c\xf0\xd1\x23\x2a\xd9\x91\xe5\x3d\xce\xdc\x6b\x53\x03\x36\xed\x3c\xb4\xab\x7f\x02\x00\x00\xff\xff\x39\xdb\xb6\x69\xa2\x0a\x00\x00"
func torchvision_resnet_101YmlBytes() ([]byte, error) {
return bindataRead(
_torchvision_resnet_101Yml,
"TorchVision_ResNet_101.yml",
)
}
func torchvision_resnet_101Yml() (*asset, error) {
bytes, err := torchvision_resnet_101YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "TorchVision_ResNet_101.yml", size: 2722, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _torchvision_resnet_152Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x5d\x6f\xdb\xb8\x12\x7d\xf7\xaf\x18\xc0\x2f\xed\x85\x23\xd9\x92\xe5\x38\x02\xee\x05\xee\xf6\x61\xbb\x2f\xc1\xa2\x28\xb6\x0f\x41\x60\x8c\xa8\x91\xc5\xad\x44\x12\xe4\x28\x89\xfb\xeb\x17\xfc\xb0\xad\xf4\x63\xdb\x3c\xc4\x12\x67\xe6\x70\x38\xe7\xcc\x50\x0a\x47\xaa\xe1\xa3\xb6\xa2\xff\x4b\x3a\xa9\xd5\xe1\x03\xb9\x7b\xe2\xc3\xa6\x2a\x60\x09\xde\x0c\xba\x83\x93\x9e\x2c\x8c\xba\xa5\x61\xd1\x59\x1c\xe9\x59\xdb\xcf\xf5\x02\x00\x20\x02\xfc\x79\x0a\x10\xb0\x84\x8b\x19\x3a\x6d\x81\x7b\x4a\x61\xde\xf7\x89\xac\xdf\xa2\x86\x4d\x56\xbc\x72\x4d\x06\x10\x5a\x39\xb6\x28\x15\x2f\x66\xbe\x6b\x58\x5e\x3c\xa4\xea\xb4\x1d\x91\xe3\x33\x38\x1a\x51\xb1\x14\x17\x7b\xb4\x2e\x84\x56\x8c\x52\x91\xad\x61\x09\x97\x17\x07\x93\xa3\x16\x58\x83\x21\xeb\x3d\x63\x6e\x60\x2c\xb5\x52\x78\xcc\x90\xe6\x12\xc6\x69\x60\x69\x06\x02\x33\x20\x7b\x47\x07\x02\x15\x34\x04\xce\x90\x90\x9d\xa4\x36\x78\xe2\xd8\xee\xb6\xb1\x0e\xfe\x4f\x98\xa9\x06\x8b\xd2\x58\xfd\x37\x09\xce\x05\xda\x71\xb8\x31\x27\xf6\xb5\xa9\x83\xf3\x8d\x30\xd3\xc5\xff\xf8\x0b\xfe\xc7\xe4\x6f\x8c\xd8\x6d\x07\xfa\xd5\xcd\x92\xfb\x25\xfc\xe7\xdb\xcd\x23\x5a\x72\xc2\x4a\xc3\x81\x80\xff\x05\x80\x8f\xbd\x74\xa9\x5c\xd2\x01\x82\x25\x33\x48\x11\x89\xd0\xdd\x95\x68\x88\xb1\x0d\xb5\x9e\x1f\xbf\x1c\x05\x05\x66\x6a\xce\x01\x59\x40\xfc\xff\x10\x2a\x7f\x13\x08\xa7\x36\x86\x3b\xa0\x17\x43\x82\x41\x2a\x33\x31\xc8\x11\x8f\xe4\x40\x79\x56\x07\xf9\xe5\x0a\xea\xbc\x30\x9f\xf1\xb4\x02\x99\x51\x06\xa3\x54\xf2\xa6\x41\x16\x3d\x39\x9f\x4e\x79\x23\x7a\x54\x8a\x06\xf8\xf0\xfb\x6f\x67\x14\xdd\x81\xeb\xd1\x10\xbc\x29\xe1\x05\xde\xc3\x0b\x7c\x7a\xbb\x82\xe7\x9e\x2c\xc1\x7b\x40\xd5\xc2\x27\x40\x4b\x29\x83\x28\x94\x86\x00\x19\x06\x42\xc7\x50\x14\xdb\x0c\x3e\xf6\x74\xc6\xeb\xf1\x89\x92\xcf\xa0\xb1\x4d\xc9\x69\x5f\x1c\x54\xc7\xd0\x37\x0f\xeb\x15\x6c\x1e\x03\x36\xf7\xa4\xe6\x07\x99\x9c\x54\x47\x18\x09\x15\xfc\x17\x1e\xd6\xd9\x76\x5f\xad\x60\x9d\x6d\xab\x5d\xf8\x59\xef\x62\x98\xe3\x36\xda\x8b\xe2\xce\x1b\x8a\x62\x1b\x7f\xaa\xc7\x85\xa5\x8e\x2c\x29\x41\xce\xcb\xfc\xfa\x16\x14\x8e\xc6\x0b\x3e\x87\x67\x6a\x9c\x64\xf2\x8f\xc4\x22\xcb\xce\x04\xf9\xdd\x5f\xb7\xe7\x0d\xf4\xcc\xc6\xd5\x79\x7e\x94\xdc\x4f\x4d\x26\xf4\x98\x27\x79\xe4\x4f\x61\x3a\xe4\xcd\xa0\x9b\x7c\x44\xc7\x64\xf3\x60\x48\xeb\x91\xbc\xdc\x92\x53\xc4\x99\x39\x7d\x05\x98\x50\x32\x6d\x8f\x79\xab\x85\xcb\x1d\x63\x33\xd0\x2b\x08\xa9\x5a\x7a\xc9\x7a\x1e\xbf\xce\x06\xed\x8b\x7c\x0a\xa1\xa6\xed\xf2\x4d\xb5\x29\xb2\x75\x59\xee\xab\xcc\xb4\xdd\x62\x09\x83\x14\xa4\x1c\xbd\x52\xe1\x22\x2d\xd6\x30\x29\x4b\x8e\xad\xf4\x84\x2e\x96\x51\x56\xa1\x40\x57\xdf\xb8\x56\xa7\xde\xef\xa4\x75\x67\xf9\xf1\xc9\xd0\x77\xe6\xd8\x4d\x30\xd4\x51\x07\xa9\xbd\x96\x30\x6b\x9a\x73\x2e\x33\xac\xe4\xf6\xaa\xb3\xbc\xcb\x4c\xe7\xc9\xc5\xa0\x9f\x8b\x4c\x36\xb0\x1a\x52\xb8\x2e\x5d\x9a\x19\x80\x06\x1a\x49\xf1\x21\xe6\xd2\x0d\x1a\xb9\x2c\x66\xf6\x80\x7c\x18\xf0\xe4\xa7\xe0\x7a\x66\x18\xf0\xa4\x27\xae\xe1\xdd\xfb\x4f\xb3\x55\xa1\x07\x6d\x0f\xfe\x90\xb5\x6f\x9a\x99\xa5\x95\x23\x29\x4f\x91\xab\xe1\xa1\x5c\x41\x90\x60\x51\x6c\x1f\x67\x3e\x5e\xc7\x35\x3c\x6c\x8a\x32\xdb\xdd\x56\x2b\xd8\x6c\x76\x59\xb1\xf7\xea\x5f\x97\x59\x55\xae\x1f\x61\xf9\x03\x91\xff\x07\x8a\xaa\x9a\x21\x39\x81\x03\xd5\xf0\x50\xed\xb3\xf2\xae\x5a\x41\x75\x9b\x6d\x8a\x75\xf8\x2d\x6f\xab\xc7\x50\xea\x57\xed\x90\xa5\x76\x48\x48\x7a\x62\x33\xf1\x99\x4d\x5f\xe2\x50\xc2\xc4\x48\xb4\x06\x63\xac\x9b\x18\xd0\x39\xd9\xa5\xc9\x94\xa2\xf0\x7b\x64\xc6\xd0\x2b\x17\x8b\xef\xf2\x99\xbc\x06\x6c\x92\x58\x66\x74\x5e\x4e\xf9\x63\x5a\xff\x9d\x54\x63\x75\x83\x8d\x1c\x24\x4b\x72\xdf\x52\xdb\x11\xf2\x64\xc9\x1d\x26\x3b\xd4\xa1\x7d\xea\x3c\x77\x65\x86\x23\x7e\xd1\x0a\x9f\x5d\xe8\x68\xc7\xda\x52\x16\x86\x7f\x68\x2a\x77\x52\x8e\xd8\xe5\x41\x83\x8a\x38\x2d\x64\xfc\xc2\xdf\x22\x8b\x9e\xc4\x67\x37\x8d\x35\x6c\xdb\xa2\xdc\x36\xd5\xbe\x2c\x51\xe0\x76\x7b\x57\xec\xd7\xbb\x0a\x37\xfb\x75\xdb\x94\xeb\xcd\x0e\x17\xa1\x5f\xbc\x84\xcf\x77\xe6\xf9\xfe\x38\x5a\x34\x7d\x18\x6e\xcf\x24\x8f\x3d\x3b\xb0\xe4\xf4\x64\x05\xc5\x3a\x04\xfb\xc1\x20\xf7\xf5\x65\x06\xfc\xf4\x14\x69\x00\x9d\xc7\x55\x1c\x44\x9b\xaa\xc8\x4c\x3c\x85\x74\x07\xb4\xa2\x97\x4f\xb3\x2b\xb4\xc3\xc1\x11\x2c\x41\x76\xe0\x88\x57\x71\x44\x7b\x12\x1b\x74\xe4\x8b\x18\xaf\x3a\xff\xe0\xc7\xba\x82\x84\x30\xe7\xb1\xa7\x59\xbe\xf3\x43\xc5\x85\x00\xd9\x92\xd2\x4c\xfe\x79\x16\xd9\xc9\x81\xc2\xd7\x93\x3b\x0b\xec\xdb\xba\x3c\x4b\xee\xd3\x85\x37\xdf\x3a\x6e\x78\xa5\xa2\x68\xe9\xae\x11\x9b\x6d\xb5\x11\x77\xbb\x06\xab\xdd\x0e\x8b\xdb\x4a\xdc\xad\xf7\x85\x28\x6f\xdb\xfd\x02\x99\xad\x6c\x26\x8e\x17\x05\xbd\xb0\x45\x50\xc4\xe1\xdb\xeb\x6a\x0b\xd8\x9f\xa5\x6a\x6b\x78\x77\x7f\x9f\x0e\xe7\xdf\x7d\x82\x8a\x26\x8b\xc3\x25\xea\xcd\xbb\xfb\xfb\x15\x7c\xf0\xff\xb2\x2c\x7b\x1b\x1b\xca\x5f\xe4\x52\x1d\x0f\x2d\x32\x3a\xe2\x1a\xfe\xf0\x92\xf2\x97\xff\x12\xd2\xda\xe5\x0b\x2c\x4c\xd5\x14\x10\xa2\x47\x54\xb2\x23\xc7\x07\x9c\xb8\xd7\xb6\x06\x6c\xda\x69\x68\x17\xff\x04\x00\x00\xff\xff\xbf\xe3\xc5\x45\xa2\x0a\x00\x00"
func torchvision_resnet_152YmlBytes() ([]byte, error) {
return bindataRead(
_torchvision_resnet_152Yml,
"TorchVision_ResNet_152.yml",
)
}
func torchvision_resnet_152Yml() (*asset, error) {
bytes, err := torchvision_resnet_152YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "TorchVision_ResNet_152.yml", size: 2722, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _torchvision_resnet_18Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x5d\x6f\xdb\xb8\x12\x7d\xf7\xaf\x18\xc0\x2f\xed\x85\x23\xd9\x92\xe5\x38\x02\xee\x05\xee\xf6\x61\xbb\x2f\xc1\xa2\x28\xb6\x0f\x41\x60\x8c\xa8\x91\xc5\xad\x44\x12\xe4\x28\x89\xfb\xeb\x17\xfc\xb0\xad\xf4\x63\xdb\x3c\xc4\x12\x67\xe6\x70\x38\xe7\xcc\x50\x0a\x47\xaa\xe1\xa3\xb6\xa2\xff\x4b\x3a\xa9\xd5\xe1\x03\xb9\x7b\xe2\xc3\x66\x0f\x4b\xf0\x56\xd0\x1d\x9c\xf4\x64\x61\xd4\x2d\x0d\x8b\xce\xe2\x48\xcf\xda\x7e\xae\x17\x00\x00\x31\xfe\xcf\x53\x40\x80\x25\x5c\xcc\xd0\x69\x0b\xdc\x53\x0a\xf3\xbe\x4f\x64\xfd\x0e\x35\x6c\xb2\xe2\x95\x6b\x32\x80\xd0\xca\xb1\x45\xa9\x78\x31\xf3\x5d\xc3\xf2\xe2\x21\x55\xa7\xed\x88\x1c\x9f\xc1\xd1\x88\x8a\xa5\xb8\xd8\xa3\x75\x21\xb4\x62\x94\x8a\x6c\x0d\x4b\xb8\xbc\x38\x98\x1c\xb5\xc0\x1a\x0c\x59\xef\x19\x73\x03\x63\xa9\x95\xc2\x63\x86\x34\x97\x30\x4e\x03\x4b\x33\x10\x98\x01\xd9\x3b\x3a\x10\xa8\xa0\x21\x70\x86\x84\xec\x24\xb5\xc1\x13\xc7\x76\xb7\x8d\x75\xf0\x7f\xc2\x4c\x35\x58\x94\xc6\xea\xbf\x49\x70\x2e\xd0\x8e\xc3\x8d\x39\xb1\xaf\x4d\x1d\x9c\x6f\x84\x99\x2e\xfe\xc7\x5f\xf0\x3f\x26\x7f\x63\xc4\x6e\x3b\xd0\xaf\x6e\x96\xdc\x2f\xe1\x3f\xdf\x6e\x1e\xd1\x92\x13\x56\x1a\x0e\x04\xfc\x2f\x00\x7c\xec\xa5\x4b\xe5\x92\x0e\x10\x2c\x99\x41\x8a\x48\x84\xee\xae\x44\x43\x8c\x6d\xa8\xf5\xfc\xf8\xe5\xa8\x27\x30\x53\x73\x0e\xc8\x02\xe2\xff\x87\x50\xf9\x9b\x40\x38\xb5\x31\xdc\x01\xbd\x18\x12\x0c\x52\x99\x89\x41\x8e\x78\x24\x07\xca\xb3\x3a\xc8\x2f\x57\x50\xe7\x85\xf9\x8c\xa7\x15\xc8\x8c\x32\x18\xa5\x92\x37\x0d\xb2\xe8\xc9\xf9\x74\xca\x1b\xd1\xa3\x52\x34\xc0\x87\xdf\x7f\x3b\xa3\xe8\x0e\x5c\x8f\x86\xe0\x4d\x09\x2f\xf0\x1e\x5e\xe0\xd3\xdb\x15\x3c\xf7\x64\x09\xde\x03\xaa\x16\x3e\x01\x5a\x4a\x19\x44\xa1\x34\x04\xc8\x30\x10\x3a\x86\xa2\xd8\x66\xf0\xb1\xa7\x33\x5e\x8f\x4f\x94\x7c\x06\x8d\x6d\x4a\x4e\xfb\xe2\xa0\x3a\x86\xbe\x79\x58\xaf\x60\xf3\x18\xb0\xb9\x27\x35\x3f\xc8\xe4\xa4\x3a\xc2\x48\xa8\xe0\xbf\xf0\xb0\xce\xb6\xfb\x6a\x05\xeb\x6c\x5b\xed\xc2\xcf\x7a\x17\xc3\x1c\xb7\xd1\x5e\x14\x77\xde\x50\x14\xdb\xf8\x53\x3d\x2e\x2c\x75\x64\x49\x09\x72\x5e\xe6\xd7\xb7\xa0\x70\x34\x5e\xf0\x39\x3c\x53\xe3\x24\x93\x7f\x24\x16\x59\x76\x26\xc8\xef\xfe\xba\x3d\x6f\xa0\x67\x36\xae\xce\xf3\xa3\xe4\x7e\x6a\x32\xa1\xc7\x3c\xc9\x23\x7f\x0a\xc3\x21\x6f\x06\xdd\xe4\x23\x3a\x26\x9b\x07\x43\x5a\x8f\xe4\xe5\x96\x9c\x22\xce\xcc\xe9\x2b\xc0\x84\x92\x69\x7b\xcc\x5b\x2d\x5c\xee\x18\x9b\x81\x5e\x41\x48\xd5\xd2\x4b\xd6\xf3\xf8\x75\x36\x68\x5f\xe4\x53\x08\x35\x6d\x97\x6f\xaa\x4d\x91\xad\xcb\x72\x5f\x65\xa6\xed\x16\x4b\x18\xa4\x20\xe5\xe8\x95\x0a\x17\x69\xb1\x86\x49\x59\x72\x6c\xa5\x27\x74\xb1\x8c\xb2\x0a\x05\xba\xfa\xc6\xb5\x3a\xf5\x7e\x27\xad\x3b\xcb\x8f\x4f\x86\xbe\x33\xc7\x6e\x82\xa1\x8e\x3a\x48\xed\xb5\x84\x59\xd3\x9c\x73\x99\x61\x25\xb7\x57\x9d\xe5\x5d\x66\x3a\x4f\x2e\x06\xfd\x5c\x64\xb2\x81\xd5\x90\xc2\x75\xe9\xd2\xcc\x00\x34\xd0\x48\x8a\x0f\x31\x97\x6e\xd0\xc8\x65\x31\xb3\x07\xe4\xc3\x80\x27\x3f\x05\xd7\x33\xc3\x80\x27\x3d\x71\x0d\xef\xde\x7f\x9a\xad\x0a\x3d\x68\x7b\xf0\x87\xac\x7d\xd3\xcc\x2c\xad\x1c\x49\x79\x8a\x5c\x0d\x0f\xe5\x0a\x82\x04\x8b\x62\xfb\x38\xf3\xf1\x3a\xae\xe1\x61\x53\x94\xd9\xee\xb6\x5a\xc1\x66\xb3\xcb\x8a\xbd\x57\xff\xba\xcc\xaa\x72\xfd\x08\xcb\x1f\x88\xfc\x3f\x50\x54\xd5\x0c\xc9\x09\x1c\xa8\x86\x87\x6a\x9f\x95\x77\xd5\x0a\xaa\xdb\x6c\x53\xac\xc3\x6f\x79\x5b\x3d\x86\x52\xbf\x6a\x87\x2c\xb5\x43\x42\xd2\x13\x9b\x89\xcf\x6c\xfa\x12\x87\x12\x26\x46\xa2\x35\x18\x63\xdd\xc4\x80\xce\xc9\x2e\x4d\xa6\x14\x85\xdf\x23\x33\x86\x5e\xb9\x58\x7c\x97\xcf\xe4\x35\x60\x93\xc4\x32\xa3\xf3\x72\xca\x1f\xd3\xfa\xef\xa4\x1a\xab\x1b\x6c\xe4\x20\x59\x92\xfb\x96\xda\x8e\x90\x27\x4b\xee\x30\xd9\xa1\x0e\xed\x53\xe7\xb9\x2b\x33\x1c\xf1\x8b\x56\xf8\xec\x42\x47\x3b\xd6\x96\xb2\x30\xfc\x43\x53\xb9\x93\x72\xc4\x2e\x0f\x1a\x54\xc4\x69\x21\xe3\x17\xfe\x16\x59\xf4\x24\x3e\xbb\x69\xac\x61\xdb\x16\xe5\xb6\xa9\xf6\x65\x89\x02\xb7\xdb\xbb\x62\xbf\xde\x55\xb8\xd9\xaf\xdb\xa6\x5c\x6f\x76\xb8\x08\xfd\xe2\x25\x7c\xbe\x33\xcf\xf7\xc7\xd1\xa2\xe9\xc3\x70\x7b\x26\x79\xec\xd9\x81\x25\xa7\x27\x2b\x28\xd6\x21\xd8\x0f\x06\xb9\xaf\x2f\x33\xe0\xa7\xa7\x48\x03\xe8\x3c\xae\xe2\x20\xda\xec\x33\x13\x0f\x21\xdd\x01\xad\xe8\xe5\xd3\xec\x06\xed\x70\x70\x04\x4b\x90\x1d\x38\xe2\x55\x9c\xd0\x9e\xc3\x06\x1d\xf9\x1a\xc6\x9b\xce\x3f\xf8\xa9\xae\x20\x21\xcc\x69\xec\x69\x96\xee\xfc\x4c\x71\x21\x40\xb6\xa4\x34\x93\x7f\x9e\x45\x76\x72\xa0\xf0\xf1\xe4\xce\xfa\xfa\xb6\x2c\xcf\x92\xfb\x74\xdf\xcd\xb7\x8e\x1b\x5e\x99\xd8\xec\x76\xdb\xa6\xda\x88\xf6\x96\x76\xd5\x5d\xd5\x56\xdb\x8a\xee\x44\x87\x6d\xb9\xbf\xdb\xdf\xb6\xb8\x40\x66\x2b\x9b\x89\xe3\x3d\x41\x2f\x6c\x11\x14\x71\xf8\xf4\xba\xda\x02\xf6\x67\xa9\xda\x1a\xde\xdd\xdf\xa7\xc3\xf9\x77\x9f\xa0\xa2\xc9\xe2\x70\x89\x7a\xf3\xee\xfe\x7e\x05\x1f\xfc\xbf\x2c\xcb\xde\xc6\x7e\xf2\xf7\xb8\x54\xc7\x43\x8b\x8c\x8e\xb8\x86\x3f\xbc\xa2\xfc\xdd\xbf\x84\xb4\x76\xf9\x00\x0b\x43\x35\x05\x84\xe8\x11\x95\xec\xc8\xf1\x01\x27\xee\xb5\xad\x01\x9b\x76\x1a\xda\xc5\x3f\x01\x00\x00\xff\xff\x96\xc0\x15\x31\xa0\x0a\x00\x00"
func torchvision_resnet_18YmlBytes() ([]byte, error) {
return bindataRead(
_torchvision_resnet_18Yml,
"TorchVision_ResNet_18.yml",
)
}
func torchvision_resnet_18Yml() (*asset, error) {
bytes, err := torchvision_resnet_18YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "TorchVision_ResNet_18.yml", size: 2720, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _torchvision_resnet_34Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x5b\x6f\xdb\xb8\x12\x7e\xf7\xaf\x18\xc0\x2f\xed\x81\x23\xc9\xba\x38\x8e\x80\x73\x80\xb3\x7d\xd8\xee\x4b\xb0\x28\x8a\xed\x43\x10\x18\x23\x6a\x64\x71\x2b\x91\x02\x39\x4a\xe2\xfe\xfa\x05\x2f\xb6\x95\x5e\xb6\xcd\x43\x2c\x71\x66\x3e\x0e\xe7\xfb\x66\x28\x85\x23\xd5\xf0\x51\x1b\xd1\xff\x25\xad\xd4\xea\xf0\x81\xec\x3d\xf1\xa1\x28\x61\x0d\xce\x0a\xba\x83\x93\x9e\x0d\x8c\xba\xa5\x61\xd5\x19\x1c\xe9\x59\x9b\xcf\xf5\x0a\x00\x20\xc4\xff\x79\xf2\x08\xb0\x86\x8b\x19\x3a\x6d\x80\x7b\x8a\x61\xce\xf7\x89\x8c\xdb\xa1\x86\x6d\x92\xbf\x72\x8d\x06\x10\x5a\x59\x36\x28\x15\xaf\x16\xbe\x19\xac\x2f\x1e\x52\x75\xda\x8c\xc8\xe1\x19\x2c\x8d\xa8\x58\x8a\x8b\x3d\x58\x57\x42\x2b\x46\xa9\xc8\xd4\xb0\x86\xcb\x8b\x85\xd9\x52\x0b\xac\x61\x22\xe3\x3c\x43\x6e\x30\x19\x6a\xa5\x70\x98\x3e\xcd\x35\x8c\xf3\xc0\x72\x1a\x08\xa6\x01\xd9\x39\x5a\x10\xa8\xa0\x21\xb0\x13\x09\xd9\x49\x6a\xbd\x27\x8e\xed\xae\x0c\x75\x70\x7f\x62\x9a\x6b\x30\x28\x27\xa3\xff\x26\xc1\xa9\x40\x33\x0e\x37\xd3\x89\x5d\x6d\x6a\xef\x7c\x23\xa6\xf9\xe2\x7f\xfc\x05\xff\x63\xf4\x9f\x26\xb1\x2b\x07\xfa\xd5\xcd\xa2\xfb\x25\xfc\xe7\xdb\x2d\x23\x5a\xb2\xc2\xc8\x89\x3d\x01\xff\xf3\x00\x1f\x7b\x69\x63\xb9\xa4\x05\x04\x43\xd3\x20\x45\x20\x42\x77\x57\xa2\x21\xc4\x36\xd4\x3a\x7e\xdc\x72\xd0\x13\x4c\x73\x73\x0e\x48\x3c\xe2\xff\x07\x5f\xf9\x1b\x4f\x38\xb5\x21\xdc\x02\xbd\x4c\x24\x18\xa4\x9a\x66\x06\x39\xe2\x91\x2c\x28\xc7\xea\x20\xbf\x5c\x41\xad\x13\xe6\x33\x9e\x36\x20\x13\x4a\x60\x94\x4a\xde\x34\xc8\xa2\x27\xeb\xd2\x29\x6e\x44\x8f\x4a\xd1\x00\x1f\x7e\xff\xed\x8c\xa2\x3b\xb0\x3d\x4e\x04\x6f\x0a\x78\x81\xf7\xf0\x02\x9f\xde\x6e\xe0\xb9\x27\x43\xf0\x1e\x50\xb5\xf0\x09\xd0\x50\xcc\x20\x08\xa5\x21\x40\x86\x81\xd0\x32\xe4\x79\x99\xc0\xc7\x9e\xce\x78\x3d\x3e\x51\xf4\x19\x34\xb6\x31\x39\xed\x8a\x83\xea\xe8\xfb\xe6\x21\xdb\xc0\xf6\xd1\x63\x73\x4f\x6a\x79\x90\xd9\x4a\x75\x84\x91\x50\xc1\x7f\xe1\x21\x4b\xca\x7d\xb5\x81\x2c\x29\xab\x9d\xff\xc9\x76\x21\xcc\x72\x1b\xec\x79\x7e\xe7\x0c\x79\x5e\x86\x9f\xea\x71\x65\xa8\x23\x43\x4a\x90\x75\x32\xbf\xbe\x79\x85\xe3\xe4\x04\x9f\xc2\x33\x35\x56\x32\xb9\x47\x62\x91\x24\x67\x82\xdc\xee\xaf\xdb\xf3\x06\x7a\xe6\xc9\xd6\x69\x7a\x94\xdc\xcf\x4d\x22\xf4\x98\x46\x79\xa4\x4f\x7e\x38\xa4\xcd\xa0\x9b\x74\x44\xcb\x64\x52\x6f\x88\xeb\x81\xbc\xd4\x90\x55\xc4\xc9\x74\xfa\x0a\x30\xa2\x24\xda\x1c\xd3\x56\x0b\x9b\x5a\xc6\x66\xa0\x57\x10\x52\xb5\xf4\x92\xf4\x3c\x7e\x9d\x0d\x9a\x17\xf9\xe4\x43\xa7\xb6\x4b\xb7\xd5\x36\x4f\xb2\xa2\xd8\x57\xc9\xd4\x76\xab\x35\x0c\x52\x90\xb2\xf4\x4a\x85\xab\xb8\x58\xc3\xac\x0c\x59\x36\xd2\x11\xba\x5a\x07\x59\xf9\x02\x5d\x7d\xc3\x5a\x1d\x7b\xbf\x93\xc6\x9e\xe5\xc7\xa7\x89\xbe\x33\xc7\x6e\xbc\xa1\x0e\x3a\x88\xed\xb5\x86\x45\xd3\x9c\x73\x59\x60\x45\xb7\x57\x9d\xe5\x5c\x16\x3a\x8f\x2e\x13\xba\xb9\xc8\x64\x3c\xab\x3e\x85\xeb\xd2\xa5\x99\x01\x68\xa0\x91\x14\x1f\x42\x2e\xdd\xa0\x91\x8b\x7c\x61\xf7\xc8\x87\x01\x4f\x6e\x0a\x66\x0b\xc3\x80\x27\x3d\x73\x0d\xef\xde\x7f\x5a\xac\x0a\x3d\x68\x73\x70\x87\xac\x5d\xd3\x2c\x2c\xad\x1c\x49\x39\x8a\x6c\x0d\x0f\xc5\x06\xbc\x04\xf3\xbc\x7c\x5c\xf8\x38\x1d\xd7\xf0\xb0\xcd\x8b\x64\x77\x5b\x6d\x60\xbb\xdd\x25\xf9\xde\xa9\x3f\x2b\x92\xaa\xc8\x1e\x61\xfd\x03\x91\xff\x07\xf2\xaa\x5a\x20\x59\x81\x03\xd5\xf0\x50\xed\x93\xe2\xae\xda\x40\x75\x9b\x6c\xf3\xcc\xff\x16\xb7\xd5\xa3\x2f\xf5\xab\x76\x48\x62\x3b\x44\x24\x3d\xf3\x34\xf3\x99\x4d\x57\x62\x5f\xc2\xc8\x48\xb0\x7a\x63\xa8\x9b\x18\xd0\x5a\xd9\xc5\xc9\x14\xa3\xf0\x7b\x64\x86\xd0\x2b\x17\xab\xef\xf2\x19\xbd\x06\x6c\xa2\x58\x16\x74\x5e\x4e\xf9\x63\x5a\xff\x9d\xd4\xc9\xe8\x06\x1b\x39\x48\x96\x64\xbf\xa5\xb6\x23\xe4\xd9\x90\x3d\xcc\x66\xa8\x7d\xfb\xd4\x69\x6a\x8b\x04\x47\xfc\xa2\x15\x3e\x5b\xdf\xd1\x96\xb5\xa1\xc4\x0f\x7f\xdf\x54\xf6\xa4\x2c\xb1\x4d\xbd\x06\x15\x71\x5c\x48\xf8\x85\xbf\x45\x16\x3d\x89\xcf\x76\x1e\x6b\x28\xdb\xbc\x28\x9b\x6a\x5f\x14\x28\xb0\x2c\xef\xf2\x7d\xb6\xab\x70\xbb\xcf\xda\xa6\xc8\xb6\x3b\x5c\xf9\x7e\x71\x12\x3e\xdf\x99\xe7\xfb\xe3\x68\x70\xea\xfd\x70\x7b\x26\x79\xec\xd9\x82\x21\xab\x67\x23\x28\xd4\xc1\xdb\x0f\x13\x72\x5f\x5f\x66\xc0\x4f\x4f\x11\x07\xd0\x79\x5c\x85\x41\x54\x94\xc9\x14\x0e\x21\xed\x01\x8d\xe8\xe5\xd3\xe2\x06\xed\x70\xb0\x04\x6b\x90\x1d\x58\xe2\x4d\x98\xd0\x8e\xc3\x06\x2d\xb9\x1a\x86\x9b\xce\x3d\xb8\xa9\xae\x20\x22\x2c\x69\xec\x69\x91\xee\xf2\x4c\x61\xc1\x43\xb6\xa4\x34\x93\x7b\x5e\x44\x76\x72\x20\xff\xf1\x64\xcf\xfa\xfa\xb6\x2c\xcf\x92\xfb\x78\xdf\x2d\xb7\x0e\x1b\x5e\x99\xc8\xee\xee\x6e\x77\x45\x89\x65\xbb\x2d\x44\x81\xfb\xec\x2e\xab\x6e\xe9\xf6\x4e\x54\xbb\xa2\x15\x15\xad\x90\xd9\xc8\x66\xe6\x70\x4f\xd0\x0b\x1b\x04\x45\xec\x3f\xbd\xae\x36\x8f\xfd\x59\xaa\xb6\x86\x77\xf7\xf7\xf1\x70\xee\xdd\x25\xa8\x68\x36\x38\x5c\xa2\xde\xbc\xbb\xbf\xdf\xc0\x07\xf7\x2f\x49\x92\xb7\xa1\x9f\xdc\x3d\x2e\xd5\xf1\xd0\x22\xa3\x25\xae\xe1\x0f\xa7\x28\x77\xf7\xaf\x21\xae\x5d\x3e\xc0\xfc\x50\x8d\x01\x3e\x7a\x44\x25\x3b\xb2\x7c\xc0\x99\x7b\x6d\x6a\xc0\xa6\x9d\x87\x76\xf5\x4f\x00\x00\x00\xff\xff\xde\x0e\x0b\x11\xa0\x0a\x00\x00"
func torchvision_resnet_34YmlBytes() ([]byte, error) {
return bindataRead(
_torchvision_resnet_34Yml,
"TorchVision_ResNet_34.yml",
)
}
func torchvision_resnet_34Yml() (*asset, error) {
bytes, err := torchvision_resnet_34YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "TorchVision_ResNet_34.yml", size: 2720, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _torchvision_resnet_50Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x5d\x8f\xdb\xb8\x0e\x7d\xcf\xaf\x20\x90\x97\xf6\x22\x63\x3b\x76\x9c\xc9\x18\xb8\x17\xb8\xdb\x87\xed\xbe\x0c\x16\x45\xb1\x7d\x18\x0c\x02\x5a\xa6\x63\x6d\x6d\xc9\x90\xe8\x49\xd2\x5f\xbf\xd0\x47\x12\x4f\x3f\xb6\x9d\x87\x89\x2d\x92\x47\x14\xcf\x21\x65\x85\x03\x55\xf0\x51\x1b\xd1\xfd\x25\xad\xd4\x6a\xff\x81\xec\x23\xf1\xbe\xcc\x60\x09\xce\x0a\xba\x85\xb3\x9e\x0c\x0c\xba\xa1\x7e\xd1\x1a\x1c\xe8\xa8\xcd\xe7\x6a\x01\x00\x10\xe2\xff\x3c\x7b\x04\x58\xc2\xd5\x0c\xad\x36\xc0\x1d\xc5\x30\xe7\xfb\x42\xc6\xed\x50\xc1\x3a\xc9\x5f\xb9\x46\x03\x08\xad\x2c\x1b\x94\x8a\x17\x33\x5f\x97\xc8\xc5\x43\xaa\x56\x9b\x01\x39\x3c\x83\xa5\x01\x15\x4b\x71\xb5\x07\xeb\x42\x68\xc5\x28\x15\x99\x0a\x96\x70\x7d\xb1\x30\x59\x6a\x80\x35\x8c\x64\x9c\x67\xc8\x0d\x46\x43\x8d\x14\x0e\xd3\xa7\xb9\x84\x61\xea\x59\x8e\x3d\xc1\xd8\x23\x3b\x47\x0b\x02\x15\xd4\x04\x76\x24\x21\x5b\x49\x8d\xf7\xc4\xa1\xd9\x6e\x42\x1d\xdc\x9f\x18\xa7\x0a\x0c\xca\xd1\xe8\xbf\x49\x70\x2a\xd0\x0c\xfd\xdd\x78\x66\x57\x9b\xca\x3b\xdf\x89\x71\xba\xfa\x1f\x7e\xc1\xff\x10\xfd\xc7\x51\x6c\x37\x3d\xfd\xea\x66\xd1\xfd\x1a\xfe\xf3\xed\xe6\x11\x0d\x59\x61\xe4\xc8\x9e\x80\xff\x79\x80\x8f\x9d\xb4\xb1\x5c\xd2\x02\x82\xa1\xb1\x97\x22\x10\xa1\xdb\x1b\xd1\x10\x62\x6b\x6a\x1c\x3f\x6e\x39\xe8\x09\xc6\xa9\xbe\x04\x24\x1e\xf1\xff\xbd\xaf\xfc\x9d\x27\x9c\x9a\x10\x6e\x81\x4e\x23\x09\x06\xa9\xc6\x89\x41\x0e\x78\x20\x0b\xca\xb1\xda\xcb\x2f\x37\x50\xeb\x84\x79\xc4\xf3\x0a\x64\x42\x09\x0c\x52\xc9\xbb\x1a\x59\x74\x64\x5d\x3a\xc5\x9d\xe8\x50\x29\xea\xe1\xc3\xef\xbf\x5d\x50\x74\x0b\xb6\xc3\x91\xe0\x4d\x01\x27\x78\x0f\x27\xf8\xf4\x76\x05\xc7\x8e\x0c\xc1\x7b\x40\xd5\xc0\x27\x40\x43\x31\x83\x20\x94\x9a\x00\x19\x7a\x42\xcb\x90\xe7\x9b\x04\x3e\x76\x74\xc1\xeb\xf0\x85\xa2\x4f\xaf\xb1\x89\xc9\x69\x57\x1c\x54\x07\xdf\x37\x4f\xd9\x0a\xd6\xcf\x1e\x9b\x3b\x52\xf3\x83\x4c\x56\xaa\x03\x0c\x84\x0a\xfe\x0b\x4f\x59\xb2\xd9\x95\x2b\xc8\x92\x4d\xb9\xf5\x3f\xd9\x36\x84\x59\x6e\x82\x3d\xcf\x1f\x9c\x21\xcf\x37\xe1\xa7\x7c\x5e\x18\x6a\xc9\x90\x12\x64\x9d\xcc\x6f\x6f\x5e\xe1\x38\x3a\xc1\xa7\x70\xa4\xda\x4a\x26\xf7\x48\x2c\x92\xe4\x42\x90\xdb\xfd\x75\x7b\xde\x41\xc7\x3c\xda\x2a\x4d\x0f\x92\xbb\xa9\x4e\x84\x1e\xd2\x28\x8f\xf4\xc5\x0f\x87\xb4\xee\x75\x9d\x0e\x68\x99\x4c\xea\x0d\x71\x3d\x90\x97\x1a\xb2\x8a\x38\x19\xcf\x5f\x01\x46\x94\x44\x9b\x43\xda\x68\x61\x53\xcb\x58\xf7\xf4\x0a\x42\xaa\x86\x4e\x49\xc7\xc3\xd7\xd9\xa0\x39\xc9\x17\x1f\x3a\x36\x6d\xba\x2e\xd7\x79\x92\x15\xc5\xae\x4c\xc6\xa6\x5d\x2c\xa1\x97\x82\x94\xa5\x57\x2a\x5c\xc4\xc5\x0a\x26\x65\xc8\xb2\x91\x8e\xd0\xc5\x32\xc8\xca\x17\xe8\xe6\x1b\xd6\xaa\xd8\xfb\xad\x34\xf6\x22\x3f\x3e\x8f\xf4\x9d\x39\x76\xe7\x0d\x55\xd0\x41\x6c\xaf\x25\xcc\x9a\xe6\x92\xcb\x0c\x2b\xba\xbd\xea\x2c\xe7\x32\xd3\x79\x74\x19\xd1\xcd\x45\x26\xe3\x59\xf5\x29\xdc\x96\xae\xcd\x0c\x40\x3d\x0d\xa4\x78\x1f\x72\x69\x7b\x8d\x5c\xe4\x33\xbb\x47\xde\xf7\x78\x76\x53\x30\x9b\x19\x7a\x3c\xeb\x89\x2b\x78\xf7\xfe\xd3\x6c\x55\xe8\x5e\x9b\xbd\x3b\x64\xe5\x9a\x66\x66\x69\xe4\x40\xca\x51\x64\x2b\x78\x2a\x56\xe0\x25\x98\xe7\x9b\xe7\x99\x8f\xd3\x71\x05\x4f\xeb\xbc\x48\xb6\xf7\xe5\x0a\xd6\xeb\x6d\x92\xef\x9c\xfa\xb3\x22\x29\x8b\xec\x19\x96\x3f\x10\xf9\x7f\x20\x2f\xcb\x19\x92\x15\xd8\x53\x05\x4f\xe5\x2e\x29\x1e\xca\x15\x94\xf7\xc9\x3a\xcf\xfc\x6f\x71\x5f\x3e\xfb\x52\xbf\x6a\x87\x24\xb6\x43\x44\xd2\x13\x8f\x13\x5f\xd8\x74\x25\xf6\x25\x8c\x8c\x04\xab\x37\x86\xba\x89\x1e\xad\x95\x6d\x9c\x4c\x31\x0a\xbf\x47\x66\x08\xbd\x71\xb1\xf8\x2e\x9f\xd1\xab\xc7\x3a\x8a\x65\x46\xe7\xf5\x94\x3f\xa6\xf5\xdf\x49\x1d\x8d\xae\xb1\x96\xbd\x64\x49\xf6\x5b\x6a\x5b\x42\x9e\x0c\xd9\xfd\x64\xfa\xca\xb7\x4f\x95\xa6\xb6\x48\x70\xc0\x2f\x5a\xe1\xd1\xfa\x8e\xb6\xac\x0d\x25\x7e\xf8\xfb\xa6\xb2\x67\x65\x89\x6d\xea\x35\xa8\x88\xe3\x42\xc2\x27\xfe\x16\x59\x74\x24\x3e\xdb\x69\xa8\x60\xd3\xe4\xc5\xa6\x2e\x77\x45\x81\x02\x37\x9b\x87\x7c\x97\x6d\x4b\x5c\xef\xb2\xa6\x2e\xb2\xf5\x16\x17\xbe\x5f\x9c\x84\x2f\x77\xe6\xe5\xfe\x38\x18\x1c\x3b\x3f\xdc\x8e\x24\x0f\x1d\x5b\x30\x64\xf5\x64\x04\x85\x3a\x78\xfb\x7e\x44\xee\xaa\xeb\x0c\xf8\xe9\x29\xe2\x00\xba\x8c\xab\x30\x88\xca\x2c\x19\xc3\x21\xa4\xdd\xa3\x11\x9d\x7c\x99\xdd\xa0\x2d\xf6\x96\x60\x09\xb2\x05\x4b\xbc\x0a\x13\xda\x71\x58\xa3\x25\x57\xc3\x70\xd3\xb9\x07\x37\xd5\x15\x44\x84\x39\x8d\x1d\xcd\xd2\x9d\x9f\x29\x2c\x78\xc8\x86\x94\x66\x72\xcf\xb3\xc8\x56\xf6\xe4\x3f\x9e\xec\x45\x5f\xdf\x96\xe5\x28\xb9\x8b\xf7\xdd\x7c\xeb\xb0\xe1\x8d\x89\x0c\x09\xb7\x5b\x41\x59\x4b\x19\xe5\xf7\x9b\x87\xfb\xb6\x5d\xd7\xbb\x5c\x64\x98\xb7\x0f\x79\xb9\x40\x66\x23\xeb\x89\xc3\x3d\x41\x27\x36\x08\x8a\xd8\x7f\x7a\xdd\x6c\x1e\xfb\xb3\x54\x4d\x05\xef\x1e\x1f\xe3\xe1\xdc\xbb\x4b\x50\xd1\x64\xb0\xbf\x46\xbd\x79\xf7\xf8\xb8\x82\x0f\xee\x5f\x92\x24\x6f\x43\x3f\xb9\x7b\x5c\xaa\xc3\xbe\x41\x46\x4b\x5c\xc1\x1f\x4e\x51\xee\xee\x5f\x42\x5c\xbb\x7e\x80\xf9\xa1\x1a\x03\x7c\xf4\x80\x4a\xb6\x64\x79\x8f\x13\x77\xda\x54\x80\x75\x33\xf5\xcd\xe2\x9f\x00\x00\x00\xff\xff\x63\x71\xe6\x77\xa0\x0a\x00\x00"
func torchvision_resnet_50YmlBytes() ([]byte, error) {
return bindataRead(
_torchvision_resnet_50Yml,
"TorchVision_ResNet_50.yml",
)
}
func torchvision_resnet_50Yml() (*asset, error) {
bytes, err := torchvision_resnet_50YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "TorchVision_ResNet_50.yml", size: 2720, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _torchvision_squeezenet_v10Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x4b\x6f\xdb\x46\x10\xbe\xeb\x57\x0c\xa0\x4b\x52\xc8\x7c\x8a\xb2\x4d\xa0\x05\xda\x1c\x9a\x5e\x8c\x22\x0d\x9a\x83\x61\x08\xc3\xe5\x50\xdc\x86\xdc\x65\x77\x87\xb6\x95\x5f\x5f\xec\x43\x12\x9d\x47\x13\x1f\x2c\x72\xe7\x9b\x6f\x67\xe7\x9b\x99\xa5\xc2\x91\x6a\x78\xaf\x8d\xe8\xff\x96\x56\x6a\xb5\xff\xeb\xdf\x99\xe8\x13\xdd\x11\xef\x1f\xf3\x24\x83\x35\x38\x0c\xe8\x0e\x8e\x7a\x36\x30\xea\x96\x86\x55\x67\x70\xa4\x27\x6d\x3e\xd6\x2b\x00\x80\xc0\xf2\xe7\xd1\xf3\xc0\x1a\xce\x66\xe8\xb4\x01\xee\x29\xba\x39\xec\x23\x19\xb7\x4f\x0d\x79\x52\xbc\x80\x46\x03\x08\xad\x2c\x1b\x94\x8a\x57\x0b\xac\x0b\xe4\x84\x90\xaa\xd3\x66\x44\x0e\xcf\x60\x69\x44\xc5\x52\x9c\xed\xc1\xba\x12\x5a\x31\x4a\x45\xa6\x86\x35\x9c\x5f\x2c\xcc\x96\x5a\x60\x0d\x13\x19\x87\x0c\xb1\xc1\x64\xa8\x95\xc2\x71\xfa\x30\xd7\x30\xce\x03\xcb\x69\x20\x98\x06\x64\x07\xb4\x20\x50\x41\x43\x60\x27\x12\xb2\x93\xd4\x7a\x24\x8e\xed\x6e\x1b\xf2\xe0\xfe\xc4\x34\xd7\x60\x50\x4e\x46\xff\x43\x82\x53\x81\x66\x1c\xae\xa6\x23\xbb\xdc\xd4\x1e\x7c\x25\xa6\xf9\x8c\x3f\xfc\x00\xfe\x10\xf1\xd3\x24\x76\xdb\x81\x7e\x74\xb3\x08\x3f\xbb\x7f\x7f\xbb\xa5\x47\x4b\x56\x18\x39\xb1\x17\xe0\x17\x4f\xf0\xbe\x97\x36\xa6\x4b\x5a\x40\x30\x34\x0d\x52\x04\x21\x74\x77\x11\x1a\x82\x6f\x43\xad\xd3\xc7\x2d\xbf\x23\x7b\x47\x0c\xd3\xdc\x9c\x1c\x12\xcf\xf8\xeb\xe0\x33\x7f\xe5\x05\xa7\x36\xb8\x5b\xa0\xe7\x89\x04\x83\x54\xd3\xcc\x20\x47\x3c\x90\x05\xe5\x54\x1d\xe4\xa7\x0b\xa9\x75\x85\xf9\x84\xc7\x0d\xc8\x84\x12\x18\xa5\x92\x57\x0d\xb2\xe8\xc9\xba\x70\xca\x2b\xd1\xa3\x52\x34\xc0\xbb\xdf\x7f\x3b\xb1\xe8\x0e\x6c\x8f\x13\xc1\xab\x12\x9e\xe1\x2d\x3c\xc3\x87\xd7\x1b\x78\xea\xc9\x10\xbc\x05\x54\x2d\x7c\x00\x34\x14\x23\x08\x85\xd2\x10\x20\xc3\x40\x68\x19\x8a\x62\x9b\xc0\xfb\x9e\x4e\x7c\x3d\x3e\x52\xc4\x0c\x1a\xdb\x18\x9c\x76\xc9\x41\x75\xf0\x7d\x73\x9f\x6d\x20\x7f\xf0\xdc\xdc\x93\x5a\x1e\x64\xb6\x52\x1d\x60\x24\x54\xf0\x33\xdc\x67\xc9\xf6\xa6\xda\x40\x96\x6c\xab\x9d\xff\xc9\x76\xc1\xcd\x72\x1b\xec\x45\x71\xeb\x0c\x45\xb1\x0d\x3f\xd5\xc3\xca\x50\x47\x86\x94\x20\xeb\xca\xfc\xf2\xe6\x2b\x1c\x27\x57\xf0\x29\x3c\x51\x63\x25\x93\x7b\x24\x16\x49\x72\x12\xc8\xed\xfe\xb2\x3d\xaf\xa0\x67\x9e\x6c\x9d\xa6\x07\xc9\xfd\xdc\x24\x42\x8f\x69\x2c\x8f\xf4\xd1\x8f\x88\xb4\x19\x74\x93\x8e\x68\x99\x4c\xea\x0d\x71\x3d\x88\x97\xda\x30\x41\x14\x71\x32\x1d\x3f\x23\x8d\x4c\x89\x36\x87\xb4\xd5\xc2\xa6\x96\xb1\x19\xe8\x05\x8d\x54\x2d\x3d\x27\x3d\x8f\x9f\x47\x84\xe6\x59\x3e\x7a\xd7\xa9\xed\xd2\x7c\x97\x15\x49\x76\x5d\xee\xb2\x64\x6a\xbb\xd5\x1a\x06\x29\x48\x59\x7a\x51\x89\xab\xb8\x58\xc3\xac\x0c\x59\x36\xd2\x89\xba\x5a\x87\xd2\xf2\x49\xba\x60\xc3\x5a\x1d\xfb\xbf\x93\xc6\x9e\x4a\x90\x8f\x13\x7d\x65\x96\x5d\x79\x43\x1d\x6a\x21\xb6\xd8\x1a\x16\x8d\x73\x8a\x65\xc1\x15\x61\x2f\xba\xcb\x41\x16\xb5\x1e\x21\x13\xba\xd9\xc8\x64\xbc\xb2\x3e\x84\xcb\xd2\xb9\xa1\x01\x68\xa0\x91\x14\xef\x43\x2c\xdd\xa0\x91\xcb\x62\x61\xf7\xcc\xfb\x01\x8f\x6e\x12\x66\x0b\xc3\x80\x47\x3d\x73\x0d\x6f\xde\x7e\x58\xac\x0a\x3d\x68\xb3\x77\x87\xac\x5d\xe3\x2c\x2c\xad\x1c\x49\x39\x89\x6c\x0d\xf7\xe5\x06\x7c\x19\x16\xc5\xf6\x61\x81\x71\xb5\x5c\xc3\x7d\x5e\x94\xc9\xee\xba\xda\x40\x9e\xef\x92\xe2\xc6\x75\x40\x56\x26\x55\x99\x3d\xc0\xfa\x1b\x85\xfe\x13\x14\x55\xb5\x60\xb2\x02\x07\xaa\xe1\xbe\xba\x49\xca\xdb\x6a\x03\xd5\x75\x92\x17\x99\xff\x2d\xaf\xab\x07\x9f\xea\x17\x2d\x91\xc4\x96\x88\x4c\x7a\xe6\x69\xe6\x93\x9a\x2e\xc5\x3e\x85\x51\x91\x60\xf5\xc6\x90\x37\x31\xa0\xb5\xb2\x8b\xd3\x29\x7a\xe1\xd7\xc4\x0c\xae\x17\x2d\x56\x5f\xd5\x33\xa2\x06\x6c\x62\xb1\x2c\xe4\x3c\x9f\xf2\xdb\xb2\xfe\xbf\xa8\x93\xd1\x0d\x36\x72\x90\x2c\xc9\x7e\x29\x6d\x47\xc8\xb3\x21\xbb\x9f\xcd\x50\xfb\xf6\xa9\xd3\xd4\x96\x09\x8e\xf8\x49\x2b\x7c\xb2\xbe\xab\x2d\x6b\x43\x89\xbf\x00\x7c\x53\xd9\xa3\xb2\xc4\x36\xf5\x35\xa8\x88\xe3\x42\xc2\xcf\xfc\x25\xb3\xe8\x49\x7c\xb4\xf3\x58\xc3\xb6\x2d\xca\x6d\x53\xdd\x94\x25\x0a\xdc\x6e\x6f\x8b\x9b\x6c\x57\x61\x7e\x93\xb5\x4d\x99\xe5\x3b\x5c\xf9\x7e\x71\x25\x7c\xba\x37\x4f\x77\xc8\xc1\xe0\xd4\xfb\x01\xf7\x44\xf2\xd0\xb3\x05\x43\x56\xcf\x46\x50\xc8\x83\xb7\xef\x27\xe4\xbe\x3e\xcf\x80\xef\x9e\x22\x0e\xa1\xd3\xc8\xba\x0c\xa3\x7c\x9f\x25\x53\x38\x89\xb4\x7b\x34\xa2\x97\x8f\x8b\xab\xb4\xc3\xc1\x12\xac\x41\x76\x60\x89\x37\x61\x54\x3b\x21\x1b\xb4\xe4\x12\x19\xae\x3c\xf7\xe0\xc6\xbb\x82\xc8\xb0\xd4\xb2\xa7\x45\xcc\xcb\x83\x85\x05\x4f\xd9\x92\xd2\x4c\xee\x79\xe1\xd9\xc9\x81\xfc\x57\x94\x3d\x15\xd9\x97\xb9\x79\x92\xdc\xc7\x8b\x6f\xb9\x75\xd8\xf0\x22\x47\x26\xba\x5d\xde\x52\x79\xdb\x52\x75\x9d\xb7\x5d\x95\x97\xd7\x65\x53\x11\x56\x05\xde\x94\x55\xb1\x42\x66\x23\x9b\x99\xc3\x85\x41\xcf\x6c\x10\x14\xb1\xff\x06\xbb\xd8\x3c\xf7\x47\xa9\xda\x1a\xde\xdc\xdd\xc5\xc3\xb9\x77\x17\xa0\xa2\xd9\xe0\x70\xf6\x7a\xf5\xe6\xee\x6e\x03\xef\xdc\xbf\x24\x49\x5e\x87\xa6\x72\x17\xba\x54\x87\x7d\x8b\x8c\x96\xb8\x86\x3f\x5c\x59\xb9\x8f\x80\x35\xc4\xb5\xf3\x97\x98\x9f\xac\xd1\xc1\x7b\x8f\xa8\x64\x47\x96\xf7\x38\x73\xaf\x4d\x0d\xd8\xb4\xf3\xd0\xae\xfe\x0b\x00\x00\xff\xff\xbe\xee\xba\x1f\xaf\x0a\x00\x00"
func torchvision_squeezenet_v10YmlBytes() ([]byte, error) {
return bindataRead(
_torchvision_squeezenet_v10Yml,
"TorchVision_SqueezeNet_v1.0.yml",
)
}
func torchvision_squeezenet_v10Yml() (*asset, error) {
bytes, err := torchvision_squeezenet_v10YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "TorchVision_SqueezeNet_v1.0.yml", size: 2735, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _torchvision_squeezenet_v11Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x4d\x8f\xdb\xbc\x11\xbe\xfb\x57\x0c\xe0\x4b\x52\x78\x25\x5b\xb2\x6c\x47\x40\x0b\xb4\x39\x34\xbd\x2c\x8a\x34\x68\x0e\x8b\x85\x31\xa2\x46\x16\x1b\x89\x64\xc9\xd1\xee\x3a\xbf\xfe\x05\x3f\x6c\x6b\xf3\xf1\x26\x7b\x58\x4b\x9c\x67\x1e\x0e\xe7\x99\x19\x4a\xe1\x48\x35\x7c\xd2\x56\xf4\xff\x95\x4e\x6a\x75\xfc\xcf\xff\x27\xa2\xaf\x74\x4f\x7c\x7c\xda\x64\x1b\x58\x82\xc7\x80\xee\xe0\xac\x27\x0b\xa3\x6e\x69\x58\x74\x16\x47\x7a\xd6\xf6\x4b\xbd\x00\x00\x88\x2c\xff\x3e\x07\x1e\x58\xc2\xd5\x0c\x9d\xb6\xc0\x3d\x25\x37\x8f\x7d\x22\xeb\xf7\xa9\x61\x93\x15\xaf\xa0\xc9\x00\x42\x2b\xc7\x16\xa5\xe2\xc5\x0c\xeb\x03\xb9\x20\xa4\xea\xb4\x1d\x91\xe3\x33\x38\x1a\x51\xb1\x14\x57\x7b\xb4\x2e\x84\x56\x8c\x52\x91\xad\x61\x09\xd7\x17\x07\x93\xa3\x16\x58\x83\x21\xeb\x91\x31\x36\x30\x96\x5a\x29\x3c\x67\x08\x73\x09\xe3\x34\xb0\x34\x03\x81\x19\x90\x3d\xd0\x81\x40\x05\x0d\x81\x33\x24\x64\x27\xa9\x0d\x48\x1c\xdb\xdd\x36\xe6\xc1\xff\x09\x33\xd5\x60\x51\x1a\xab\xff\x47\x82\x73\x81\x76\x1c\xee\xcc\x99\x7d\x6e\xea\x00\xbe\x13\x66\xba\xe2\x4f\xbf\x81\x3f\x25\xbc\x31\x62\xb7\x1d\xe8\x77\x37\x4b\xf0\xab\xfb\xaf\xb7\x9b\x7b\xb4\xe4\x84\x95\x86\x83\x00\x7f\x0b\x04\x9f\x7a\xe9\x52\xba\xa4\x03\x04\x4b\x66\x90\x22\x0a\xa1\xbb\x9b\xd0\x10\x7d\x1b\x6a\xbd\x3e\x7e\xf9\x23\xb9\x7b\x62\x30\x53\x73\x71\xc8\x02\xe3\xdf\x87\x90\xf9\xbb\x20\x38\xb5\xd1\xdd\x01\xbd\x18\x12\x0c\x52\x99\x89\x41\x8e\x78\x22\x07\xca\xab\x3a\xc8\xaf\x37\x52\xe7\x0b\xf3\x19\xcf\x2b\x90\x19\x65\x30\x4a\x25\xef\x1a\x64\xd1\x93\xf3\xe1\x94\x77\xa2\x47\xa5\x68\x80\x8f\xff\xfc\xc7\x85\x45\x77\xe0\x7a\x34\x04\x6f\x4a\x78\x81\x0f\xf0\x02\x9f\xdf\xae\xe0\xb9\x27\x4b\xf0\x01\x50\xb5\xf0\x19\xd0\x52\x8a\x20\x16\x4a\x43\x80\x0c\x03\xa1\x63\x28\x8a\x6d\x06\x9f\x7a\xba\xf0\xf5\xf8\x44\x09\x33\x68\x6c\x53\x70\xda\x27\x07\xd5\x29\xf4\xcd\xc3\x7a\x05\x9b\xc7\xc0\xcd\x3d\xa9\xf9\x41\x26\x27\xd5\x09\x46\x42\x05\x7f\x85\x87\x75\xb6\x3d\x54\x2b\x58\x67\xdb\x6a\x17\x7e\xd6\xbb\xe8\xe6\xb8\x8d\xf6\xa2\x78\xe7\x0d\x45\xb1\x8d\x3f\xd5\xe3\xc2\x52\x47\x96\x94\x20\xe7\xcb\xfc\xf6\x16\x2a\x1c\x8d\x2f\xf8\x1c\x9e\xa9\x71\x92\xc9\x3f\x12\x8b\x2c\xbb\x08\xe4\x77\x7f\xdd\x9e\x77\xd0\x33\x1b\x57\xe7\xf9\x49\x72\x3f\x35\x99\xd0\x63\x9e\xca\x23\x7f\x0a\x23\x22\x6f\x06\xdd\xe4\x23\x3a\x26\x9b\x07\x43\x5a\x8f\xe2\xe5\x2e\x4e\x10\x45\x9c\x99\xf3\x37\xa4\x89\x29\xd3\xf6\x94\xb7\x5a\xb8\xdc\x31\x36\x03\xbd\xa2\x91\xaa\xa5\x97\xac\xe7\xf1\xdb\x88\xd0\xbe\xc8\xa7\xe0\x6a\xda\x2e\xdf\xec\xd6\x45\xb6\xde\x97\xbb\x75\x66\xda\x6e\xb1\x84\x41\x0a\x52\x8e\x5e\x55\xe2\x22\x2d\xd6\x30\x29\x4b\x8e\xad\xf4\xa2\x2e\x96\xb1\xb4\x42\x92\x6e\xd8\xb8\x56\xa7\xfe\xef\xa4\x75\x97\x12\xe4\xb3\xa1\x1f\xcc\xb2\xbb\x60\xa8\x63\x2d\xa4\x16\x5b\xc2\xac\x71\x2e\xb1\xcc\xb8\x12\xec\x55\x77\x79\xc8\xac\xd6\x13\xc4\xa0\x9f\x8d\x4c\x36\x28\x1b\x42\xb8\x2d\x5d\x1b\x1a\x80\x06\x1a\x49\xf1\x31\xc6\xd2\x0d\x1a\xb9\x2c\x66\xf6\xc0\x7c\x1c\xf0\xec\x27\xe1\x7a\x66\x18\xf0\xac\x27\xae\xe1\xfd\x87\xcf\xb3\x55\xa1\x07\x6d\x8f\xfe\x90\xb5\x6f\x9c\x99\xa5\x95\x23\x29\x2f\x91\xab\xe1\xa1\x5c\x41\x28\xc3\xa2\xd8\x3e\xce\x30\xbe\x96\x6b\x78\xd8\x14\x65\xb6\xdb\x57\x2b\xd8\x6c\x76\x59\x71\xf0\x1d\xb0\x2e\xb3\xaa\x5c\x3f\xc2\xf2\x27\x85\xfe\x17\x28\xaa\x6a\xc6\xe4\x04\x0e\x54\xc3\x43\x75\xc8\xca\x77\xd5\x0a\xaa\x7d\xb6\x29\xd6\xe1\xb7\xdc\x57\x8f\x21\xd5\xaf\x5a\x22\x4b\x2d\x91\x98\xf4\xc4\x66\xe2\x8b\x9a\x3e\xc5\x21\x85\x49\x91\x68\x0d\xc6\x98\x37\x31\xa0\x73\xb2\x4b\xd3\x29\x79\xe1\x8f\xc4\x8c\xae\x37\x2d\x16\x3f\xd4\x33\xa1\x06\x6c\x52\xb1\xcc\xe4\xbc\x9e\xf2\xe7\xb2\xfe\xb9\xa8\xc6\xea\x06\x1b\x39\x48\x96\xe4\xbe\x97\xb6\x23\xe4\xc9\x92\x3b\x4e\x76\xa8\x43\xfb\xd4\x79\xee\xca\x0c\x47\xfc\xaa\x15\x3e\xbb\xd0\xd5\x8e\xb5\xa5\x2c\x5c\x00\xa1\xa9\xdc\x59\x39\x62\x97\x87\x1a\x54\xc4\x69\x21\xe3\x17\xfe\x9e\x59\xf4\x24\xbe\xb8\x69\xac\x61\xdb\x16\xe5\xb6\xa9\x0e\x65\x89\x02\xb7\xdb\x77\xc5\x61\xbd\xab\x70\x73\x58\xb7\x4d\xb9\xde\xec\x70\x11\xfa\xc5\x97\xf0\xe5\xde\xbc\xdc\x21\x27\x8b\xa6\x0f\x03\xee\x99\xe4\xa9\x67\x07\x96\x9c\x9e\xac\xa0\x98\x87\x60\x3f\x1a\xe4\xbe\xbe\xce\x80\x5f\x9e\x22\x0d\xa1\xcb\xc8\xba\x0d\xa3\xcd\x71\x93\x99\x78\x12\xe9\x8e\x68\x45\x2f\x9f\x66\x57\x69\x87\x83\x23\x58\x82\xec\xc0\x11\xaf\xe2\xa8\xf6\x42\x36\xe8\xc8\x27\x32\x5e\x79\xfe\xc1\x8f\x77\x05\x89\x61\xae\x65\x4f\xb3\x98\xe7\x07\x8b\x0b\x81\xb2\x25\xa5\x99\xfc\xf3\xcc\xb3\x93\x03\x85\xaf\x28\x77\x29\xb2\xef\x73\xf3\x2c\xb9\x4f\x17\xdf\x7c\xeb\xb8\xe1\x4d\x8e\xbd\x10\xc5\xe1\xb0\x6b\xf7\xed\xbe\x39\x1c\xc4\xae\xe8\xb0\xdc\x8a\x8e\x9a\x76\xdf\x56\x55\xd7\x2d\x90\xd9\xca\x66\xe2\x78\x61\xd0\x0b\x5b\x04\x45\x1c\xbe\xc1\x6e\xb6\xc0\xfd\x45\xaa\xb6\x86\xf7\xf7\xf7\xe9\x70\xfe\xdd\x07\xa8\x68\xb2\x38\x5c\xbd\xde\xbc\xbf\xbf\x5f\xc1\x47\xff\x2f\xcb\xb2\xb7\xb1\xa9\xfc\x85\x2e\xd5\xe9\xd8\x22\xa3\x23\xae\xe1\x5f\xbe\xac\xfc\x47\xc0\x12\xd2\xda\xf5\x4b\x2c\x4c\xd6\xe4\x10\xbc\x47\x54\xb2\x23\xc7\x47\x9c\xb8\xd7\xb6\x06\x6c\xda\x69\x68\x17\x7f\x04\x00\x00\xff\xff\x0a\xb8\x69\xfd\xaf\x0a\x00\x00"
func torchvision_squeezenet_v11YmlBytes() ([]byte, error) {
return bindataRead(
_torchvision_squeezenet_v11Yml,
"TorchVision_SqueezeNet_v1.1.yml",
)
}
func torchvision_squeezenet_v11Yml() (*asset, error) {
bytes, err := torchvision_squeezenet_v11YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "TorchVision_SqueezeNet_v1.1.yml", size: 2735, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _torchvision_vgg_11Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x4d\x6f\xdb\xba\x12\xdd\xfb\x57\x0c\xe0\x4d\xfb\xe0\x48\xb2\x64\x39\x8e\x80\xf7\x80\x77\xbb\x48\xef\x26\xb8\x28\x8a\x76\x11\x04\xc6\x88\x1a\x59\xbc\xa5\x48\x82\xa4\x12\xbb\xbf\xfe\x82\x1f\xb6\x95\x7e\xdc\x36\x8b\x58\xe2\x9c\x19\x0e\xe7\x9c\x19\x4a\xe2\x48\x0d\x7c\x54\x86\x0d\x9f\xb8\xe5\x4a\xee\x3f\xdd\xdf\xef\xd7\x6b\x58\x82\x37\x81\xea\xe1\xa4\x26\x03\xa3\xea\x48\x2c\x7a\x83\x23\xbd\x28\xf3\xa5\x59\x00\x00\x44\xe7\xbf\x4e\xc1\x1d\x96\x70\x31\x43\xaf\x0c\xb8\x81\x92\x9b\xc7\x3e\x93\xf1\xe1\x1b\x58\x67\xe5\x2b\x68\x32\x00\x53\xd2\x3a\x83\x5c\xba\xc5\x0c\x5b\xc0\xf2\x82\xe0\xb2\x57\x66\x44\x17\x9f\xc1\xd2\x88\xd2\x71\x76\xb1\x47\xeb\x82\x29\xe9\x90\x4b\x32\x0d\x2c\xe1\xf2\x62\x61\xb2\xd4\x81\x53\xa0\xc9\x78\x64\xcc\x0d\xb4\xa1\x8e\x33\x1f\x33\xa4\xb9\x84\x71\x12\x8e\x6b\x41\xa0\x05\x3a\x0f\xb4\xc0\x50\x42\x4b\x60\x35\x31\xde\x73\xea\x02\x12\xc7\x6e\xbb\x89\x75\xf0\x7f\x4c\x4f\x0d\x18\xe4\xda\xa8\xbf\x89\xb9\x9c\xa1\x19\xc5\x8d\x3e\x39\x5f\x9b\x26\x80\x6f\x98\x9e\x2e\xf8\xc3\x6f\xe0\x0f\x09\xaf\x35\xdb\x6e\x04\xfd\xee\x66\x09\x7e\x71\xff\xf5\x76\x73\x8f\x8e\x2c\x33\x5c\xbb\x40\xc0\xff\x42\x80\x8f\x03\xb7\xa9\x5c\xdc\x02\x82\x21\x2d\x38\x8b\x44\xa8\xfe\x4a\x34\x44\xdf\x96\x3a\xcf\x8f\x5f\xfe\x74\x7f\x0f\x7a\x6a\xcf\xe8\x2c\x84\xfb\xbf\x08\x65\xbf\x09\x6c\x53\x17\x7d\x2d\xd0\x51\x13\x73\xc0\xa5\x9e\x1c\xf0\x11\x0f\x64\x41\x7a\x4a\x05\xff\x7a\x8d\x68\xbd\x2a\x5f\xf0\xb4\x02\x9e\x51\x06\x23\x97\xfc\xa6\x45\xc7\x06\xb2\x3e\x97\xea\x86\x0d\x28\x25\x09\xf8\x70\xff\xc7\x39\x8a\xea\xc1\x0e\xa8\x09\xde\x54\x70\x84\xf7\x70\x84\xcf\x6f\x57\xf0\x32\x90\x21\x78\x0f\x28\x3b\xf8\x0c\x68\x28\x65\x10\x55\xd2\x12\xa0\x03\x41\x68\x1d\x94\xe5\x26\x83\x8f\x03\x9d\xe3\x0d\xf8\x4c\x09\x23\x14\x76\x29\x39\xe5\x2b\x83\xf2\x10\x9a\xe6\xb1\x58\xc1\xfa\x29\xc4\x76\x03\xc9\xf9\x41\x26\xcb\xe5\x01\x46\x42\x09\xff\x85\xc7\x22\xdb\xec\xea\x15\x14\xd9\xa6\xde\x86\x9f\x62\x1b\xdd\xac\xeb\xa2\xbd\x2c\xef\xbc\xa1\x2c\x37\xf1\xa7\x7e\x5a\x18\xea\xc9\x90\x64\x64\xbd\xc6\xaf\x6f\x41\xde\xa8\xbd\xda\x73\x78\xa1\xd6\x72\x47\xfe\x91\x1c\xcb\xb2\x33\x3b\x7e\xf7\xd7\xbd\x79\x03\x83\x73\xda\x36\x79\x7e\xe0\x6e\x98\xda\x8c\xa9\x31\x4f\xda\xc8\x9f\xc3\x58\xc8\x5b\xa1\xda\x7c\x44\xeb\xc8\xe4\xc1\x90\xd6\x23\x79\xf9\xf3\xe1\x90\xe9\xd3\x37\xd1\x52\x88\x4c\x99\x43\xde\x29\x66\x73\xeb\xb0\x15\xf4\xca\x9f\xcb\x8e\x8e\xd9\xe0\xc6\x6f\x53\x41\x73\xe4\xcf\xc1\x55\x77\x7d\xbe\xde\x14\x77\xd9\xba\xae\xb7\x99\xee\xfa\xc5\x12\x04\x67\x24\x2d\xbd\x92\xdf\x22\x2d\x36\x30\x49\x43\xd6\x19\xee\xc9\x5c\x2c\xa3\xa4\x42\x71\xae\xd8\xb8\xd6\xa4\xa6\xef\xb9\xb1\x67\xe9\xb9\x93\xa6\x1f\x0c\xb0\x9b\x60\x68\xa2\x06\x52\x5f\x2d\x61\xd6\x2d\xe7\x5c\x66\xb1\x12\xec\x55\x4b\x79\xc8\x4c\xe3\x09\xa2\xd1\x0f\x44\x47\x26\x30\x1a\x52\xb8\x2e\x5d\xba\x18\x80\x04\x8d\x24\xdd\x3e\xe6\xd2\x0b\x85\xae\x2a\x67\xf6\x10\x79\x2f\xf0\xe4\xc7\x5f\x31\x33\x08\x3c\xa9\xc9\x35\xf0\xee\xfd\xe7\xd9\x2a\x53\x42\x99\xbd\x3f\x64\xe3\x1b\x66\x66\xe9\xf8\x48\xd2\x33\x64\x1b\x78\xac\x56\x10\xe4\x57\x96\x9b\xa7\x19\xc6\x6b\xb8\x81\xc7\x75\x59\x65\xdb\xdb\x7a\x05\xeb\xf5\x36\x2b\x77\x5e\xf9\x45\x95\xd5\x55\xf1\x04\xcb\x9f\x08\xfc\x3f\x50\xd6\xf5\x2c\x92\x65\x28\xa8\x81\xc7\x7a\x97\x55\x77\xf5\x0a\xea\xdb\x6c\x5d\x16\xe1\xb7\xba\xad\x9f\x42\xa9\x5f\xb5\x42\x96\x5a\x21\x45\x52\x93\xd3\x93\x3b\xb3\xe9\x4b\x1c\x4a\x98\x18\x89\xd6\x60\x8c\x75\x63\x02\xad\xe5\x7d\x9a\x4a\xc9\x0b\x7f\x44\x66\x74\xbd\x72\xb1\xf8\x21\x9f\x09\x25\xb0\x4d\x62\x99\xd1\x79\x39\xe5\xcf\x69\xfd\x77\x52\xb5\x51\x2d\xb6\x5c\x70\xc7\xc9\x7e\x4f\x6d\x4f\xe8\x26\x43\x76\x3f\x19\xd1\x84\xee\x69\xf2\xdc\x56\x19\x8e\xf8\x55\x49\x7c\xb1\xa1\x9b\xad\x53\x86\xb2\x30\xf5\x43\x4f\xd9\x93\xb4\xe4\x6c\x1e\x34\x28\xc9\xa5\x85\xcc\x1d\xdd\xf7\x91\xd9\x40\xec\x8b\x9d\xc6\x06\x36\x5d\x59\x6d\xda\x7a\x57\x55\xc8\x70\xb3\xb9\x2b\x77\xc5\xb6\xc6\xf5\xae\xe8\xda\xaa\x58\x6f\x71\x11\xfa\xc5\x4b\xf8\x7c\x59\x9e\x2f\x8e\x83\x41\x3d\x84\xc1\xf6\x42\xfc\x30\x38\x0b\x86\xac\x9a\x0c\xa3\x58\x87\x60\xdf\x6b\x74\x43\x73\x19\x01\xbf\x3c\x45\x1a\x3e\x97\x51\x75\x38\xac\xd7\x99\x8e\x27\xe0\x76\x8f\x86\x0d\xfc\x79\x76\x6f\xf6\x28\x2c\xc1\x12\x78\x0f\x96\xdc\x2a\x8e\x66\x4f\x60\x8b\x96\x7c\x01\xe3\xfd\xe6\x1f\xfc\x38\x97\x90\x22\xcc\x39\x1c\x68\x96\xeb\xfc\x40\x71\x21\x84\xec\x48\x2a\x47\xfe\x79\xe6\xd9\x73\x41\xe1\x93\xc9\x9e\xc5\xf5\x7d\x4d\x5e\xb8\x1b\xd2\x45\x37\xdf\x3a\x6e\x78\xa5\xa1\xb8\xad\xcb\x8a\xb1\x8e\x15\xdd\x8e\xf5\xd4\x6d\x37\xec\xf6\x8e\xfa\x02\x0b\x64\xdd\xae\xc5\x05\x3a\x67\x78\x3b\xb9\x78\x41\xd0\xd1\x19\x04\x49\x2e\x7c\x70\x5d\x6d\x21\xf6\x17\x2e\xbb\x06\xde\x3d\x3c\xa4\xc3\xf9\x77\x9f\xa0\xa4\xc9\xa0\xb8\x78\xbd\x79\xf7\xf0\xb0\x82\x0f\xfe\x5f\x96\x65\x6f\x63\x33\xf9\x0b\x9c\xcb\xc3\xbe\x43\x87\x96\x5c\x03\x7f\x7a\x39\x3d\x90\xf3\x93\x31\xae\x5d\x3e\xbb\xc2\x44\x4d\x0e\xc1\x7b\x44\xc9\x7b\xb2\x6e\x8f\x93\x1b\x94\x69\x00\xdb\x6e\x12\xdd\xe2\x9f\x00\x00\x00\xff\xff\xd4\xe4\xe0\xb5\x93\x0a\x00\x00"
func torchvision_vgg_11YmlBytes() ([]byte, error) {
return bindataRead(
_torchvision_vgg_11Yml,
"TorchVision_VGG_11.yml",
)
}
func torchvision_vgg_11Yml() (*asset, error) {
bytes, err := torchvision_vgg_11YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "TorchVision_VGG_11.yml", size: 2707, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _torchvision_vgg_11_bnYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x5b\x6f\xdb\x3a\x12\x7e\xf7\xaf\x18\xc0\x2f\xe7\x2c\x1c\x5d\x2d\xc7\x11\xb0\x0b\xec\xe9\x43\xba\x2f\xc1\xa2\x28\xda\x87\x20\x30\x46\xd4\xc8\xe2\x96\x22\x09\x92\x4a\xe2\xfe\xfa\x05\x2f\xb6\x95\x5e\x4e\x9b\x87\x58\xe2\x7c\x33\x1c\xce\xf7\xcd\x50\x12\x27\x6a\xe1\xa3\x32\x6c\xfc\xc4\x2d\x57\xf2\xf0\xe9\xfe\xfe\x50\x96\x87\xbf\x1e\x60\x0d\xde\x0a\x6a\x80\x93\x9a\x0d\x4c\xaa\x27\xb1\x1a\x0c\x4e\xf4\xa2\xcc\x97\x76\x05\x00\x10\xfd\xff\x7b\x0a\x11\x60\x0d\x17\x33\x0c\xca\x80\x1b\x29\xb9\x79\xec\x33\x19\xbf\x43\x0b\x65\x56\xbd\x81\x26\x03\x30\x25\xad\x33\xc8\xa5\x5b\x2d\xb0\x05\xac\x2f\x08\x2e\x07\x65\x26\x74\xf1\x19\x2c\x4d\x28\x1d\x67\x17\x7b\xb4\xae\x98\x92\x0e\xb9\x24\xd3\xc2\x1a\x2e\x2f\x16\x66\x4b\x3d\x38\x05\x9a\x8c\x47\xc6\xdc\x40\x1b\xea\x39\xf3\x31\x43\x9a\x6b\x98\x66\xe1\xb8\x16\x04\x5a\xa0\xf3\x40\x0b\x0c\x25\x74\x04\x56\x13\xe3\x03\xa7\x3e\x20\x71\xea\x77\xdb\x58\x07\xff\xc7\xf4\xdc\x82\x41\xae\x8d\xfa\x1f\x31\x97\x33\x34\x93\xb8\xd1\x27\xe7\x6b\xd3\x06\xf0\x0d\xd3\xf3\x05\x7f\xfc\x0d\xfc\x31\xe1\xb5\x66\xbb\xad\xa0\xdf\xdd\x2c\xc1\x2f\xee\xbf\xde\x6e\xe9\xd1\x93\x65\x86\x6b\x17\x08\xf8\x57\x08\xf0\x71\xe4\x36\x95\x8b\x5b\x40\x30\xa4\x05\x67\x91\x08\x35\x5c\x89\x86\xe8\xdb\x51\xef\xf9\xf1\xcb\x9f\xee\xef\x41\xcf\xdd\x19\x9d\x85\x70\xff\x16\xa1\xec\x37\x81\x6d\xea\xa3\xaf\x05\x7a\xd5\xc4\x1c\x70\xa9\x67\x07\x7c\xc2\x23\x59\x90\x9e\x52\xc1\xbf\x5e\x23\x5a\xaf\xca\x17\x3c\x6d\x80\x67\x94\xc1\xc4\x25\xbf\xe9\xd0\xb1\x91\xac\xcf\xa5\xbe\x61\x23\x4a\x49\x02\x3e\xdc\xff\x75\x8e\xa2\x06\xb0\x23\x6a\x82\x3f\x6a\x78\x85\xf7\xf0\x0a\x9f\xff\xdc\xc0\xcb\x48\x86\xe0\x3d\xa0\xec\xe1\x33\xa0\xa1\x94\x41\x54\x49\x47\x80\x0e\x04\xa1\x75\x50\x55\xdb\x0c\x3e\x8e\x74\x8e\x37\xe2\x33\x25\x8c\x50\xd8\xa7\xe4\x94\xaf\x0c\xca\x63\x68\x9a\xc7\x62\x03\xe5\x53\x88\xed\x46\x92\xcb\x83\xcc\x96\xcb\x23\x4c\x84\x12\xfe\x09\x8f\x45\xb6\xdd\x37\x1b\x28\xb2\x6d\xb3\x0b\x3f\xc5\x2e\xba\x59\xd7\x47\x7b\x55\xdd\x79\x43\x55\x6d\xe3\x4f\xf3\xb4\x32\x34\x90\x21\xc9\xc8\x7a\x8d\x5f\xdf\x82\xbc\x51\x7b\xb5\xe7\xf0\x42\x9d\xe5\x8e\xfc\x23\x39\x96\x65\x67\x76\xfc\xee\x6f\x7b\xf3\x06\x46\xe7\xb4\x6d\xf3\xfc\xc8\xdd\x38\x77\x19\x53\x53\x9e\xb4\x91\x3f\x87\xc9\x90\x77\x42\x75\xf9\x84\xd6\x91\xc9\x83\x21\xad\x47\xf2\xf2\xe7\xe3\x31\xd3\xa7\x6f\xa2\xa5\x10\x99\x32\xc7\xbc\x57\xcc\xe6\xd6\x61\x27\xe8\x8d\x3f\x97\x3d\xbd\x66\xa3\x9b\xbe\x4d\x05\xcd\x2b\x7f\x0e\xae\xba\x1f\xf2\x72\x5b\xdc\x65\x65\xd3\xec\x32\xdd\x0f\xab\x35\x08\xce\x48\x5a\x7a\x23\xbf\x55\x5a\x6c\x61\x96\x86\xac\x33\xdc\x93\xb9\x5a\x47\x49\x85\xe2\x5c\xb1\x71\xad\x4d\x4d\x3f\x70\x63\xcf\xd2\x73\x27\x4d\x3f\x18\x60\x37\xc1\xd0\x46\x0d\xa4\xbe\x5a\xc3\xa2\x5b\xce\xb9\x2c\x62\x25\xd8\x9b\x96\xf2\x90\x85\xc6\x13\x44\xa3\x1f\x88\x8e\x4c\x60\x34\xa4\x70\x5d\xba\x74\x31\x00\x09\x9a\x48\xba\x43\xcc\x65\x10\x0a\x5d\x5d\x2d\xec\x21\xf2\x41\xe0\xc9\x8f\xbf\x62\x61\x10\x78\x52\xb3\x6b\xe1\xdd\xfb\xcf\x8b\x55\xa6\x84\x32\x07\x7f\xc8\xd6\x37\xcc\xc2\xd2\xf3\x89\xa4\x67\xc8\xb6\xf0\x58\x6f\x20\xc8\xaf\xaa\xb6\x4f\x0b\x8c\xd7\x70\x0b\x8f\x65\x55\x67\xbb\xdb\x66\x03\x65\xb9\xcb\xaa\xbd\x57\x7e\x51\x67\x4d\x5d\x3c\xc1\xfa\x27\x02\xff\x07\x54\x4d\xb3\x88\x64\x19\x0a\x6a\xe1\xb1\xd9\x67\xf5\x5d\xb3\x81\xe6\x36\x2b\xab\x22\xfc\xd6\xb7\xcd\x53\x28\xf5\x9b\x56\xc8\x52\x2b\xa4\x48\x6a\x76\x7a\x76\x67\x36\x7d\x89\x43\x09\x13\x23\xd1\x1a\x8c\xb1\x6e\x4c\xa0\xb5\x7c\x48\x53\x29\x79\xe1\x8f\xc8\x8c\xae\x57\x2e\x56\x3f\xe4\x33\xa1\x04\x76\x49\x2c\x0b\x3a\x2f\xa7\xfc\x39\xad\x7f\x4f\xaa\x36\xaa\xc3\x8e\x0b\xee\x38\xd9\xef\xa9\x1d\x08\xdd\x6c\xc8\x1e\x66\x23\xda\xd0\x3d\x6d\x9e\xdb\x3a\xc3\x09\xbf\x2a\x89\x2f\x36\x74\xb3\x75\xca\x50\x16\xa6\x7e\xe8\x29\x7b\x92\x96\x9c\xcd\x83\x06\x25\xb9\xb4\x90\xb9\x57\xf7\x7d\x64\x36\x12\xfb\x62\xe7\xa9\x85\x6d\x5f\xd5\xdb\xae\xd9\xd7\x35\x32\xdc\x6e\xef\xaa\x7d\xb1\x6b\xb0\xdc\x17\x7d\x57\x17\xe5\x0e\x57\xa1\x5f\xbc\x84\xcf\x97\xe5\xf9\xe2\x38\x1a\xd4\x63\x18\x6c\x2f\xc4\x8f\xa3\xb3\x60\xc8\xaa\xd9\x30\x8a\x75\x08\xf6\x83\x46\x37\xb6\x97\x11\xf0\xcb\x53\xa4\xe1\x73\x19\x55\xc7\x63\x59\x1e\x3a\x99\xe9\x78\x08\x6e\x0f\x68\xd8\xc8\x9f\x17\x57\xe7\x80\xc2\x12\xac\x81\x0f\x60\xc9\x6d\xe2\x74\xf6\x1c\x76\x68\xc9\xd7\x30\x5e\x71\xfe\xc1\x4f\x74\x09\x29\xc2\x92\xc6\x91\x16\xe9\x2e\xcf\x14\x17\x42\xc8\x9e\xa4\x72\xe4\x9f\x17\x9e\x03\x17\x14\xbe\x9a\xec\x59\x5f\xdf\x97\xe5\x85\xbb\x31\xdd\x75\xcb\xad\xe3\x86\x57\x26\xca\xa2\xc1\xfa\xb6\x43\x6c\xd8\xb0\xbf\xc3\x6e\xdf\x17\x0c\xf7\xbb\x5d\x3f\x60\xd3\xed\x76\xb4\x42\xe7\x0c\xef\x66\x17\xef\x08\x7a\x75\x06\x41\x92\x0b\xdf\x5c\x57\x5b\x88\xfd\x85\xcb\xbe\x85\x77\x0f\x0f\xe9\x70\xfe\xdd\x27\x28\x69\x36\x28\x2e\x5e\x7f\xbc\x7b\x78\xd8\xc0\x07\xff\x2f\xcb\xb2\x3f\x63\x3f\xf9\x3b\x9c\xcb\xe3\xa1\x47\x87\x96\x5c\x0b\xff\xf1\x8a\x7a\x20\xe7\x87\x63\x5c\xbb\x7c\x79\x85\xa1\x9a\x1c\x82\xf7\x84\x92\x0f\x64\xdd\x01\x67\x37\x2a\xd3\x02\x76\xfd\x2c\xfa\xd5\xff\x03\x00\x00\xff\xff\x28\x0e\xb7\x0c\x99\x0a\x00\x00"
func torchvision_vgg_11_bnYmlBytes() ([]byte, error) {
return bindataRead(
_torchvision_vgg_11_bnYml,
"TorchVision_VGG_11_BN.yml",
)
}
func torchvision_vgg_11_bnYml() (*asset, error) {
bytes, err := torchvision_vgg_11_bnYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "TorchVision_VGG_11_BN.yml", size: 2713, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _torchvision_vgg_13Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x4d\x6f\xdb\xba\x12\xdd\xfb\x57\x0c\xe0\x4d\xfb\xe0\x48\xb2\x64\x39\x89\x80\xf7\x80\x77\xbb\x48\xef\x26\xb8\x28\x8a\x76\x11\x04\xc6\x88\x1a\x49\xbc\xa5\x48\x82\xa4\x92\xb8\xbf\xfe\x82\x1f\xb6\x95\x7e\xdc\x36\x8b\x58\xe2\x9c\x19\x0e\xe7\x9c\x19\x4a\xe2\x44\x0d\x7c\x54\x86\x8d\x9f\xb8\xe5\x4a\x1e\x3e\xdd\xdd\x1d\xb6\x15\xac\xc1\x9b\x40\xf5\x70\x54\xb3\x81\x49\x75\x24\x56\xbd\xc1\x89\x9e\x95\xf9\xd2\xac\x00\x00\xa2\xf3\x5f\xc7\xe0\x0e\x6b\x38\x9b\xa1\x57\x06\xdc\x48\xc9\xcd\x63\x9f\xc8\xf8\xf0\x0d\x6c\xb3\xf2\x15\x34\x19\x80\x29\x69\x9d\x41\x2e\xdd\x6a\x81\x2d\x60\x7d\x46\x70\xd9\x2b\x33\xa1\x8b\xcf\x60\x69\x42\xe9\x38\x3b\xdb\xa3\x75\xc5\x94\x74\xc8\x25\x99\x06\xd6\x70\x7e\xb1\x30\x5b\xea\xc0\x29\xd0\x64\x3c\x32\xe6\x06\xda\x50\xc7\x99\x8f\x19\xd2\x5c\xc3\x34\x0b\xc7\xb5\x20\xd0\x02\x9d\x07\x5a\x60\x28\xa1\x25\xb0\x9a\x18\xef\x39\x75\x01\x89\x53\xb7\xdf\xc5\x3a\xf8\x3f\xa6\xe7\x06\x0c\x72\x6d\xd4\xdf\xc4\x5c\xce\xd0\x4c\xe2\x4a\x1f\x9d\xaf\x4d\x13\xc0\x57\x4c\xcf\x67\xfc\xf0\x1b\xf8\x21\xe1\xb5\x66\xfb\x9d\xa0\xdf\xdd\x2c\xc1\xcf\xee\xbf\xde\x6e\xe9\xd1\x91\x65\x86\x6b\x17\x08\xf8\x5f\x08\xf0\x71\xe4\x36\x95\x8b\x5b\x40\x30\xa4\x05\x67\x91\x08\xd5\x5f\x88\x86\xe8\xdb\x52\xe7\xf9\xf1\xcb\x9f\xee\xee\x40\xcf\xed\x09\x9d\x85\x70\xff\x17\xa1\xec\x57\x81\x6d\xea\xa2\xaf\x05\x7a\xd1\xc4\x1c\x70\xa9\x67\x07\x7c\xc2\x81\x2c\x48\x4f\xa9\xe0\x5f\x2f\x11\xad\x57\xe5\x33\x1e\x37\xc0\x33\xca\x60\xe2\x92\x5f\xb5\xe8\xd8\x48\xd6\xe7\x52\x5d\xb1\x11\xa5\x24\x01\x1f\xee\xfe\x38\x45\x51\x3d\xd8\x11\x35\xc1\x9b\x0a\x5e\xe0\x3d\xbc\xc0\xe7\xb7\x1b\x78\x1e\xc9\x10\xbc\x07\x94\x1d\x7c\x06\x34\x94\x32\x88\x2a\x69\x09\xd0\x81\x20\xb4\x0e\xca\x72\x97\xc1\xc7\x91\x4e\xf1\x46\x7c\xa2\x84\x11\x0a\xbb\x94\x9c\xf2\x95\x41\x39\x84\xa6\x79\x28\x36\xb0\x7d\x0c\xb1\xdd\x48\x72\x79\x90\xd9\x72\x39\xc0\x44\x28\xe1\xbf\xf0\x50\x64\xbb\x9b\x7a\x03\x45\xb6\xab\xf7\xe1\xa7\xd8\x47\x37\xeb\xba\x68\x2f\xcb\x5b\x6f\x28\xcb\x5d\xfc\xa9\x1f\x57\x86\x7a\x32\x24\x19\x59\xaf\xf1\xcb\x5b\x90\x37\x6a\xaf\xf6\x1c\x9e\xa9\xb5\xdc\x91\x7f\x24\xc7\xb2\xec\xc4\x8e\xdf\xfd\x75\x6f\x5e\xc1\xe8\x9c\xb6\x4d\x9e\x0f\xdc\x8d\x73\x9b\x31\x35\xe5\x49\x1b\xf9\x53\x18\x0b\x79\x2b\x54\x9b\x4f\x68\x1d\x99\x3c\x18\xd2\x7a\x24\x2f\x7f\x1a\x86\x4c\x1f\xbf\x89\x96\x42\x64\xca\x0c\x79\xa7\x98\xcd\xad\xc3\x56\xd0\x2b\x7f\x2e\x3b\x7a\xc9\x46\x37\x7d\x9b\x0a\x9a\x17\xfe\x14\x5c\x75\xd7\xe7\xdb\x5d\x71\x9b\x6d\xeb\x7a\x9f\xe9\xae\x5f\xad\x41\x70\x46\xd2\xd2\x2b\xf9\xad\xd2\x62\x03\xb3\x34\x64\x9d\xe1\x9e\xcc\xd5\x3a\x4a\x2a\x14\xe7\x82\x8d\x6b\x4d\x6a\xfa\x9e\x1b\x7b\x92\x9e\x3b\x6a\xfa\xc1\x00\xbb\x0a\x86\x26\x6a\x20\xf5\xd5\x1a\x16\xdd\x72\xca\x65\x11\x2b\xc1\x5e\xb5\x94\x87\x2c\x34\x9e\x20\x1a\xfd\x40\x74\x64\x02\xa3\x21\x85\xcb\xd2\xb9\x8b\x01\x48\xd0\x44\xd2\x1d\x62\x2e\xbd\x50\xe8\xaa\x72\x61\x0f\x91\x0f\x02\x8f\x7e\xfc\x15\x0b\x83\xc0\xa3\x9a\x5d\x03\xef\xde\x7f\x5e\xac\x32\x25\x94\x39\xf8\x43\x36\xbe\x61\x16\x96\x8e\x4f\x24\x3d\x43\xb6\x81\x87\x6a\x03\x41\x7e\x65\xb9\x7b\x5c\x60\xbc\x86\x1b\x78\xd8\x96\x55\xb6\xbf\xae\x37\xb0\xdd\xee\xb3\xf2\xc6\x2b\xbf\xa8\xb2\xba\x2a\x1e\x61\xfd\x13\x81\xff\x07\xca\xba\x5e\x44\xb2\x0c\x05\x35\xf0\x50\xdf\x64\xd5\x6d\xbd\x81\xfa\x3a\xdb\x96\x45\xf8\xad\xae\xeb\xc7\x50\xea\x57\xad\x90\xa5\x56\x48\x91\xd4\xec\xf4\xec\x4e\x6c\xfa\x12\x87\x12\x26\x46\xa2\x35\x18\x63\xdd\x98\x40\x6b\x79\x9f\xa6\x52\xf2\xc2\x1f\x91\x19\x5d\x2f\x5c\xac\x7e\xc8\x67\x42\x09\x6c\x93\x58\x16\x74\x9e\x4f\xf9\x73\x5a\xff\x9d\x54\x6d\x54\x8b\x2d\x17\xdc\x71\xb2\xdf\x53\xdb\x13\xba\xd9\x90\x3d\xcc\x46\x34\xa1\x7b\x9a\x3c\xb7\x55\x86\x13\x7e\x55\x12\x9f\x6d\xe8\x66\xeb\x94\xa1\x2c\x4c\xfd\xd0\x53\xf6\x28\x2d\x39\x9b\x07\x0d\x4a\x72\x69\x21\x73\x2f\xee\xfb\xc8\x6c\x24\xf6\xc5\xce\x53\x03\xbb\xae\xac\x76\x6d\x7d\x53\x55\xc8\x70\xb7\xbb\x2d\x6f\x8a\x7d\x8d\xdb\x9b\xa2\x6b\xab\x62\xbb\xc7\x55\xe8\x17\x2f\xe1\xd3\x65\x79\xba\x38\x06\x83\x7a\x0c\x83\xed\x99\xf8\x30\x3a\x0b\x86\xac\x9a\x0d\xa3\x58\x87\x60\x3f\x68\x74\x63\x73\x1e\x01\xbf\x3c\x45\x1a\x3e\xe7\x51\x35\x0c\xdb\x2a\xd3\xf1\x04\xdc\x1e\xd0\xb0\x91\x3f\x2d\xee\xcd\x1e\x85\x25\x58\x03\xef\xc1\x92\xdb\xc4\xd1\xec\x09\x6c\xd1\x92\x2f\x60\xbc\xdf\xfc\x83\x1f\xe7\x12\x52\x84\x25\x87\x23\x2d\x72\x5d\x1e\x28\x2e\x84\x90\x1d\x49\xe5\xc8\x3f\x2f\x3c\x7b\x2e\x28\x7c\x32\xd9\x93\xb8\xbe\xaf\xc9\x33\x77\x63\xba\xe8\x96\x5b\xc7\x0d\x2f\x34\xf4\x37\xbb\x76\x5f\xf4\x5d\x7b\x5b\x16\x7d\x7d\xbb\xbd\x6e\x59\x87\xb8\x2f\xae\xbb\xed\xee\xba\xed\xba\x15\x3a\x67\x78\x3b\xbb\x78\x41\xd0\x8b\x33\x08\x92\x5c\xf8\xe0\xba\xd8\x42\xec\x2f\x5c\x76\x0d\xbc\xbb\xbf\x4f\x87\xf3\xef\x3e\x41\x49\xb3\x41\x71\xf6\x7a\xf3\xee\xfe\x7e\x03\x1f\xfc\xbf\x2c\xcb\xde\xc6\x66\xf2\x17\x38\x97\xc3\xa1\x43\x87\x96\x5c\x03\x7f\x7a\x39\xdd\x93\xf3\x93\x31\xae\x9d\x3f\xbb\xc2\x44\x4d\x0e\xc1\x7b\x42\xc9\x7b\xb2\xee\x80\xb3\x1b\x95\x69\x00\xdb\x6e\x16\xdd\xea\x9f\x00\x00\x00\xff\xff\xcb\xd7\x3e\x30\x93\x0a\x00\x00"
func torchvision_vgg_13YmlBytes() ([]byte, error) {
return bindataRead(
_torchvision_vgg_13Yml,
"TorchVision_VGG_13.yml",
)
}
func torchvision_vgg_13Yml() (*asset, error) {
bytes, err := torchvision_vgg_13YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "TorchVision_VGG_13.yml", size: 2707, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _torchvision_vgg_13_bnYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x4d\x6f\xdb\x3c\x12\xbe\xfb\x57\x0c\xe0\x4b\xbb\x70\x24\x59\xb2\x1c\x47\xc0\x2e\xb0\xed\x21\xdd\x4b\xb0\x28\x8a\xf6\x10\x04\xc6\x88\x1a\x59\x7c\x4b\x91\x04\x49\x25\x76\x7f\xfd\x0b\x7e\xd8\x56\xfa\xf1\xb6\x39\xc4\x12\xe7\x99\xe1\x70\x9e\x67\x86\x92\x38\x52\x03\x9f\x94\x61\xc3\x67\x6e\xb9\x92\xfb\xcf\xf7\xf7\xfb\x75\xb5\x7f\xf7\x00\x4b\xf0\x56\x50\x3d\x9c\xd4\x64\x60\x54\x1d\x89\x45\x6f\x70\xa4\x17\x65\xbe\x36\x0b\x00\x80\xe8\xff\xff\x53\x88\x00\x4b\xb8\x98\xa1\x57\x06\xdc\x40\xc9\xcd\x63\x9f\xc9\xf8\x1d\x1a\x58\x67\xe5\x2b\x68\x32\x00\x53\xd2\x3a\x83\x5c\xba\xc5\x0c\x5b\xc0\xf2\x82\xe0\xb2\x57\x66\x44\x17\x9f\xc1\xd2\x88\xd2\x71\x76\xb1\x47\xeb\x82\x29\xe9\x90\x4b\x32\x0d\x2c\xe1\xf2\x62\x61\xb2\xd4\x81\x53\xa0\xc9\x78\x64\xcc\x0d\xb4\xa1\x8e\x33\x1f\x33\xa4\xb9\x84\x71\x12\x8e\x6b\x41\xa0\x05\x3a\x0f\xb4\xc0\x50\x42\x4b\x60\x35\x31\xde\x73\xea\x02\x12\xc7\x6e\xbb\x89\x75\xf0\x7f\x4c\x4f\x0d\x18\xe4\xda\xa8\xbf\x88\xb9\x9c\xa1\x19\xc5\x8d\x3e\x39\x5f\x9b\x26\x80\x6f\x98\x9e\x2e\xf8\xc3\x1f\xe0\x0f\x09\xaf\x35\xdb\x6e\x04\xfd\xe9\x66\x09\x7e\x71\xff\xfd\x76\x73\x8f\x8e\x2c\x33\x5c\xbb\x40\xc0\x7f\x42\x80\x4f\x03\xb7\xa9\x5c\xdc\x02\x82\x21\x2d\x38\x8b\x44\xa8\xfe\x4a\x34\x44\xdf\x96\x3a\xcf\x8f\x5f\xfe\x7c\x7f\x0f\x7a\x6a\xcf\xe8\x2c\x84\xfb\xaf\x08\x65\xbf\x09\x6c\x53\x17\x7d\x2d\xd0\x51\x13\x73\xc0\xa5\x9e\x1c\xf0\x11\x0f\x64\x41\x7a\x4a\x05\xff\x76\x8d\x68\xbd\x2a\x5f\xf0\xb4\x02\x9e\x51\x06\x23\x97\xfc\xa6\x45\xc7\x06\xb2\x3e\x97\xea\x86\x0d\x28\x25\x09\xf8\x78\xff\xee\x1c\x45\xf5\x60\x07\xd4\x04\x6f\x2a\x38\xc2\x07\x38\xc2\x97\xb7\x2b\x78\x19\xc8\x10\x7c\x00\x94\x1d\x7c\x01\x34\x94\x32\x88\x2a\x69\x09\xd0\x81\x20\xb4\x0e\xca\x72\x93\xc1\xa7\x81\xce\xf1\x06\x7c\xa6\x84\x11\x0a\xbb\x94\x9c\xf2\x95\x41\x79\x08\x4d\xf3\x58\xac\x60\xfd\x14\x62\xbb\x81\xe4\xfc\x20\x93\xe5\xf2\x00\x23\xa1\x84\x7f\xc3\x63\x91\x6d\x76\xf5\x0a\x8a\x6c\x53\x6f\xc3\x4f\xb1\x8d\x6e\xd6\x75\xd1\x5e\x96\x77\xde\x50\x96\x9b\xf8\x53\x3f\x2d\x0c\xf5\x64\x48\x32\xb2\x5e\xe3\xd7\xb7\x20\x6f\xd4\x5e\xed\x39\xbc\x50\x6b\xb9\x23\xff\x48\x8e\x65\xd9\x99\x1d\xbf\xfb\xeb\xde\xbc\x81\xc1\x39\x6d\x9b\x3c\x3f\x70\x37\x4c\x6d\xc6\xd4\x98\x27\x6d\xe4\xcf\x61\x32\xe4\xad\x50\x6d\x3e\xa2\x75\x64\xf2\x60\x48\xeb\x91\xbc\xfc\xf9\x70\xc8\xf4\xe9\xbb\x68\x29\x44\xa6\xcc\x21\xef\x14\xb3\xb9\x75\xd8\x0a\x7a\xe5\xcf\x65\x47\xc7\x6c\x70\xe3\xf7\xa9\xa0\x39\xf2\xe7\xe0\xaa\xbb\x3e\x5f\x6f\x8a\xbb\x6c\x5d\xd7\xdb\x4c\x77\xfd\x62\x09\x82\x33\x92\x96\x5e\xc9\x6f\x91\x16\x1b\x98\xa4\x21\xeb\x0c\xf7\x64\x2e\x96\x51\x52\xa1\x38\x57\x6c\x5c\x6b\x52\xd3\xf7\xdc\xd8\xb3\xf4\xdc\x49\xd3\x4f\x06\xd8\x4d\x30\x34\x51\x03\xa9\xaf\x96\x30\xeb\x96\x73\x2e\xb3\x58\x09\xf6\xaa\xa5\x3c\x64\xa6\xf1\x04\xd1\xe8\x07\xa2\x23\x13\x18\x0d\x29\x5c\x97\x2e\x5d\x0c\x40\x82\x46\x92\x6e\x1f\x73\xe9\x85\x42\x57\x95\x33\x7b\x88\xbc\x17\x78\xf2\xe3\xaf\x98\x19\x04\x9e\xd4\xe4\x1a\x78\xff\xe1\xcb\x6c\x95\x29\xa1\xcc\xde\x1f\xb2\xf1\x0d\x33\xb3\x74\x7c\x24\xe9\x19\xb2\x0d\x3c\x56\x2b\x08\xf2\x2b\xcb\xcd\xd3\x0c\xe3\x35\xdc\xc0\xe3\xba\xac\xb2\xed\x6d\xbd\x82\xf5\x7a\x9b\x95\x3b\xaf\xfc\xa2\xca\xea\xaa\x78\x82\xe5\x2f\x04\xfe\x2f\x28\xeb\x7a\x16\xc9\x32\x14\xd4\xc0\x63\xbd\xcb\xaa\xbb\x7a\x05\xf5\x6d\xb6\x2e\x8b\xf0\x5b\xdd\xd6\x4f\xa1\xd4\xaf\x5a\x21\x4b\xad\x90\x22\xa9\xc9\xe9\xc9\x9d\xd9\xf4\x25\x0e\x25\x4c\x8c\x44\x6b\x30\xc6\xba\x31\x81\xd6\xf2\x3e\x4d\xa5\xe4\x85\x3f\x23\x33\xba\x5e\xb9\x58\xfc\x94\xcf\x84\x12\xd8\x26\xb1\xcc\xe8\xbc\x9c\xf2\xd7\xb4\xfe\x33\xa9\xda\xa8\x16\x5b\x2e\xb8\xe3\x64\x7f\xa4\xb6\x27\x74\x93\x21\xbb\x9f\x8c\x68\x42\xf7\x34\x79\x6e\xab\x0c\x47\xfc\xa6\x24\xbe\xd8\xd0\xcd\xd6\x29\x43\x59\x98\xfa\xa1\xa7\xec\x49\x5a\x72\x36\x0f\x1a\x94\xe4\xd2\x42\xe6\x8e\xee\xc7\xc8\x6c\x20\xf6\xd5\x4e\x63\x03\x9b\xae\xac\x36\x6d\xbd\xab\x2a\x64\xb8\xd9\xdc\x95\xbb\x62\x5b\xe3\x7a\x57\x74\x6d\x55\xac\xb7\xb8\x08\xfd\xe2\x25\x7c\xbe\x2c\xcf\x17\xc7\xc1\xa0\x1e\xc2\x60\x7b\x21\x7e\x18\x9c\x05\x43\x56\x4d\x86\x51\xac\x43\xb0\xef\x35\xba\xa1\xb9\x8c\x80\xdf\x9e\x22\x0d\x9f\xcb\xa8\x3a\x1c\xd6\xd5\xbe\x95\x99\x8e\x87\xe0\x76\x8f\x86\x0d\xfc\x79\x76\x75\xf6\x28\x2c\xc1\x12\x78\x0f\x96\xdc\x2a\x4e\x67\xcf\x61\x8b\x96\x7c\x0d\xe3\x15\xe7\x1f\xfc\x44\x97\x90\x22\xcc\x69\x1c\x68\x96\xee\xfc\x4c\x71\x21\x84\xec\x48\x2a\x47\xfe\x79\xe6\xd9\x73\x41\xe1\xab\xc9\x9e\xf5\xf5\x63\x59\x5e\xb8\x1b\xd2\x5d\x37\xdf\x3a\x6e\x78\x65\x02\xfb\xba\xaf\xb1\xac\x76\xb7\xb7\x8c\xb0\xdd\xdc\xee\xaa\x9e\x15\xf5\xae\x28\xee\x4a\x56\xf5\xb7\x0b\x74\xce\xf0\x76\x72\xf1\x8e\xa0\xa3\x33\x08\x92\x5c\xf8\xe6\xba\xda\x42\xec\xaf\x5c\x76\x0d\xbc\x7f\x78\x48\x87\xf3\xef\x3e\x41\x49\x93\x41\x71\xf1\x7a\xf3\xfe\xe1\x61\x05\x1f\xfd\xbf\x2c\xcb\xde\xc6\x7e\xf2\x77\x38\x97\x87\x7d\x87\x0e\x2d\xb9\x06\xfe\xe7\x15\xf5\x40\xce\x0f\xc7\xb8\x76\xf9\xf2\x0a\x43\x35\x39\x04\xef\x11\x25\xef\xc9\xba\x3d\x4e\x6e\x50\xa6\x01\x6c\xbb\x49\x74\x8b\xbf\x03\x00\x00\xff\xff\xed\x44\xb1\x20\x99\x0a\x00\x00"
func torchvision_vgg_13_bnYmlBytes() ([]byte, error) {
return bindataRead(
_torchvision_vgg_13_bnYml,
"TorchVision_VGG_13_BN.yml",
)
}
func torchvision_vgg_13_bnYml() (*asset, error) {
bytes, err := torchvision_vgg_13_bnYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "TorchVision_VGG_13_BN.yml", size: 2713, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _torchvision_vgg_16Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\xcb\x6f\xdb\x3e\x12\xbe\xfb\xaf\x18\xc0\x97\x5f\x17\x8e\x24\xeb\xe1\x38\x02\x76\x81\xdd\x1e\xd2\xbd\x04\x8b\xa2\x68\x0f\x41\x60\x8c\xa8\x91\xc5\x2d\x45\x12\x24\x95\xc4\xfd\xeb\x17\x7c\xd8\x56\xfa\xd8\x36\x87\x58\xe2\x7c\x33\x1c\xce\xf7\xcd\x50\x12\x27\x6a\xe1\x93\x32\x6c\xfc\xcc\x2d\x57\xf2\xf0\xf9\xfe\xfe\xb0\xdd\xc1\x1a\xbc\x09\xd4\x00\x27\x35\x1b\x98\x54\x4f\x62\x35\x18\x9c\xe8\x45\x99\xaf\xed\x0a\x00\x20\x3a\xff\xe7\x14\xdc\x61\x0d\x17\x33\x0c\xca\x80\x1b\x29\xb9\x79\xec\x33\x19\x1f\xbe\x85\x6d\x56\xbe\x81\x26\x03\x30\x25\xad\x33\xc8\xa5\x5b\x2d\xb0\x05\xac\x2f\x08\x2e\x07\x65\x26\x74\xf1\x19\x2c\x4d\x28\x1d\x67\x17\x7b\xb4\xae\x98\x92\x0e\xb9\x24\xd3\xc2\x1a\x2e\x2f\x16\x66\x4b\x3d\x38\x05\x9a\x8c\x47\xc6\xdc\x40\x1b\xea\x39\xf3\x31\x43\x9a\x6b\x98\x66\xe1\xb8\x16\x04\x5a\xa0\xf3\x40\x0b\x0c\x25\x74\x04\x56\x13\xe3\x03\xa7\x3e\x20\x71\xea\x77\x75\xac\x83\xff\x63\x7a\x6e\xc1\x20\xd7\x46\xfd\x97\x98\xcb\x19\x9a\x49\xdc\xe8\x93\xf3\xb5\x69\x03\xf8\x86\xe9\xf9\x82\x3f\xfe\x01\xfe\x98\xf0\x5a\xb3\x5d\x2d\xe8\x4f\x37\x4b\xf0\x8b\xfb\xef\xb7\x5b\x7a\xf4\x64\x99\xe1\xda\x05\x02\xfe\x11\x02\x7c\x1a\xb9\x4d\xe5\xe2\x16\x10\x0c\x69\xc1\x59\x24\x42\x0d\x57\xa2\x21\xfa\x76\xd4\x7b\x7e\xfc\xf2\xe7\xfb\x7b\xd0\x73\x77\x46\x67\x21\xdc\x3f\x45\x28\xfb\x4d\x60\x9b\xfa\xe8\x6b\x81\x5e\x35\x31\x07\x5c\xea\xd9\x01\x9f\xf0\x48\x16\xa4\xa7\x54\xf0\x6f\xd7\x88\xd6\xab\xf2\x05\x4f\x1b\xe0\x19\x65\x30\x71\xc9\x6f\x3a\x74\x6c\x24\xeb\x73\xa9\x6e\xd8\x88\x52\x92\x80\x8f\xf7\xff\x3a\x47\x51\x03\xd8\x11\x35\xc1\x5f\x15\xbc\xc2\x07\x78\x85\x2f\xef\x36\xf0\x32\x92\x21\xf8\x00\x28\x7b\xf8\x02\x68\x28\x65\x10\x55\xd2\x11\xa0\x03\x41\x68\x1d\x94\x65\x9d\xc1\xa7\x91\xce\xf1\x46\x7c\xa6\x84\x11\x0a\xfb\x94\x9c\xf2\x95\x41\x79\x0c\x4d\xf3\x58\x6c\x60\xfb\x14\x62\xbb\x91\xe4\xf2\x20\xb3\xe5\xf2\x08\x13\xa1\x84\xbf\xc3\x63\x91\xd5\xfb\x66\x03\x45\x56\x37\xbb\xf0\x53\xec\xa2\x9b\x75\x7d\xb4\x97\xe5\x9d\x37\x94\x65\x1d\x7f\x9a\xa7\x95\xa1\x81\x0c\x49\x46\xd6\x6b\xfc\xfa\x16\xe4\x8d\xda\xab\x3d\x87\x17\xea\x2c\x77\xe4\x1f\xc9\xb1\x2c\x3b\xb3\xe3\x77\x7f\xdb\x9b\x37\x30\x3a\xa7\x6d\x9b\xe7\x47\xee\xc6\xb9\xcb\x98\x9a\xf2\xa4\x8d\xfc\x39\x8c\x85\xbc\x13\xaa\xcb\x27\xb4\x8e\x4c\x1e\x0c\x69\x3d\x92\x97\x3f\x1f\x8f\x99\x3e\x7d\x17\x2d\x85\xc8\x94\x39\xe6\xbd\x62\x36\xb7\x0e\x3b\x41\x6f\xfc\xb9\xec\xe9\x35\x1b\xdd\xf4\x7d\x2a\x68\x5e\xf9\x73\x70\xd5\xfd\x90\x6f\xeb\xe2\x2e\xdb\x36\xcd\x2e\xd3\xfd\xb0\x5a\x83\xe0\x8c\xa4\xa5\x37\xf2\x5b\xa5\xc5\x16\x66\x69\xc8\x3a\xc3\x3d\x99\xab\x75\x94\x54\x28\xce\x15\x1b\xd7\xda\xd4\xf4\x03\x37\xf6\x2c\x3d\x77\xd2\xf4\x93\x01\x76\x13\x0c\x6d\xd4\x40\xea\xab\x35\x2c\xba\xe5\x9c\xcb\x22\x56\x82\xbd\x69\x29\x0f\x59\x68\x3c\x41\x34\xfa\x81\xe8\xc8\x04\x46\x43\x0a\xd7\xa5\x4b\x17\x03\x90\xa0\x89\xa4\x3b\xc4\x5c\x06\xa1\xd0\x55\xe5\xc2\x1e\x22\x1f\x04\x9e\xfc\xf8\x2b\x16\x06\x81\x27\x35\xbb\x16\xde\x7f\xf8\xb2\x58\x65\x4a\x28\x73\xf0\x87\x6c\x7d\xc3\x2c\x2c\x3d\x9f\x48\x7a\x86\x6c\x0b\x8f\xd5\x06\x82\xfc\xca\xb2\x7e\x5a\x60\xbc\x86\x5b\x78\xdc\x96\x55\xb6\xbb\x6d\x36\xb0\xdd\xee\xb2\x72\xef\x95\x5f\x54\x59\x53\x15\x4f\xb0\xfe\x85\xc0\xff\x06\x65\xd3\x2c\x22\x59\x86\x82\x5a\x78\x6c\xf6\x59\x75\xd7\x6c\xa0\xb9\xcd\xb6\x65\x11\x7e\xab\xdb\xe6\x29\x94\xfa\x4d\x2b\x64\xa9\x15\x52\x24\x35\x3b\x3d\xbb\x33\x9b\xbe\xc4\xa1\x84\x89\x91\x68\x0d\xc6\x58\x37\x26\xd0\x5a\x3e\xa4\xa9\x94\xbc\xf0\x67\x64\x46\xd7\x2b\x17\xab\x9f\xf2\x99\x50\x02\xbb\x24\x96\x05\x9d\x97\x53\xfe\x9a\xd6\xff\x4f\xaa\x36\xaa\xc3\x8e\x0b\xee\x38\xd9\x1f\xa9\x1d\x08\xdd\x6c\xc8\x1e\x66\x23\xda\xd0\x3d\x6d\x9e\xdb\x2a\xc3\x09\xbf\x29\x89\x2f\x36\x74\xb3\x75\xca\x50\x16\xa6\x7e\xe8\x29\x7b\x92\x96\x9c\xcd\x83\x06\x25\xb9\xb4\x90\xb9\x57\xf7\x63\x64\x36\x12\xfb\x6a\xe7\xa9\x85\xba\x2f\xab\xba\x6b\xf6\x55\x85\x0c\xeb\xfa\xae\xdc\x17\xbb\x06\xb7\xfb\xa2\xef\xaa\x62\xbb\xc3\x55\xe8\x17\x2f\xe1\xf3\x65\x79\xbe\x38\x8e\x06\xf5\x18\x06\xdb\x0b\xf1\xe3\xe8\x2c\x18\xb2\x6a\x36\x8c\x62\x1d\x82\xfd\xa0\xd1\x8d\xed\x65\x04\xfc\xf6\x14\x69\xf8\x5c\x46\xd5\xf1\xb8\xdd\x65\x3a\x9e\x80\xdb\x03\x1a\x36\xf2\xe7\xc5\xbd\x39\xa0\xb0\x04\x6b\xe0\x03\x58\x72\x9b\x38\x9a\x3d\x81\x1d\x5a\xf2\x05\x8c\xf7\x9b\x7f\xf0\xe3\x5c\x42\x8a\xb0\xe4\x70\xa4\x45\xae\xcb\x03\xc5\x85\x10\xb2\x27\xa9\x1c\xf9\xe7\x85\xe7\xc0\x05\x85\x4f\x26\x7b\x16\xd7\x8f\x35\x79\xe1\x6e\x4c\x17\xdd\x72\xeb\xb8\xe1\x95\x86\xe2\xae\x1b\x9a\xbb\x7d\xdd\x14\xfb\xba\xae\x68\x7f\x8b\x78\x4b\xbb\x7d\xd1\xdd\x51\x53\xf6\xb7\xbb\x15\x3a\x67\x78\x37\xbb\x78\x41\xd0\xab\x33\x08\x92\x5c\xf8\xe0\xba\xda\x42\xec\xaf\x5c\xf6\x2d\xbc\x7f\x78\x48\x87\xf3\xef\x3e\x41\x49\xb3\x41\x71\xf1\xfa\xeb\xfd\xc3\xc3\x06\x3e\xfa\x7f\x59\x96\xbd\x8b\xcd\xe4\x2f\x70\x2e\x8f\x87\x1e\x1d\x5a\x72\x2d\xfc\xdb\xcb\xe9\x81\x9c\x9f\x8c\x71\xed\xf2\xd9\x15\x26\x6a\x72\x08\xde\x13\x4a\x3e\x90\x75\x07\x9c\xdd\xa8\x4c\x0b\xd8\xf5\xb3\xe8\x57\xff\x0b\x00\x00\xff\xff\xc2\x14\x78\x4c\x93\x0a\x00\x00"
func torchvision_vgg_16YmlBytes() ([]byte, error) {
return bindataRead(
_torchvision_vgg_16Yml,
"TorchVision_VGG_16.yml",
)
}
func torchvision_vgg_16Yml() (*asset, error) {
bytes, err := torchvision_vgg_16YmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "TorchVision_VGG_16.yml", size: 2707, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _torchvision_vgg_16_bnYml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x4d\x6f\xdb\x3c\x12\xbe\xfb\x57\x0c\xe0\x4b\xbb\x70\x24\x59\xb2\x1c\x47\xc0\x2e\xb0\xed\x21\xdd\x4b\xb0\x28\x8a\xf6\x10\x04\xc6\x88\x1a\x59\x7c\x4b\x91\x04\x49\x25\x76\x7f\xfd\x0b\x7e\xd8\x56\xfa\xf1\xb6\x39\xc4\x12\xe7\x99\xe1\x70\x9e\x67\x86\x92\x38\x52\x03\x9f\x94\x61\xc3\x67\x6e\xb9\x92\xfb\xcf\xf7\xf7\xfb\xf5\x76\xff\xee\x01\x96\xe0\xad\xa0\x7a\x38\xa9\xc9\xc0\xa8\x3a\x12\x8b\xde\xe0\x48\x2f\xca\x7c\x6d\x16\x00\x00\xd1\xff\xff\xa7\x10\x01\x96\x70\x31\x43\xaf\x0c\xb8\x81\x92\x9b\xc7\x3e\x93\xf1\x3b\x34\xb0\xce\xca\x57\xd0\x64\x00\xa6\xa4\x75\x06\xb9\x74\x8b\x19\xb6\x80\xe5\x05\xc1\x65\xaf\xcc\x88\x2e\x3e\x83\xa5\x11\xa5\xe3\xec\x62\x8f\xd6\x05\x53\xd2\x21\x97\x64\x1a\x58\xc2\xe5\xc5\xc2\x64\xa9\x03\xa7\x40\x93\xf1\xc8\x98\x1b\x68\x43\x1d\x67\x3e\x66\x48\x73\x09\xe3\x24\x1c\xd7\x82\x40\x0b\x74\x1e\x68\x81\xa1\x84\x96\xc0\x6a\x62\xbc\xe7\xd4\x05\x24\x8e\xdd\x76\x13\xeb\xe0\xff\x98\x9e\x1a\x30\xc8\xb5\x51\x7f\x11\x73\x39\x43\x33\x8a\x1b\x7d\x72\xbe\x36\x4d\x00\xdf\x30\x3d\x5d\xf0\x87\x3f\xc0\x1f\x12\x5e\x6b\xb6\xdd\x08\xfa\xd3\xcd\x12\xfc\xe2\xfe\xfb\xed\xe6\x1e\x1d\x59\x66\xb8\x76\x81\x80\xff\x84\x00\x9f\x06\x6e\x53\xb9\xb8\x05\x04\x43\x5a\x70\x16\x89\x50\xfd\x95\x68\x88\xbe\x2d\x75\x9e\x1f\xbf\xfc\xf9\xfe\x1e\xf4\xd4\x9e\xd1\x59\x08\xf7\x5f\x11\xca\x7e\x13\xd8\xa6\x2e\xfa\x5a\xa0\xa3\x26\xe6\x80\x4b\x3d\x39\xe0\x23\x1e\xc8\x82\xf4\x94\x0a\xfe\xed\x1a\xd1\x7a\x55\xbe\xe0\x69\x05\x3c\xa3\x0c\x46\x2e\xf9\x4d\x8b\x8e\x0d\x64\x7d\x2e\xd5\x0d\x1b\x50\x4a\x12\xf0\xf1\xfe\xdd\x39\x8a\xea\xc1\x0e\xa8\x09\xde\x54\x70\x84\x0f\x70\x84\x2f\x6f\x57\xf0\x32\x90\x21\xf8\x00\x28\x3b\xf8\x02\x68\x28\x65\x10\x55\xd2\x12\xa0\x03\x41\x68\x1d\x94\xe5\x26\x83\x4f\x03\x9d\xe3\x0d\xf8\x4c\x09\x23\x14\x76\x29\x39\xe5\x2b\x83\xf2\x10\x9a\xe6\xb1\x58\xc1\xfa\x29\xc4\x76\x03\xc9\xf9\x41\x26\xcb\xe5\x01\x46\x42\x09\xff\x86\xc7\x22\xdb\xec\xea\x15\x14\xd9\xa6\xde\x86\x9f\x62\x1b\xdd\xac\xeb\xa2\xbd\x2c\xef\xbc\xa1\x2c\x37\xf1\xa7\x7e\x5a\x18\xea\xc9\x90\x64\x64\xbd\xc6\xaf\x6f\x41\xde\xa8\xbd\xda\x73\x78\xa1\xd6\x72\x47\xfe\x91\x1c\xcb\xb2\x33\x3b\x7e\xf7\xd7\xbd\x79\x03\x83\x73\xda\x36\x79\x7e\xe0\x6e\x98\xda\x8c\xa9\x31\x4f\xda\xc8\x9f\xc3\x64\xc8\x5b\xa1\xda\x7c\x44\xeb\xc8\xe4\xc1\x90\xd6\x23\x79\xf9\xf3\xe1\x90\xe9\xd3\x77\xd1\x52\x88\x4c\x99\x43\xde\x29\x66\x73\xeb\xb0\x15\xf4\xca\x9f\xcb\x8e\x8e\xd9\xe0\xc6\xef\x53\x41\x73\xe4\xcf\xc1\x55\x77\x7d\xbe\xde\x14\x77\xd9\xba\xae\xb7\x99\xee\xfa\xc5\x12\x04\x67\x24\x2d\xbd\x92\xdf\x22\x2d\x36\x30\x49\x43\xd6\x19\xee\xc9\x5c\x2c\xa3\xa4\x42\x71\xae\xd8\xb8\xd6\xa4\xa6\xef\xb9\xb1\x67\xe9\xb9\x93\xa6\x9f\x0c\xb0\x9b\x60\x68\xa2\x06\x52\x5f\x2d\x61\xd6\x2d\xe7\x5c\x66\xb1\x12\xec\x55\x4b\x79\xc8\x4c\xe3\x09\xa2\xd1\x0f\x44\x47\x26\x30\x1a\x52\xb8\x2e\x5d\xba\x18\x80\x04\x8d\x24\xdd\x3e\xe6\xd2\x0b\x85\xae\x2a\x67\xf6\x10\x79\x2f\xf0\xe4\xc7\x5f\x31\x33\x08\x3c\xa9\xc9\x35\xf0\xfe\xc3\x97\xd9\x2a\x53\x42\x99\xbd\x3f\x64\xe3\x1b\x66\x66\xe9\xf8\x48\xd2\x33\x64\x1b\x78\xac\x56\x10\xe4\x57\x96\x9b\xa7\x19\xc6\x6b\xb8\x81\xc7\x75\x59\x65\xdb\xdb\x7a\x05\xeb\xf5\x36\x2b\x77\x5e\xf9\x45\x95\xd5\x55\xf1\x04\xcb\x5f\x08\xfc\x5f\x50\xd6\xf5\x2c\x92\x65\x28\xa8\x81\xc7\x7a\x97\x55\x77\xf5\x0a\xea\xdb\x6c\x5d\x16\xe1\xb7\xba\xad\x9f\x42\xa9\x5f\xb5\x42\x96\x5a\x21\x45\x52\x93\xd3\x93\x3b\xb3\xe9\x4b\x1c\x4a\x98\x18\x89\xd6\x60\x8c\x75\x63\x02\xad\xe5\x7d\x9a\x4a\xc9\x0b\x7f\x46\x66\x74\xbd\x72\xb1\xf8\x29\x9f\x09\x25\xb0\x4d\x62\x99\xd1\x79\x39\xe5\xaf\x69\xfd\x67\x52\xb5\x51\x2d\xb6\x5c\x70\xc7\xc9\xfe\x48\x6d\x4f\xe8\x26\x43\x76\x3f\x19\xd1\x84\xee\x69\xf2\xdc\x56\x19\x8e\xf8\x4d\x49\x7c\xb1\xa1\x9b\xad\x53\x86\xb2\x30\xf5\x43\x4f\xd9\x93\xb4\xe4\x6c\x1e\x34\x28\xc9\xa5\x85\xcc\x1d\xdd\x8f\x91\xd9\x40\xec\xab\x9d\xc6\x06\x36\x5d\x59\x6d\xda\x7a\x57\x55\xc8\x70\xb3\xb9\x2b\x77\xc5\xb6\xc6\xf5\xae\xe8\xda\xaa\x58\x6f\x71\x11\xfa\xc5\x4b\xf8\x7c\x59\x9e\x2f\x8e\x83\x41\x3d\x84\xc1\xf6\x42\xfc\x30\x38\x0b\x86\xac\x9a\x0c\xa3\x58\x87\x60\xdf\x6b\x74\x43\x73\x19\x01\xbf\x3d\x45\x1a\x3e\x97\x51\x75\x38\xac\xb7\xfb\x56\x66\x3a\x1e\x82\xdb\x3d\x1a\x36\xf0\xe7\xd9\xd5\xd9\xa3\xb0\x04\x4b\xe0\x3d\x58\x72\xab\x38\x9d\x3d\x87\x2d\x5a\xf2\x35\x8c\x57\x9c\x7f\xf0\x13\x5d\x42\x8a\x30\xa7\x71\xa0\x59\xba\xf3\x33\xc5\x85\x10\xb2\x23\xa9\x1c\xf9\xe7\x99\x67\xcf\x05\x85\xaf\x26\x7b\xd6\xd7\x8f\x65\x79\xe1\x6e\x48\x77\xdd\x7c\xeb\xb8\xe1\x95\x09\x6a\xa9\xec\x8b\xdb\xdb\x4d\xd1\xed\xd6\x77\x74\xbb\x69\xbb\xbe\xea\x7b\xd6\x6e\x77\xb7\xbb\xa2\xa7\x05\x3a\x67\x78\x3b\xb9\x78\x47\xd0\xd1\x19\x04\x49\x2e\x7c\x73\x5d\x6d\x21\xf6\x57\x2e\xbb\x06\xde\x3f\x3c\xa4\xc3\xf9\x77\x9f\xa0\xa4\xc9\xa0\xb8\x78\xbd\x79\xff\xf0\xb0\x82\x8f\xfe\x5f\x96\x65\x6f\x63\x3f\xf9\x3b\x9c\xcb\xc3\xbe\x43\x87\x96\x5c\x03\xff\xf3\x8a\x7a\x20\xe7\x87\x63\x5c\xbb\x7c\x79\x85\xa1\x9a\x1c\x82\xf7\x88\x92\xf7\x64\xdd\x1e\x27\x37\x28\xd3\x00\xb6\xdd\x24\xba\xc5\xdf\x01\x00\x00\xff\xff\x15\x6c\x13\xdd\x99\x0a\x00\x00"
func torchvision_vgg_16_bnYmlBytes() ([]byte, error) {
return bindataRead(
_torchvision_vgg_16_bnYml,
"TorchVision_VGG_16_BN.yml",
)
}
func torchvision_vgg_16_bnYml() (*asset, error) {
bytes, err := torchvision_vgg_16_bnYmlBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "TorchVision_VGG_16_BN.yml", size: 2713, mode: os.FileMode(420), modTime: time.Unix(1593371230, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _torchvision_vgg_19Yml = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x4d\x6f\xdb\xba\x12\xdd\xfb\x57\x0c\xe0\x4d\xfb\xe0\x48\xb2\x6c\x39\x8e\x80\xf7\x80\x77\xbb\x48\xef\x26\xb8\x28\x8a\x76\x11\x04\xc6\x88\x1a\x49\xbc\xa5\x48\x82\xa4\x12\xbb\xbf\xfe\x82\x1f\xb6\x95\x7e\xdc\x36\x8b\x58\xe2\x9c\x19\x0e\xe7\x9c\x19\x4a\xe2\x48\x35\x7c\x54\x86\x0d\x9f\xb8\xe5\x4a\x1e\x3e\xdd\xdf\x1f\xd6\x77\xb0\x04\x6f\x02\xd5\xc1\x49\x4d\x06\x46\xd5\x92\x58\x74\x06\x47\x7a\x51\xe6\x4b\xbd\x00\x00\x88\xce\x7f\x9d\x82\x3b\x2c\xe1\x62\x86\x4e\x19\x70\x03\x25\x37\x8f\x7d\x26\xe3\xc3\xd7\xb0\xce\xca\x57\xd0\x64\x00\xa6\xa4\x75\x06\xb9\x74\x8b\x19\xb6\x80\xe5\x05\xc1\x65\xa7\xcc\x88\x2e\x3e\x83\xa5\x11\xa5\xe3\xec\x62\x8f\xd6\x05\x53\xd2\x21\x97\x64\x6a\x58\xc2\xe5\xc5\xc2\x64\xa9\x05\xa7\x40\x93\xf1\xc8\x98\x1b\x68\x43\x2d\x67\x3e\x66\x48\x73\x09\xe3\x24\x1c\xd7\x82\x40\x0b\x74\x1e\x68\x81\xa1\x84\x86\xc0\x6a\x62\xbc\xe3\xd4\x06\x24\x8e\xed\x6e\x1b\xeb\xe0\xff\x98\x9e\x6a\x30\xc8\xb5\x51\x7f\x13\x73\x39\x43\x33\x8a\x1b\x7d\x72\xbe\x36\x75\x00\xdf\x30\x3d\x5d\xf0\xfd\x6f\xe0\xfb\x84\xd7\x9a\xed\xb6\x82\x7e\x77\xb3\x04\xbf\xb8\xff\x7a\xbb\xb9\x47\x4b\x96\x19\xae\x5d\x20\xe0\x7f\x21\xc0\xc7\x81\xdb\x54\x2e\x6e\x01\xc1\x90\x16\x9c\x45\x22\x54\x77\x25\x1a\xa2\x6f\x43\xad\xe7\xc7\x2f\x7f\xba\xbf\x07\x3d\x35\x67\x74\x16\xc2\xfd\x5f\x84\xb2\xdf\x04\xb6\xa9\x8d\xbe\x16\xe8\xa8\x89\x39\xe0\x52\x4f\x0e\xf8\x88\x3d\x59\x90\x9e\x52\xc1\xbf\x5e\x23\x5a\xaf\xca\x17\x3c\xad\x80\x67\x94\xc1\xc8\x25\xbf\x69\xd0\xb1\x81\xac\xcf\x65\x73\xc3\x06\x94\x92\x04\x7c\xb8\xff\xe3\x1c\x45\x75\x60\x07\xd4\x04\x6f\x36\x70\x84\xf7\x70\x84\xcf\x6f\x57\xf0\x32\x90\x21\x78\x0f\x28\x5b\xf8\x0c\x68\x28\x65\x10\x55\xd2\x10\xa0\x03\x41\x68\x1d\x94\xe5\x36\x83\x8f\x03\x9d\xe3\x0d\xf8\x4c\x09\x23\x14\xb6\x29\x39\xe5\x2b\x83\xb2\x0f\x4d\xf3\x58\xac\x60\xfd\x14\x62\xbb\x81\xe4\xfc\x20\x93\xe5\xb2\x87\x91\x50\xc2\x7f\xe1\xb1\xc8\xb6\xfb\x6a\x05\x45\xb6\xad\x76\xe1\xa7\xd8\x45\x37\xeb\xda\x68\x2f\xcb\x3b\x6f\x28\xcb\x6d\xfc\xa9\x9e\x16\x86\x3a\x32\x24\x19\x59\xaf\xf1\xeb\x5b\x90\x37\x6a\xaf\xf6\x1c\x5e\xa8\xb1\xdc\x91\x7f\x24\xc7\xb2\xec\xcc\x8e\xdf\xfd\x75\x6f\xde\xc0\xe0\x9c\xb6\x75\x9e\xf7\xdc\x0d\x53\x93\x31\x35\xe6\x49\x1b\xf9\x73\x18\x0b\x79\x23\x54\x93\x8f\x68\x1d\x99\x3c\x18\xd2\x7a\x24\x2f\x7f\xee\xfb\x4c\x9f\xbe\x89\x96\x42\x64\xca\xf4\x79\xab\x98\xcd\xad\xc3\x46\xd0\x2b\x7f\x2e\x5b\x3a\x66\x83\x1b\xbf\x4d\x05\xcd\x91\x3f\x07\x57\xdd\x76\xf9\x7a\x5b\xdc\x65\xeb\xaa\xda\x65\xba\xed\x16\x4b\x10\x9c\x91\xb4\xf4\x4a\x7e\x8b\xb4\x58\xc3\x24\x0d\x59\x67\xb8\x27\x73\xb1\x8c\x92\x0a\xc5\xb9\x62\xe3\x5a\x9d\x9a\xbe\xe3\xc6\x9e\xa5\xe7\x4e\x9a\x7e\x30\xc0\x6e\x82\xa1\x8e\x1a\x48\x7d\xb5\x84\x59\xb7\x9c\x73\x99\xc5\x4a\xb0\x57\x2d\xe5\x21\x33\x8d\x27\x88\x46\x3f\x10\x1d\x99\xc0\x68\x48\xe1\xba\x74\xe9\x62\x00\x12\x34\x92\x74\x87\x98\x4b\x27\x14\xba\x4d\x39\xb3\x87\xc8\x07\x81\x27\x3f\xfe\x8a\x99\x41\xe0\x49\x4d\xae\x86\x77\xef\x3f\xcf\x56\x99\x12\xca\x1c\xfc\x21\x6b\xdf\x30\x33\x4b\xcb\x47\x92\x9e\x21\x5b\xc3\xe3\x66\x05\x41\x7e\x65\xb9\x7d\x9a\x61\xbc\x86\x6b\x78\x5c\x97\x9b\x6c\x77\x5b\xad\x60\xbd\xde\x65\xe5\xde\x2b\xbf\xd8\x64\xd5\xa6\x78\x82\xe5\x4f\x04\xfe\x1f\x28\xab\x6a\x16\xc9\x32\x14\x54\xc3\x63\xb5\xcf\x36\x77\xd5\x0a\xaa\xdb\x6c\x5d\x16\xe1\x77\x73\x5b\x3d\x85\x52\xbf\x6a\x85\x2c\xb5\x42\x8a\xa4\x26\xa7\x27\x77\x66\xd3\x97\x38\x94\x30\x31\x12\xad\xc1\x18\xeb\xc6\x04\x5a\xcb\xbb\x34\x95\x92\x17\xfe\x88\xcc\xe8\x7a\xe5\x62\xf1\x43\x3e\x13\x4a\x60\x93\xc4\x32\xa3\xf3\x72\xca\x9f\xd3\xfa\xef\xa4\x6a\xa3\x1a\x6c\xb8\xe0\x8e\x93\xfd\x9e\xda\x8e\xd0\x4d\x86\xec\x61\x32\xa2\x0e\xdd\x53\xe7\xb9\xdd\x64\x38\xe2\x57\x25\xf1\xc5\x86\x6e\xb6\x4e\x19\xca\xc2\xd4\x0f\x3d\x65\x4f\xd2\x92\xb3\x79\xd0\xa0\x24\x97\x16\x32\x77\x74\xdf\x47\x66\x03\xb1\x2f\x76\x1a\x6b\xd8\xb6\xe5\x66\xdb\x54\xfb\xcd\x06\x19\x6e\xb7\x77\xe5\xbe\xd8\x55\xb8\xde\x17\x6d\xb3\x29\xd6\x3b\x5c\x84\x7e\xf1\x12\x3e\x5f\x96\xe7\x8b\xa3\x37\xa8\x87\x30\xd8\x5e\x88\xf7\x83\xb3\x60\xc8\xaa\xc9\x30\x8a\x75\x08\xf6\x83\x46\x37\xd4\x97\x11\xf0\xcb\x53\xa4\xe1\x73\x19\x55\x7d\xbf\xbe\xcb\x74\x3c\x01\xb7\x07\x34\x6c\xe0\xcf\xb3\x7b\xb3\x43\x61\x09\x96\xc0\x3b\xb0\xe4\x56\x71\x34\x7b\x02\x1b\xb4\xe4\x0b\x18\xef\x37\xff\xe0\xc7\xb9\x84\x14\x61\xce\xe1\x40\xb3\x5c\xe7\x07\x8a\x0b\x21\x64\x4b\x52\x39\xf2\xcf\x33\xcf\x8e\x0b\x0a\x9f\x4c\xf6\x2c\xae\xef\x6b\xf2\xc2\xdd\x90\x2e\xba\xf9\xd6\x71\xc3\x2b\x0d\x05\xeb\xda\xe6\x6e\xcf\x9a\xa2\x64\x54\xe1\x6d\x79\x4b\xb8\x63\xbb\xfd\x7e\x5d\xde\xae\xcb\xb2\x5d\xa0\x73\x86\x37\x93\x8b\x17\x04\x1d\x9d\x41\x90\xe4\xc2\x07\xd7\xd5\x16\x62\x7f\xe1\xb2\xad\xe1\xdd\xc3\x43\x3a\x9c\x7f\xf7\x09\x4a\x9a\x0c\x8a\x8b\xd7\x9b\x77\x0f\x0f\x2b\xf8\xe0\xff\x65\x59\xf6\x36\x36\x93\xbf\xc0\xb9\xec\x0f\x2d\x3a\xb4\xe4\x6a\xf8\xd3\xcb\xe9\x81\x9c\x9f\x8c\x71\xed\xf2\xd9\x15\x26\x6a\x72\x08\xde\x23\x4a\xde\x91\x75\x07\x9c\xdc\xa0\x4c\x0d\xd8\xb4\x93\x68\x17\xff\x04\x00\x00\xff\xff\xa3\xa3\x65\x99\x93\x0a\x00\x00"
func torchvision_vgg_19YmlBytes() ([]byte, error) {
return bindataRead(