-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
upload SBeA part4
- Loading branch information
Showing
33 changed files
with
62 additions
and
0 deletions.
There are no files selected for viewing
40 changes: 40 additions & 0 deletions
40
Social-Behavior-Atlas-Windows-main/SocialBehaviorAtlas/train_utils/reid_models/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
import os | ||
home = os.path.expanduser('~') | ||
## 预训练模型的存放位置 | ||
LOCAL_PRETRAINED = { | ||
'resnext101_32x8d': home + '/weights/resnext101_32x8.pth', | ||
'resnext101_32x16d': home + '/weights/resnext101_32x16.pth', | ||
'resnext101_32x48d': home + '/weights/resnext101_32x48.pth', | ||
'resnext101_32x32d': home + '/weights/resnext101_32x32.pth', | ||
'resnet50': home +'/weights/resnet50.pth', | ||
'resnet101': home +'/weights/resnet101.pth', | ||
'densenet121': home +'/weights/densenet121.pth', | ||
'densenet169': home +'/weights/densenet169.pth', | ||
'moblienetv2': home +'/weights/mobilenetv2.pth', | ||
'efficientnet-b7': home + '/weights/efficientnet-b7.pth', | ||
'efficientnet-b8': home + '/weights/efficientnet-b8.pth' | ||
} | ||
|
||
model_urls = { | ||
'resnext101_32x8d': 'https://download.pytorch.org/models/ig_resnext101_32x8-c38310e5.pth', | ||
'resnext101_32x16d': 'https://download.pytorch.org/models/ig_resnext101_32x16-c6f796b0.pth', | ||
'resnext101_32x32d': 'https://download.pytorch.org/models/ig_resnext101_32x32-e4b90b00.pth', | ||
'resnext101_32x48d': 'https://download.pytorch.org/models/ig_resnext101_32x48-3e41cc8a.pth', | ||
'resnet50': 'https://download.pytorch.org/models/resnet50-19c8e357.pth', | ||
'resnet101': 'https://download.pytorch.org/models/resnet101-5d3b4d8f.pth', | ||
'densenet121': 'https://download.pytorch.org/models/densenet121-a639ec97.pth', | ||
'densenet169': 'https://download.pytorch.org/models/densenet169-b2777c0a.pth', | ||
'moblienetv2': 'https://download.pytorch.org/models/mobilenet_v2-b0353104.pth', | ||
'efficientnet-b0': 'https://github.com/lukemelas/EfficientNet-PyTorch/releases/download/1.0/efficientnet-b0-355c32eb.pth', | ||
'efficientnet-b1': 'https://github.com/lukemelas/EfficientNet-PyTorch/releases/download/1.0/efficientnet-b1-f1951068.pth', | ||
'efficientnet-b2': 'https://github.com/lukemelas/EfficientNet-PyTorch/releases/download/1.0/efficientnet-b2-8bb594d6.pth', | ||
'efficientnet-b3': 'https://github.com/lukemelas/EfficientNet-PyTorch/releases/download/1.0/efficientnet-b3-5fb5a3c3.pth', | ||
'efficientnet-b4': 'https://github.com/lukemelas/EfficientNet-PyTorch/releases/download/1.0/efficientnet-b4-6ed6700e.pth', | ||
'efficientnet-b5': 'https://github.com/lukemelas/EfficientNet-PyTorch/releases/download/1.0/efficientnet-b5-b6417697.pth', | ||
'efficientnet-b6': 'https://github.com/lukemelas/EfficientNet-PyTorch/releases/download/1.0/efficientnet-b6-c76e70fd.pth', | ||
'efficientnet-b7': 'https://github.com/lukemelas/EfficientNet-PyTorch/releases/download/1.0/efficientnet-b7-dcc49843.pth', | ||
} | ||
from .vision import * | ||
from .resnext_wsl import * | ||
from .efficientnet_pytorch import * | ||
from .build_model import * |
Binary file added
BIN
+94 KB
...l-Behavior-Atlas-Windows-main/SocialBehaviorAtlas/train_utils/reid_models/build_model.pyd
Binary file not shown.
10 changes: 10 additions & 0 deletions
10
...Windows-main/SocialBehaviorAtlas/train_utils/reid_models/efficientnet_pytorch/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
__version__ = "0.6.3" | ||
from .model import EfficientNet | ||
from .utils import ( | ||
GlobalParams, | ||
BlockArgs, | ||
BlockDecoder, | ||
efficientnet, | ||
get_model_params, | ||
) | ||
|
Binary file added
BIN
+106 KB
...s-Windows-main/SocialBehaviorAtlas/train_utils/reid_models/efficientnet_pytorch/model.pyd
Binary file not shown.
Binary file added
BIN
+134 KB
...s-Windows-main/SocialBehaviorAtlas/train_utils/reid_models/efficientnet_pytorch/utils.pyd
Binary file not shown.
Binary file added
BIN
+39.5 KB
...l-Behavior-Atlas-Windows-main/SocialBehaviorAtlas/train_utils/reid_models/resnext_wsl.pyd
Binary file not shown.
12 changes: 12 additions & 0 deletions
12
...ehavior-Atlas-Windows-main/SocialBehaviorAtlas/train_utils/reid_models/vision/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
from .alexnet import * | ||
from .resnet import * | ||
from .vgg import * | ||
from .squeezenet import * | ||
from .inception import * | ||
from .densenet import * | ||
from .googlenet import * | ||
from .mobilenet import * | ||
from .shufflenetv2 import * | ||
from . import segmentation | ||
from . import detection | ||
from.resnet import ResNet, Bottleneck |
Binary file added
BIN
+16.5 KB
...Behavior-Atlas-Windows-main/SocialBehaviorAtlas/train_utils/reid_models/vision/_utils.pyd
Binary file not shown.
Binary file added
BIN
+16.5 KB
...ehavior-Atlas-Windows-main/SocialBehaviorAtlas/train_utils/reid_models/vision/alexnet.pyd
Binary file not shown.
Binary file added
BIN
+16.5 KB
...havior-Atlas-Windows-main/SocialBehaviorAtlas/train_utils/reid_models/vision/densenet.pyd
Binary file not shown.
Empty file.
Binary file added
BIN
+16.5 KB
...tlas-Windows-main/SocialBehaviorAtlas/train_utils/reid_models/vision/detection/_utils.pyd
Binary file not shown.
Binary file added
BIN
+16.5 KB
...dows-main/SocialBehaviorAtlas/train_utils/reid_models/vision/detection/backbone_utils.pyd
Binary file not shown.
Binary file added
BIN
+16.5 KB
...Windows-main/SocialBehaviorAtlas/train_utils/reid_models/vision/detection/faster_rcnn.pyd
Binary file not shown.
Binary file added
BIN
+16.5 KB
...ws-main/SocialBehaviorAtlas/train_utils/reid_models/vision/detection/generalized_rcnn.pyd
Binary file not shown.
Binary file added
BIN
+16.5 KB
...-Windows-main/SocialBehaviorAtlas/train_utils/reid_models/vision/detection/image_list.pyd
Binary file not shown.
Binary file added
BIN
+16.5 KB
...ndows-main/SocialBehaviorAtlas/train_utils/reid_models/vision/detection/keypoint_rcnn.pyd
Binary file not shown.
Binary file added
BIN
+16.5 KB
...s-Windows-main/SocialBehaviorAtlas/train_utils/reid_models/vision/detection/mask_rcnn.pyd
Binary file not shown.
Binary file added
BIN
+16.5 KB
...s-Windows-main/SocialBehaviorAtlas/train_utils/reid_models/vision/detection/roi_heads.pyd
Binary file not shown.
Binary file added
BIN
+16.5 KB
...r-Atlas-Windows-main/SocialBehaviorAtlas/train_utils/reid_models/vision/detection/rpn.pyd
Binary file not shown.
Binary file added
BIN
+16.5 KB
...s-Windows-main/SocialBehaviorAtlas/train_utils/reid_models/vision/detection/transform.pyd
Binary file not shown.
Binary file added
BIN
+16.5 KB
...avior-Atlas-Windows-main/SocialBehaviorAtlas/train_utils/reid_models/vision/googlenet.pyd
Binary file not shown.
Binary file added
BIN
+16.5 KB
...avior-Atlas-Windows-main/SocialBehaviorAtlas/train_utils/reid_models/vision/inception.pyd
Binary file not shown.
Binary file added
BIN
+16.5 KB
...avior-Atlas-Windows-main/SocialBehaviorAtlas/train_utils/reid_models/vision/mobilenet.pyd
Binary file not shown.
Binary file added
BIN
+115 KB
...Behavior-Atlas-Windows-main/SocialBehaviorAtlas/train_utils/reid_models/vision/resnet.pyd
Binary file not shown.
Empty file.
Binary file added
BIN
+16.5 KB
...s-Windows-main/SocialBehaviorAtlas/train_utils/reid_models/vision/segmentation/_utils.pyd
Binary file not shown.
Binary file added
BIN
+16.5 KB
...indows-main/SocialBehaviorAtlas/train_utils/reid_models/vision/segmentation/deeplabv3.pyd
Binary file not shown.
Binary file added
BIN
+16.5 KB
...tlas-Windows-main/SocialBehaviorAtlas/train_utils/reid_models/vision/segmentation/fcn.pyd
Binary file not shown.
Binary file added
BIN
+16.5 KB
...ows-main/SocialBehaviorAtlas/train_utils/reid_models/vision/segmentation/segmentation.pyd
Binary file not shown.
Binary file added
BIN
+16.5 KB
...or-Atlas-Windows-main/SocialBehaviorAtlas/train_utils/reid_models/vision/shufflenetv2.pyd
Binary file not shown.
Binary file added
BIN
+16.5 KB
...vior-Atlas-Windows-main/SocialBehaviorAtlas/train_utils/reid_models/vision/squeezenet.pyd
Binary file not shown.
Binary file added
BIN
+83 KB
...al-Behavior-Atlas-Windows-main/SocialBehaviorAtlas/train_utils/reid_models/vision/vgg.pyd
Binary file not shown.