Skip to content

Commit b81cd75

Browse files
authored
Merge pull request #3 from rwightman/master
merge base
2 parents 27fadaa + 9a1bd35 commit b81cd75

File tree

272 files changed

+64179
-2387
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

272 files changed

+64179
-2387
lines changed

.github/FUNDING.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# These are supported funding model platforms
2+
github: rwightman
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
name: Bug report
3+
about: Create a bug report to help us improve. Issues are for reporting bugs or requesting
4+
features, the discussion forum is available for asking questions or seeking help
5+
from the community.
6+
title: "[BUG] Issue title..."
7+
labels: bug
8+
assignees: rwightman
9+
10+
---
11+
12+
**Describe the bug**
13+
A clear and concise description of what the bug is.
14+
15+
**To Reproduce**
16+
Steps to reproduce the behavior:
17+
1.
18+
2.
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Desktop (please complete the following information):**
27+
- OS: [e.g. Windows 10, Ubuntu 18.04]
28+
- This repository version [e.g. pip 0.3.1 or commit ref]
29+
- PyTorch version w/ CUDA/cuDNN [e.g. from `conda list`, 1.7.0 py3.8_cuda11.0.221_cudnn8.0.3_0]
30+
31+
**Additional context**
32+
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Community Discussions
4+
url: https://github.com/rwightman/pytorch-image-models/discussions
5+
about: Issues are for features and bugs. Questions can be asked in Discussions.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project. Issues are for reporting bugs or requesting
4+
features, the discussion forum is available for asking questions or seeking help
5+
from the community.
6+
title: "[FEATURE] Feature title..."
7+
labels: enhancement
8+
assignees: ''
9+
10+
---
11+
12+
**Is your feature request related to a problem? Please describe.**
13+
A clear and concise description of what the problem is.
14+
15+
**Describe the solution you'd like**
16+
A clear and concise description of what you want to happen.
17+
18+
**Describe alternatives you've considered**
19+
A clear and concise description of any alternative solutions or features you've considered.
20+
21+
**Additional context**
22+
Add any other context or screenshots about the feature request here.

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ jobs:
1717
matrix:
1818
os: [ubuntu-latest, macOS-latest]
1919
python: ['3.8']
20-
torch: ['1.5.0']
21-
torchvision: ['0.6.0']
20+
torch: ['1.8.0']
21+
torchvision: ['0.9.0']
2222
runs-on: ${{ matrix.os }}
2323

2424
steps:

README.md

Lines changed: 211 additions & 86 deletions
Large diffs are not rendered by default.

avg_checkpoints.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
22
""" Checkpoint Averaging Script
33
44
This script averages all model weights for checkpoints in specified path that match

0 commit comments

Comments
 (0)