Skip to content
This repository was archived by the owner on Jul 1, 2024. It is now read-only.

Commit 436aaca

Browse files
lauragustafsonfacebook-github-bot
authored andcommitted
Update mixup transform to be compatible with latest pytorch (#753)
Summary: Pull Request resolved: #753 Pull Request resolved: fairinternal/ClassyVision#97 `torch.clip` is an alias for `torch.clamp`, see https://pytorch.org/docs/stable/generated/torch.clip.html?highlight=clip#torch.clip and `torch.clip` is no longer in the latest pytorch version Updated `fairscale` dependency to resolve cpu/gpu test circleci failures: https://app.circleci.com/pipelines/github/facebookresearch/ClassyVision/2201/workflows/e3b37369-677c-4a08-8b4b-5c5c217c5560/jobs/4322 Reviewed By: mannatsingh Differential Revision: D29520476 fbshipit-source-id: 584f079762bc4c6de644cc7595232109b364b4db
1 parent 730680d commit 436aaca

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

.circleci/config.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,9 @@ jobs:
130130
# Download and cache dependencies
131131
- restore_cache:
132132
keys:
133-
- v7-cpu-dependencies-{{ checksum "requirements.txt" }}
133+
- v9-cpu-dependencies-{{ checksum "requirements.txt" }}
134134
# fallback to using the latest cache if no exact match is found
135-
- v7-cpu-dependencies-
135+
- v9-cpu-dependencies-
136136

137137
- <<: *install_dev_dep
138138

@@ -143,7 +143,7 @@ jobs:
143143
- save_cache:
144144
paths:
145145
- ~/venv
146-
key: v7-cpu-dependencies-{{ checksum "requirements.txt" }}
146+
key: v9-cpu-dependencies-{{ checksum "requirements.txt" }}
147147

148148
- <<: *run_tests
149149

@@ -183,9 +183,9 @@ jobs:
183183
# Download and cache dependencies
184184
- restore_cache:
185185
keys:
186-
- v4-gpu-dependencies-{{ checksum "requirements.txt" }}
186+
- v6-gpu-dependencies-{{ checksum "requirements.txt" }}
187187
# fallback to using the latest cache if no exact match is found
188-
- v4-gpu-dependencies-
188+
- v6-gpu-dependencies-
189189

190190
- <<: *install_dev_dep
191191

@@ -198,7 +198,7 @@ jobs:
198198
- save_cache:
199199
paths:
200200
- ~/venv
201-
key: v4-gpu-dependencies-{{ checksum "requirements.txt" }}
201+
key: v6-gpu-dependencies-{{ checksum "requirements.txt" }}
202202

203203
- <<: *run_tests
204204

@@ -222,9 +222,9 @@ jobs:
222222
# Download and cache dependencies
223223
- restore_cache:
224224
keys:
225-
- v2-gpu-bc-dependencies-{{ checksum "requirements_test_bc.txt" }}
225+
- v3-gpu-bc-dependencies-{{ checksum "requirements_test_bc.txt" }}
226226
# fallback to using the latest cache if no exact match is found
227-
- v2-gpu-bc-dependencies-
227+
- v3-gpu-bc-dependencies-
228228

229229
- <<: *install_dev_dep
230230

@@ -237,7 +237,7 @@ jobs:
237237
- save_cache:
238238
paths:
239239
- ~/venv
240-
key: v2-gpu-bc-dependencies-{{ checksum "requirements_test_bc.txt" }}
240+
key: v3-gpu-bc-dependencies-{{ checksum "requirements_test_bc.txt" }}
241241

242242
- <<: *run_tests
243243

classy_vision/dataset/transforms/mixup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ def rand_bbox(img_shape, lam, margin=0.0, count=1):
6464
margin_y, margin_x = int(margin * cut_h), int(margin * cut_w)
6565
cy = torch.randint(0 + margin_y, img_h - margin_y, (count,))
6666
cx = torch.randint(0 + margin_x, img_w - margin_x, (count,))
67-
yl = torch.clip(cy - cut_h // 2, 0, img_h)
68-
yh = torch.clip(cy + cut_h // 2, 0, img_h)
69-
xl = torch.clip(cx - cut_w // 2, 0, img_w)
70-
xh = torch.clip(cx + cut_w // 2, 0, img_w)
67+
yl = torch.clamp(cy - cut_h // 2, 0, img_h)
68+
yh = torch.clamp(cy + cut_h // 2, 0, img_h)
69+
xl = torch.clamp(cx - cut_w // 2, 0, img_w)
70+
xh = torch.clamp(cx + cut_w // 2, 0, img_w)
7171
return yl, yh, xl, xh
7272

7373

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"nbconvert==6.0.7",
5858
"pre-commit",
5959
"parameterized",
60-
"fairscale==0.1.6",
60+
"fairscale==0.3.7",
6161
]
6262
},
6363
package_data={"classy_vision": ["configs/*.json", "templates"]},

0 commit comments

Comments
 (0)