Skip to content

Commit 74bde48

Browse files
committed
Initial commit
0 parents  commit 74bde48

File tree

91 files changed

+10137
-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.

91 files changed

+10137
-0
lines changed

Diff for: .circleci/config.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
version: 2.1
2+
3+
gpu: &gpu
4+
machine:
5+
image: ubuntu-2004-cuda-11.4:202110-01
6+
resource_class: gpu.nvidia.medium
7+
environment:
8+
FPS_THRESHOLD: 900
9+
10+
jobs:
11+
pre-commit:
12+
working_directory: ~/spot-sim2real
13+
resource_class: small
14+
docker:
15+
- image: cimg/python:3.8
16+
steps:
17+
- checkout
18+
- run:
19+
name: Running precommit checks
20+
command: |
21+
mkdir .mypy_cache
22+
pip install pre-commit==3.1.1
23+
pre-commit install-hooks
24+
pre-commit run --all-files
25+
26+
workflows:
27+
main:
28+
jobs:
29+
- pre-commit

Diff for: .flake8

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[flake8]
2+
ignore = E203, E266, E501, W503, F403, F401
3+
max-line-length = 89
4+
max-complexity = 25
5+
select = B,C,E,F,W,T4,B9
6+
7+
# Ignored rules
8+
# E203: whitespace
9+
# E266: too many ###
10+
# E501: line too long
11+
# F403: imported but not used
12+
# F401: line breaks before binary operators

Diff for: .gitignore

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
**/__pycache__/**
2+
.vscode
3+
4+
bd_spot_wrapper/spot_wrapper.egg-info/**
5+
bd_spot_wrapper/spot_wrapper/home.txt
6+
spot_rl_experiments/spot_rl.egg-info/**
7+
spot_rl_experiments/configs/waypoints.yaml
8+
9+
**/grasp_visualizations/**

Diff for: .gitmodules

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[submodule "third_party/habitat-lab"]
2+
path = third_party/habitat-lab
3+
url = [email protected]:naokiyokoyama/habitat-lab.git
4+
branch = pvp
5+
[submodule "third_party/DeblurGANv2"]
6+
path = third_party/DeblurGANv2
7+
url = [email protected]:naokiyokoyama/DeblurGANv2.git
8+
branch = master
9+
[submodule "third_party/mask_rcnn_detectron2"]
10+
path = third_party/mask_rcnn_detectron2
11+
url = https://github.com/naokiyokoyama/mask_rcnn_detectron2
12+
branch = main

Diff for: .pre-commit-config.yaml

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
repos:
2+
- repo: https://github.com/psf/black
3+
rev: 22.3.0
4+
hooks:
5+
- id: black
6+
exclude: |
7+
(?x)^(
8+
mask_rcnn_detectron2/
9+
| habitat-lab/
10+
| DeblurGANv2/
11+
)
12+
13+
- repo: https://github.com/pycqa/isort
14+
rev: 5.11.5
15+
hooks:
16+
- id: isort
17+
args: ["--profile", "black", "--filter-files"]
18+
exclude: |
19+
(?x)^(
20+
mask_rcnn_detectron2/
21+
| habitat-lab/
22+
| DeblurGANv2/
23+
)
24+
25+
- repo: https://github.com/pycqa/flake8
26+
rev: 5.0.4
27+
hooks:
28+
- id: flake8
29+
exclude: |
30+
(?x)^(
31+
mask_rcnn_detectron2/
32+
| habitat-lab/
33+
| DeblurGANv2/
34+
)
35+
36+
- repo: https://github.com/pre-commit/mirrors-mypy
37+
rev: v0.981
38+
hooks:
39+
- id: mypy
40+
args: [--install-types, --non-interactive, --no-strict-optional, --ignore-missing-imports]
41+
exclude: |
42+
(?x)^(
43+
mask_rcnn_detectron2/
44+
| habitat-lab/
45+
| DeblurGANv2/
46+
)

Diff for: CODE_OF_CONDUCT.md

+80
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
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+
This Code of Conduct also applies outside the project spaces when there is a
56+
reasonable belief that an individual's behavior may have a negative impact on
57+
the project or its community.
58+
59+
## Enforcement
60+
61+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
62+
reported by contacting the project team at <[email protected]>. All
63+
complaints will be reviewed and investigated and will result in a response that
64+
is deemed necessary and appropriate to the circumstances. The project team is
65+
obligated to maintain confidentiality with regard to the reporter of an incident.
66+
Further details of specific enforcement policies may be posted separately.
67+
68+
Project maintainers who do not follow or enforce the Code of Conduct in good
69+
faith may face temporary or permanent repercussions as determined by other
70+
members of the project's leadership.
71+
72+
## Attribution
73+
74+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
75+
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
76+
77+
[homepage]: https://www.contributor-covenant.org
78+
79+
For answers to common questions about this code of conduct, see
80+
https://www.contributor-covenant.org/faq

Diff for: CONTRIBUTING.md

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Contributing to spot-sim2real
2+
We want to make contributing to this project as easy and transparent as
3+
possible.
4+
5+
## Pull Requests
6+
We actively welcome your pull requests.
7+
8+
1. Fork the repo and create your branch from `main`.
9+
2. If you've added code that should be tested, add tests.
10+
3. If you've changed APIs, update the documentation.
11+
4. Ensure the test suite passes.
12+
5. Make sure your code lints.
13+
6. If you haven't already, complete the Contributor License Agreement ("CLA").
14+
15+
## Contributor License Agreement ("CLA")
16+
In order to accept your pull request, we need you to submit a CLA. You only need
17+
to do this once to work on any of Facebook's open source projects.
18+
19+
Complete your CLA here: <https://code.facebook.com/cla>
20+
21+
## Issues
22+
We use GitHub issues to track public bugs. Please ensure your description is
23+
clear and has sufficient instructions to be able to reproduce the issue.
24+
25+
Facebook has a [bounty program](https://www.facebook.com/whitehat/) for the safe
26+
disclosure of security bugs. In those cases, please go through the process
27+
outlined on that page and do not file a public issue.
28+
29+
## License
30+
By contributing to spot-sim2real, you agree that your contributions will be licensed
31+
under the LICENSE file in the root directory of this source tree.

Diff for: LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) Meta Platforms, Inc. and its affiliates.
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)