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

Commit 47c9255

Browse files
Initial commit
fbshipit-source-id: 5a7576eed3413a21a0ba0f620b59d45f695a253f
0 parents  commit 47c9255

File tree

282 files changed

+31438
-0
lines changed

Some content is hidden

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

282 files changed

+31438
-0
lines changed

.circleci/config.yml

+157
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,157 @@
1+
# Python CircleCI 2.0 configuration file
2+
#
3+
# Check https://circleci.com/docs/2.0/language-python/ for more details
4+
#
5+
version: 2
6+
7+
# -------------------------------------------------------------------------------------
8+
# Environments to run the jobs in
9+
# -------------------------------------------------------------------------------------
10+
cpu: &cpu
11+
docker:
12+
machine:
13+
image: default
14+
resource_class: medium
15+
16+
gpu: &gpu
17+
environment:
18+
CUDA_VERSION: "10.1"
19+
machine:
20+
image: default
21+
resource_class: gpu.medium # Tesla M60
22+
23+
# -------------------------------------------------------------------------------------
24+
# Re-usable commands
25+
# -------------------------------------------------------------------------------------
26+
setup_venv: &setup_venv
27+
- run:
28+
name: Activate Venv
29+
command: |
30+
python -m venv ~/venv
31+
echo ". ~/venv/bin/activate" >> $BASH_ENV
32+
. ~/venv/bin/activate
33+
python --version
34+
which python
35+
which pip
36+
37+
install_python: &install_python
38+
- run:
39+
name: Install Python
40+
working_directory: ~/
41+
command: |
42+
pyenv install 3.6.1
43+
pyenv global 3.6.1
44+
45+
install_dep: &install_dep
46+
- run:
47+
name: Install Dependencies
48+
command: |
49+
which python
50+
which pip
51+
pip install --upgrade pip
52+
pip install --progress-bar off -r requirements.txt
53+
pip list
54+
55+
run_tests: &run_tests
56+
- run:
57+
name: Run Tests
58+
command: |
59+
python setup.py test -s test.suites.unittests -v
60+
61+
# -------------------------------------------------------------------------------------
62+
# Jobs to run
63+
# -------------------------------------------------------------------------------------
64+
jobs:
65+
cpu_tests:
66+
<<: *cpu
67+
68+
working_directory: ~/ClassyVision
69+
70+
steps:
71+
- checkout
72+
73+
- <<: *install_python
74+
75+
- <<: *setup_venv
76+
77+
# Download and cache dependencies
78+
- restore_cache:
79+
keys:
80+
- v2-cpu-dependencies-{{ checksum "requirements.txt" }}
81+
# fallback to using the latest cache if no exact match is found
82+
- v2-cpu-dependencies-
83+
84+
- <<: *install_dep
85+
86+
- save_cache:
87+
paths:
88+
- ~/venv
89+
key: v2-cpu-dependencies-{{ checksum "requirements.txt" }}
90+
91+
- <<: *run_tests
92+
93+
- run:
94+
name: Run classy-project tests
95+
command: |
96+
pip install .
97+
classy-project my-project
98+
pushd my-project
99+
./classy_train.py --device cpu --config configs/template_config.json
100+
popd
101+
rm -rf my-project
102+
103+
104+
gpu_tests:
105+
<<: *gpu
106+
107+
working_directory: ~/ClassyVision
108+
109+
steps:
110+
- checkout
111+
112+
- run:
113+
name: Setup CUDA
114+
working_directory: ~/
115+
command: |
116+
# download and install nvidia drivers, cuda, etc
117+
wget -q 'https://s3.amazonaws.com/ossci-linux/nvidia_driver/NVIDIA-Linux-x86_64-430.40.run'
118+
sudo /bin/bash ./NVIDIA-Linux-x86_64-430.40.run -s --no-drm
119+
wget -q https://developer.download.nvidia.com/compute/cuda/10.1/Prod/local_installers/cuda-repo-ubuntu1404-10-1-local-10.1.243-418.87.00_1.0-1_amd64.deb
120+
sudo dpkg -i cuda-repo-ubuntu1404-10-1-local-10.1.243-418.87.00_1.0-1_amd64.deb
121+
sudo apt-key add /var/cuda-repo-10-1-local-10.1.243-418.87.00/7fa2af80.pub
122+
nvidia-smi
123+
124+
- <<: *install_python
125+
126+
- <<: *setup_venv
127+
128+
# Download and cache dependencies
129+
- restore_cache:
130+
keys:
131+
- v1-gpu-dependencies-{{ checksum "requirements.txt" }}
132+
# fallback to using the latest cache if no exact match is found
133+
- v1-gpu-dependencies-
134+
135+
- <<: *install_dep
136+
137+
- run:
138+
name: Check CUDA Available
139+
command: python -c "import torch; assert torch.cuda.is_available(), 'CUDA not available'"
140+
141+
- save_cache:
142+
paths:
143+
- ~/venv
144+
key: v1-gpu-dependencies-{{ checksum "requirements.txt" }}
145+
146+
- <<: *run_tests
147+
148+
149+
# -------------------------------------------------------------------------------------
150+
# Workflows
151+
# -------------------------------------------------------------------------------------
152+
workflows:
153+
version: 2
154+
build_and_test:
155+
jobs:
156+
- cpu_tests
157+
- gpu_tests

.github/ISSUE_TEMPLATE/bug-report.md

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
---
2+
name: "\U0001F41B Bug Report"
3+
about: Submit a bug report to help us improve Classy Vision
4+
5+
---
6+
7+
## 🐛 Bug
8+
9+
<!-- A clear and concise description of what the bug is. -->
10+
11+
## To Reproduce
12+
13+
Steps to reproduce the behavior:
14+
15+
1.
16+
1.
17+
1.
18+
19+
<!-- If you have a code sample, error messages, stack traces, please provide it here as well -->
20+
21+
## Expected behavior
22+
23+
<!-- A clear and concise description of what you expected to happen. -->
24+
25+
## Environment
26+
27+
- What commands did you use to install Classy Vision (conda/pip/build from source)?
28+
- If you are building from source, which commit is it?
29+
- What does `classy_vision.__version__` print? (If applicable)
30+
31+
Please copy and paste the output from the Pytorch
32+
[environment collection script](https://raw.githubusercontent.com/pytorch/pytorch/master/torch/utils/collect_env.py)
33+
(or fill out the checklist below manually).
34+
35+
You can get the script and run it with:
36+
```
37+
wget https://raw.githubusercontent.com/pytorch/pytorch/master/torch/utils/collect_env.py
38+
# For security purposes, please check the contents of collect_env.py before running it.
39+
python collect_env.py
40+
```
41+
42+
- PyTorch Version (e.g., 1.0):
43+
- OS (e.g., Linux):
44+
- How you installed PyTorch (`conda`, `pip`, source):
45+
- Build command you used (if compiling from source):
46+
- Python version:
47+
- CUDA/cuDNN version:
48+
- GPU models and configuration:
49+
- Any other relevant information:
50+
51+
## Additional context
52+
53+
<!-- Add any other context about the problem here. -->
+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
name: "\U0001F4DA Documentation"
3+
about: Report an issue related to Classy Vision documentation
4+
5+
---
6+
7+
## 📚 Documentation
8+
9+
<!-- A clear and concise description of what content in the [Tutorials](https://classyvision.ai/tutorials) or the [API Reference](https://classyvision.ai/api) is an issue -->
+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
name: "\U0001F680Feature Request"
3+
about: Submit a proposal/request for a new Classy Vision feature
4+
5+
---
6+
7+
## 🚀 Feature
8+
<!-- A clear and concise description of the feature proposal -->
9+
10+
## Motivation
11+
12+
<!-- Please outline the motivation for the proposal. Is your feature request related to a problem? e.g., I'm always frustrated when [...]. If this is related to another GitHub issue, please link here too -->
13+
14+
## Pitch
15+
16+
<!-- A clear and concise description of what you want to happen. -->
17+
18+
## Alternatives
19+
20+
<!-- A clear and concise description of any alternative solutions or features you've considered, if any. -->
21+
22+
## Additional context
23+
24+
<!-- Add any other context or screenshots about the feature request here. -->
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
name: "❓Questions/Help/Support"
3+
about: Do you need support?
4+
---
5+
6+
## ❓ Questions and Help
7+
8+
Before creating an issue, please go over our [Tutorials](https://classyvision.ai/tutorials) and [API Reference](https://classyvision.ai/api). If you cannot find the information you are looking for, please enquire in Classy Vision's `#help` [slack](https://classyvision.slack.com) channel before creating an issue.

.gitignore

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
.DS_Store
7+
8+
# Distribution / packaging
9+
.Python
10+
env/
11+
build/
12+
develop-eggs/
13+
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
wheels/
23+
24+
# Jupyter Notebook
25+
.ipynb_checkpoints
26+
27+
node_modules
28+
29+
lib/core/metadata.js
30+
lib/core/MetadataBlog.js
31+
32+
# Sphinx documentation
33+
sphinx/build/
34+
35+
# Docusaurus
36+
website/translated_docs
37+
website/build/
38+
website/yarn.lock
39+
website/node_modules
40+
website/i18n/*
41+
42+
## Generated for tutorials
43+
website/_tutorials/
44+
website/static/files/
45+
website/pages/tutorials/*
46+
!website/pages/tutorials/index.js
47+
48+
## Generated for Sphinx
49+
website/pages/api/
50+
website/static/js/*
51+
!website/static/js/code_block_buttons.js
52+
website/static/_sphinx-sources/

.isort.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[settings]
2+
multi_line_output=3

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
0.1 (December 9, 2019)
2+
3+
* Initial release

CODE_OF_CONDUCT.md

+76
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
# Code of Conduct
2+
3+
## Our Pledge
4+
5+
In the interest of fostering an open and welcoming environment, we as
6+
contributors and maintainers pledge to make participation in our project and
7+
our community a harassment-free experience for everyone, regardless of age, body
8+
size, disability, ethnicity, sex characteristics, gender identity and expression,
9+
level of experience, education, socio-economic status, nationality, personal
10+
appearance, race, religion, or sexual identity and orientation.
11+
12+
## Our Standards
13+
14+
Examples of behavior that contributes to creating a positive environment
15+
include:
16+
17+
* Using welcoming and inclusive language
18+
* Being respectful of differing viewpoints and experiences
19+
* Gracefully accepting constructive criticism
20+
* Focusing on what is best for the community
21+
* Showing empathy towards other community members
22+
23+
Examples of unacceptable behavior by participants include:
24+
25+
* The use of sexualized language or imagery and unwelcome sexual attention or
26+
advances
27+
* Trolling, insulting/derogatory comments, and personal or political attacks
28+
* Public or private harassment
29+
* Publishing others' private information, such as a physical or electronic
30+
address, without explicit permission
31+
* Other conduct which could reasonably be considered inappropriate in a
32+
professional setting
33+
34+
## Our Responsibilities
35+
36+
Project maintainers are responsible for clarifying the standards of acceptable
37+
behavior and are expected to take appropriate and fair corrective action in
38+
response to any instances of unacceptable behavior.
39+
40+
Project maintainers have the right and responsibility to remove, edit, or
41+
reject comments, commits, code, wiki edits, issues, and other contributions
42+
that are not aligned to this Code of Conduct, or to ban temporarily or
43+
permanently any contributor for other behaviors that they deem inappropriate,
44+
threatening, offensive, or harmful.
45+
46+
## Scope
47+
48+
This Code of Conduct applies within all project spaces, and it also applies when
49+
an individual is representing the project or its community in public spaces.
50+
Examples of representing a project or community include using an official
51+
project e-mail address, posting via an official social media account, or acting
52+
as an appointed representative at an online or offline event. Representation of
53+
a project may be further defined and clarified by project maintainers.
54+
55+
## Enforcement
56+
57+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
58+
reported by contacting the project team at <[email protected]>. All
59+
complaints will be reviewed and investigated and will result in a response that
60+
is deemed necessary and appropriate to the circumstances. The project team is
61+
obligated to maintain confidentiality with regard to the reporter of an incident.
62+
Further details of specific enforcement policies may be posted separately.
63+
64+
Project maintainers who do not follow or enforce the Code of Conduct in good
65+
faith may face temporary or permanent repercussions as determined by other
66+
members of the project's leadership.
67+
68+
## Attribution
69+
70+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71+
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
72+
73+
[homepage]: https://www.contributor-covenant.org
74+
75+
For answers to common questions about this code of conduct, see
76+
https://www.contributor-covenant.org/faq

0 commit comments

Comments
 (0)