Upload 24 files
Browse files- .gitattributes +12 -0
- torchmodels_bb/model_with_ResNet-18/info_ssd_jit.json +16 -0
- torchmodels_bb/model_with_ResNet-18/model.ptjit +3 -0
- torchmodels_bb/model_with_ResNet-34/info_ssd_jit.json +16 -0
- torchmodels_bb/model_with_ResNet-34/model.ptjit +3 -0
- torchmodels_bb/model_with_ResNet-50/info_ssd_jit.json +16 -0
- torchmodels_bb/model_with_ResNet-50/model.ptjit +3 -0
- torchmodels_bb/model_with_orig_extractor/info_ssd_jit.json +16 -0
- torchmodels_bb/model_with_orig_extractor/model.ptjit +3 -0
- torchmodels_bb/orig_model_100ms/info_ssd_jit.json +16 -0
- torchmodels_bb/orig_model_100ms/model.ptjit +3 -0
- torchmodels_bb/orig_model_33ms/info_ssd_jit.json +16 -0
- torchmodels_bb/orig_model_33ms/model.ptjit +3 -0
- torchmodels_fl+bb/model_with_ResNet-18/info_ssd_jit.json +21 -0
- torchmodels_fl+bb/model_with_ResNet-18/model.ptjit +3 -0
- torchmodels_fl+bb/model_with_ResNet-34/info_ssd_jit.json +21 -0
- torchmodels_fl+bb/model_with_ResNet-34/model.ptjit +3 -0
- torchmodels_fl+bb/model_with_ResNet-50/info_ssd_jit.json +21 -0
- torchmodels_fl+bb/model_with_ResNet-50/model.ptjit +3 -0
- torchmodels_fl+bb/model_with_orig_extractor/info_ssd_jit.json +21 -0
- torchmodels_fl+bb/model_with_orig_extractor/model.ptjit +3 -0
- torchmodels_fl+bb/orig_model_100ms/info_ssd_jit.json +21 -0
- torchmodels_fl+bb/orig_model_100ms/model.ptjit +3 -0
- torchmodels_fl+bb/orig_model_33ms/info_ssd_jit.json +21 -0
- torchmodels_fl+bb/orig_model_33ms/model.ptjit +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,15 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
torchmodels_bb/model_with_orig_extractor/model.ptjit filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
torchmodels_bb/model_with_ResNet-18/model.ptjit filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
torchmodels_bb/model_with_ResNet-34/model.ptjit filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
torchmodels_bb/model_with_ResNet-50/model.ptjit filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
torchmodels_bb/orig_model_100ms/model.ptjit filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
torchmodels_bb/orig_model_33ms/model.ptjit filter=lfs diff=lfs merge=lfs -text
|
| 42 |
+
torchmodels_fl+bb/model_with_orig_extractor/model.ptjit filter=lfs diff=lfs merge=lfs -text
|
| 43 |
+
torchmodels_fl+bb/model_with_ResNet-18/model.ptjit filter=lfs diff=lfs merge=lfs -text
|
| 44 |
+
torchmodels_fl+bb/model_with_ResNet-34/model.ptjit filter=lfs diff=lfs merge=lfs -text
|
| 45 |
+
torchmodels_fl+bb/model_with_ResNet-50/model.ptjit filter=lfs diff=lfs merge=lfs -text
|
| 46 |
+
torchmodels_fl+bb/orig_model_100ms/model.ptjit filter=lfs diff=lfs merge=lfs -text
|
| 47 |
+
torchmodels_fl+bb/orig_model_33ms/model.ptjit filter=lfs diff=lfs merge=lfs -text
|
torchmodels_bb/model_with_ResNet-18/info_ssd_jit.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"label_map": [
|
| 3 |
+
"background",
|
| 4 |
+
"face"
|
| 5 |
+
],
|
| 6 |
+
"delta_t": 50000,
|
| 7 |
+
"num_channels": 2,
|
| 8 |
+
"in_channels": 2,
|
| 9 |
+
"num_classes": 2,
|
| 10 |
+
"preprocessing_name": "histo",
|
| 11 |
+
"max_incr_per_pixel": 5,
|
| 12 |
+
"clip_value_after_normalization": 1.0,
|
| 13 |
+
"iou_threshold": 0.4,
|
| 14 |
+
"confidence_threshold": 0.4,
|
| 15 |
+
"num_anchor_boxes": 0
|
| 16 |
+
}
|
torchmodels_bb/model_with_ResNet-18/model.ptjit
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f08e529789321f78670c375405eaa41b6595c3ab2f527bdbdb440bb00a0ac040
|
| 3 |
+
size 97785778
|
torchmodels_bb/model_with_ResNet-34/info_ssd_jit.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"label_map": [
|
| 3 |
+
"background",
|
| 4 |
+
"face"
|
| 5 |
+
],
|
| 6 |
+
"delta_t": 50000,
|
| 7 |
+
"num_channels": 2,
|
| 8 |
+
"in_channels": 2,
|
| 9 |
+
"num_classes": 2,
|
| 10 |
+
"preprocessing_name": "histo",
|
| 11 |
+
"max_incr_per_pixel": 5,
|
| 12 |
+
"clip_value_after_normalization": 1.0,
|
| 13 |
+
"iou_threshold": 0.4,
|
| 14 |
+
"confidence_threshold": 0.4,
|
| 15 |
+
"num_anchor_boxes": 0
|
| 16 |
+
}
|
torchmodels_bb/model_with_ResNet-34/model.ptjit
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e172f897e5c2d9af98f834425aaf87a8dc7aa34606cb20624b0949542bfd0029
|
| 3 |
+
size 100346738
|
torchmodels_bb/model_with_ResNet-50/info_ssd_jit.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"label_map": [
|
| 3 |
+
"background",
|
| 4 |
+
"face"
|
| 5 |
+
],
|
| 6 |
+
"delta_t": 50000,
|
| 7 |
+
"num_channels": 2,
|
| 8 |
+
"in_channels": 2,
|
| 9 |
+
"num_classes": 2,
|
| 10 |
+
"preprocessing_name": "histo",
|
| 11 |
+
"max_incr_per_pixel": 5,
|
| 12 |
+
"clip_value_after_normalization": 1.0,
|
| 13 |
+
"iou_threshold": 0.4,
|
| 14 |
+
"confidence_threshold": 0.4,
|
| 15 |
+
"num_anchor_boxes": 0
|
| 16 |
+
}
|
torchmodels_bb/model_with_ResNet-50/model.ptjit
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:335201972cc92976db25d0a9cab7c18779a06f5adb026889b70be4de02239f26
|
| 3 |
+
size 260066736
|
torchmodels_bb/model_with_orig_extractor/info_ssd_jit.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"label_map": [
|
| 3 |
+
"background",
|
| 4 |
+
"face"
|
| 5 |
+
],
|
| 6 |
+
"delta_t": 50000,
|
| 7 |
+
"num_channels": 2,
|
| 8 |
+
"in_channels": 2,
|
| 9 |
+
"num_classes": 2,
|
| 10 |
+
"preprocessing_name": "histo",
|
| 11 |
+
"max_incr_per_pixel": 5,
|
| 12 |
+
"clip_value_after_normalization": 1.0,
|
| 13 |
+
"iou_threshold": 0.4,
|
| 14 |
+
"confidence_threshold": 0.4,
|
| 15 |
+
"num_anchor_boxes": 0
|
| 16 |
+
}
|
torchmodels_bb/model_with_orig_extractor/model.ptjit
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:219ef56726dfbcb021584746f56e13c1255f05ac0f4070c2f94cec7d2fec8698
|
| 3 |
+
size 96457624
|
torchmodels_bb/orig_model_100ms/info_ssd_jit.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"label_map": [
|
| 3 |
+
"background",
|
| 4 |
+
"face"
|
| 5 |
+
],
|
| 6 |
+
"delta_t": 100000,
|
| 7 |
+
"num_channels": 2,
|
| 8 |
+
"in_channels": 2,
|
| 9 |
+
"num_classes": 2,
|
| 10 |
+
"preprocessing_name": "histo",
|
| 11 |
+
"max_incr_per_pixel": 5,
|
| 12 |
+
"clip_value_after_normalization": 1.0,
|
| 13 |
+
"iou_threshold": 0.4,
|
| 14 |
+
"confidence_threshold": 0.4,
|
| 15 |
+
"num_anchor_boxes": 0
|
| 16 |
+
}
|
torchmodels_bb/orig_model_100ms/model.ptjit
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:326d0d500fe6d5d785b2d202bf16f19f29cd39c5a4e3820e723f03b2e12db895
|
| 3 |
+
size 96457624
|
torchmodels_bb/orig_model_33ms/info_ssd_jit.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"label_map": [
|
| 3 |
+
"background",
|
| 4 |
+
"face"
|
| 5 |
+
],
|
| 6 |
+
"delta_t": 33333,
|
| 7 |
+
"num_channels": 2,
|
| 8 |
+
"in_channels": 2,
|
| 9 |
+
"num_classes": 2,
|
| 10 |
+
"preprocessing_name": "histo",
|
| 11 |
+
"max_incr_per_pixel": 5,
|
| 12 |
+
"clip_value_after_normalization": 1.0,
|
| 13 |
+
"iou_threshold": 0.4,
|
| 14 |
+
"confidence_threshold": 0.4,
|
| 15 |
+
"num_anchor_boxes": 0
|
| 16 |
+
}
|
torchmodels_bb/orig_model_33ms/model.ptjit
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:39443b31b3bef92c99af69ab284dd475a68b03477ccd10f7c54fe6d1471b722e
|
| 3 |
+
size 96457624
|
torchmodels_fl+bb/model_with_ResNet-18/info_ssd_jit.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"label_map": [
|
| 3 |
+
"background",
|
| 4 |
+
"face",
|
| 5 |
+
"x1",
|
| 6 |
+
"x2",
|
| 7 |
+
"x3",
|
| 8 |
+
"x4",
|
| 9 |
+
"x5"
|
| 10 |
+
],
|
| 11 |
+
"delta_t": 50000,
|
| 12 |
+
"num_channels": 2,
|
| 13 |
+
"in_channels": 2,
|
| 14 |
+
"num_classes": 7,
|
| 15 |
+
"preprocessing_name": "histo",
|
| 16 |
+
"max_incr_per_pixel": 5,
|
| 17 |
+
"clip_value_after_normalization": 1.0,
|
| 18 |
+
"iou_threshold": 0.4,
|
| 19 |
+
"confidence_threshold": 0.4,
|
| 20 |
+
"num_anchor_boxes": 0
|
| 21 |
+
}
|
torchmodels_fl+bb/model_with_ResNet-18/model.ptjit
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a0a14f9dc8a1bd83e79f4fc2ee8f967730eb0702673908d011953bc012d369c9
|
| 3 |
+
size 98062386
|
torchmodels_fl+bb/model_with_ResNet-34/info_ssd_jit.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"label_map": [
|
| 3 |
+
"background",
|
| 4 |
+
"face",
|
| 5 |
+
"x1",
|
| 6 |
+
"x2",
|
| 7 |
+
"x3",
|
| 8 |
+
"x4",
|
| 9 |
+
"x5"
|
| 10 |
+
],
|
| 11 |
+
"delta_t": 50000,
|
| 12 |
+
"num_channels": 2,
|
| 13 |
+
"in_channels": 2,
|
| 14 |
+
"num_classes": 7,
|
| 15 |
+
"preprocessing_name": "histo",
|
| 16 |
+
"max_incr_per_pixel": 5,
|
| 17 |
+
"clip_value_after_normalization": 1.0,
|
| 18 |
+
"iou_threshold": 0.4,
|
| 19 |
+
"confidence_threshold": 0.4,
|
| 20 |
+
"num_anchor_boxes": 0
|
| 21 |
+
}
|
torchmodels_fl+bb/model_with_ResNet-34/model.ptjit
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:2107eb83587a79349b4d43051aa833b25d4f29c3155962516a6b36155d4cf9cf
|
| 3 |
+
size 100623346
|
torchmodels_fl+bb/model_with_ResNet-50/info_ssd_jit.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"label_map": [
|
| 3 |
+
"background",
|
| 4 |
+
"face",
|
| 5 |
+
"x1",
|
| 6 |
+
"x2",
|
| 7 |
+
"x3",
|
| 8 |
+
"x4",
|
| 9 |
+
"x5"
|
| 10 |
+
],
|
| 11 |
+
"delta_t": 50000,
|
| 12 |
+
"num_channels": 2,
|
| 13 |
+
"in_channels": 2,
|
| 14 |
+
"num_classes": 7,
|
| 15 |
+
"preprocessing_name": "histo",
|
| 16 |
+
"max_incr_per_pixel": 5,
|
| 17 |
+
"clip_value_after_normalization": 1.0,
|
| 18 |
+
"iou_threshold": 0.4,
|
| 19 |
+
"confidence_threshold": 0.4,
|
| 20 |
+
"num_anchor_boxes": 0
|
| 21 |
+
}
|
torchmodels_fl+bb/model_with_ResNet-50/model.ptjit
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1a178c20524a39293d4e920975b2f24283afc76d215f334f3cd01f97ce6f7dbb
|
| 3 |
+
size 260343344
|
torchmodels_fl+bb/model_with_orig_extractor/info_ssd_jit.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"label_map": [
|
| 3 |
+
"background",
|
| 4 |
+
"face",
|
| 5 |
+
"x1",
|
| 6 |
+
"x2",
|
| 7 |
+
"x3",
|
| 8 |
+
"x4",
|
| 9 |
+
"x5"
|
| 10 |
+
],
|
| 11 |
+
"delta_t": 50000,
|
| 12 |
+
"num_channels": 2,
|
| 13 |
+
"in_channels": 2,
|
| 14 |
+
"num_classes": 7,
|
| 15 |
+
"preprocessing_name": "histo",
|
| 16 |
+
"max_incr_per_pixel": 5,
|
| 17 |
+
"clip_value_after_normalization": 1.0,
|
| 18 |
+
"iou_threshold": 0.4,
|
| 19 |
+
"confidence_threshold": 0.4,
|
| 20 |
+
"num_anchor_boxes": 0
|
| 21 |
+
}
|
torchmodels_fl+bb/model_with_orig_extractor/model.ptjit
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5d91acec190fa563e4ede1dbc04de14df7ce751267c10edc9e0072e0c97fd6c8
|
| 3 |
+
size 96734232
|
torchmodels_fl+bb/orig_model_100ms/info_ssd_jit.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"label_map": [
|
| 3 |
+
"background",
|
| 4 |
+
"face",
|
| 5 |
+
"x1",
|
| 6 |
+
"x2",
|
| 7 |
+
"x3",
|
| 8 |
+
"x4",
|
| 9 |
+
"x5"
|
| 10 |
+
],
|
| 11 |
+
"delta_t": 100000,
|
| 12 |
+
"num_channels": 2,
|
| 13 |
+
"in_channels": 2,
|
| 14 |
+
"num_classes": 7,
|
| 15 |
+
"preprocessing_name": "histo",
|
| 16 |
+
"max_incr_per_pixel": 5,
|
| 17 |
+
"clip_value_after_normalization": 1.0,
|
| 18 |
+
"iou_threshold": 0.4,
|
| 19 |
+
"confidence_threshold": 0.4,
|
| 20 |
+
"num_anchor_boxes": 0
|
| 21 |
+
}
|
torchmodels_fl+bb/orig_model_100ms/model.ptjit
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4793d92432a0d7c6521e15ad9c015c17aeb1c1c9bf5619d957aa48c111c6acb7
|
| 3 |
+
size 96734232
|
torchmodels_fl+bb/orig_model_33ms/info_ssd_jit.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"label_map": [
|
| 3 |
+
"background",
|
| 4 |
+
"face",
|
| 5 |
+
"x1",
|
| 6 |
+
"x2",
|
| 7 |
+
"x3",
|
| 8 |
+
"x4",
|
| 9 |
+
"x5"
|
| 10 |
+
],
|
| 11 |
+
"delta_t": 33333,
|
| 12 |
+
"num_channels": 2,
|
| 13 |
+
"in_channels": 2,
|
| 14 |
+
"num_classes": 7,
|
| 15 |
+
"preprocessing_name": "histo",
|
| 16 |
+
"max_incr_per_pixel": 5,
|
| 17 |
+
"clip_value_after_normalization": 1.0,
|
| 18 |
+
"iou_threshold": 0.4,
|
| 19 |
+
"confidence_threshold": 0.4,
|
| 20 |
+
"num_anchor_boxes": 0
|
| 21 |
+
}
|
torchmodels_fl+bb/orig_model_33ms/model.ptjit
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a7c3a91e23fab6c6647b7df651b97441d706b37fb1727b58d949ddba4569cc6e
|
| 3 |
+
size 96734232
|