Skip to content

Commit dd6f949

Browse files
authored
Merge pull request #74 from BerkeleyAutomation/python3
Python 2/3 support and general cleanup.
2 parents a0930e9 + 699b407 commit dd6f949

File tree

128 files changed

+9493
-5338
lines changed

Some content is hidden

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

128 files changed

+9493
-5338
lines changed

.flake8

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[flake8]
2+
ignore = C408, E121, E123, E126, E226, E24, E704, W503, W504, W605
3+
exclude = docs/source/conf.py
4+
inline-quotes = "
5+
no-avoid-escape = 1

.style.yapf

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[style]
2+
based_on_style=pep8
3+
allow_split_before_dict_value=False
4+
join_multiple_lines=False

.travis.yml

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
# Copyright ©2017. The Regents of the University of California (Regents).
2+
# All Rights Reserved. Permission to use, copy, modify, and distribute this
3+
# software and its documentation for educational, research, and not-for-profit
4+
# purposes, without fee and without a signed licensing agreement, is hereby
5+
# granted, provided that the above copyright notice, this paragraph and the
6+
# following two paragraphs appear in all copies, modifications, and
7+
# distributions. Contact The Office of Technology Licensing, UC Berkeley, 2150
8+
# Shattuck Avenue, Suite 510, Berkeley, CA 94720-1620, (510) 643-7201,
9+
10+
# http://ipira.berkeley.edu/industry-info for commercial licensing opportunities.
11+
12+
# IN NO EVENT SHALL REGENTS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL,
13+
# INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF
14+
# THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF REGENTS HAS BEEN
15+
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
16+
17+
# REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
18+
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19+
# PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF ANY, PROVIDED
20+
# HEREUNDER IS PROVIDED "AS IS". REGENTS HAS NO OBLIGATION TO PROVIDE
21+
# MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
22+
language: python
23+
24+
matrix:
25+
include:
26+
- name: "Python 2.7 on Xenial Linux"
27+
python: 2.7
28+
dist: xenial
29+
30+
- name: "Python 3.5 on Xenial Linux"
31+
python: 3.5
32+
dist: xenial
33+
34+
- name: "Python 3.6 on Xenial Linux"
35+
python: 3.6
36+
dist: xenial
37+
38+
- name: "Python 3.7 on Xenial Linux"
39+
python: 3.7
40+
dist: xenial
41+
42+
- name: "Linter"
43+
python: 3.7
44+
dist: xenial
45+
before_install: []
46+
install: []
47+
script:
48+
- pip install yapf==0.27.0 # Must use specific version.
49+
- pip install flake8 flake8-comprehensions flake8-quotes==2.0.0
50+
- ./ci/travis/format.sh --all # Should exit with 0 for no diffs.
51+
- flake8
52+
53+
before_install:
54+
- sudo apt-get update
55+
- sudo apt-get install -y python-opengl # For GLU.
56+
57+
install:
58+
- pip install .
59+
60+
script:
61+
- python -c "import gqcnn"
62+
63+
notifications:
64+
email: false

CMakeLists.txt

+22
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
# Copyright ©2017. The Regents of the University of California (Regents).
2+
# All Rights Reserved. Permission to use, copy, modify, and distribute this
3+
# software and its documentation for educational, research, and not-for-profit
4+
# purposes, without fee and without a signed licensing agreement, is hereby
5+
# granted, provided that the above copyright notice, this paragraph and the
6+
# following two paragraphs appear in all copies, modifications, and
7+
# distributions. Contact The Office of Technology Licensing, UC Berkeley, 2150
8+
# Shattuck Avenue, Suite 510, Berkeley, CA 94720-1620, (510) 643-7201,
9+
10+
# http://ipira.berkeley.edu/industry-info for commercial licensing opportunities.
11+
12+
# IN NO EVENT SHALL REGENTS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL,
13+
# INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF
14+
# THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF REGENTS HAS BEEN
15+
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
16+
17+
# REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
18+
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19+
# PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF ANY, PROVIDED
20+
# HEREUNDER IS PROVIDED "AS IS". REGENTS HAS NO OBLIGATION TO PROVIDE
21+
# MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
22+
123
cmake_minimum_required(VERSION 2.8.3)
224
project(gqcnn)
325

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
# Berkeley AUTOLAB's GQCNN Package
22
<p>
3+
<a><img alt="Build Status" src="https://travis-ci.org/BerkeleyAutomation/gqcnn.svg?branch=master"></a>
34
<a href="https://github.com/BerkeleyAutomation/gqcnn/releases/latest"><img alt="Release" src="https://img.shields.io/github/release/BerkeleyAutomation/gqcnn.svg?style=flat"></a>
45
<a href="https://github.com/BerkeleyAutomation/gqcnn/blob/master/LICENSE"><img alt="Software License" src="https://img.shields.io/badge/license-REGENTS-brightgreen.svg"></a>
5-
<a><img alt="Python Version" src="https://img.shields.io/badge/python-2.7-yellow.svg"></a>
6+
<a><img alt="Python 2 Version" src="https://img.shields.io/badge/python-2.7-yellow.svg"></a>
7+
<a><img alt="Python 2 Version" src="https://img.shields.io/badge/python-3.5%20%7C%203.6%20%7C%203.7-yellowgreen.svg"></a>
68
</p>
79

810
## Package Overview

cfg/examples/antipodal_grasp_sampling.yaml

+22
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
# Copyright ©2017. The Regents of the University of California (Regents).
2+
# All Rights Reserved. Permission to use, copy, modify, and distribute this
3+
# software and its documentation for educational, research, and not-for-profit
4+
# purposes, without fee and without a signed licensing agreement, is hereby
5+
# granted, provided that the above copyright notice, this paragraph and the
6+
# following two paragraphs appear in all copies, modifications, and
7+
# distributions. Contact The Office of Technology Licensing, UC Berkeley, 2150
8+
# Shattuck Avenue, Suite 510, Berkeley, CA 94720-1620, (510) 643-7201,
9+
10+
# http://ipira.berkeley.edu/industry-info for commercial licensing opportunities.
11+
12+
# IN NO EVENT SHALL REGENTS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL,
13+
# INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF
14+
# THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF REGENTS HAS BEEN
15+
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
16+
17+
# REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
18+
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19+
# PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF ANY, PROVIDED
20+
# HEREUNDER IS PROVIDED "AS IS". REGENTS HAS NO OBLIGATION TO PROVIDE
21+
# MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
22+
123
# policy params
224
policy:
325
# general params

cfg/examples/fc_gqcnn_pj.yaml

+22
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
# Copyright ©2017. The Regents of the University of California (Regents).
2+
# All Rights Reserved. Permission to use, copy, modify, and distribute this
3+
# software and its documentation for educational, research, and not-for-profit
4+
# purposes, without fee and without a signed licensing agreement, is hereby
5+
# granted, provided that the above copyright notice, this paragraph and the
6+
# following two paragraphs appear in all copies, modifications, and
7+
# distributions. Contact The Office of Technology Licensing, UC Berkeley, 2150
8+
# Shattuck Avenue, Suite 510, Berkeley, CA 94720-1620, (510) 643-7201,
9+
10+
# http://ipira.berkeley.edu/industry-info for commercial licensing opportunities.
11+
12+
# IN NO EVENT SHALL REGENTS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL,
13+
# INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF
14+
# THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF REGENTS HAS BEEN
15+
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
16+
17+
# REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
18+
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19+
# PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF ANY, PROVIDED
20+
# HEREUNDER IS PROVIDED "AS IS". REGENTS HAS NO OBLIGATION TO PROVIDE
21+
# MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
22+
123
policy:
224
type: fully_conv_pj
325

cfg/examples/fc_gqcnn_suction.yaml

+22
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
# Copyright ©2017. The Regents of the University of California (Regents).
2+
# All Rights Reserved. Permission to use, copy, modify, and distribute this
3+
# software and its documentation for educational, research, and not-for-profit
4+
# purposes, without fee and without a signed licensing agreement, is hereby
5+
# granted, provided that the above copyright notice, this paragraph and the
6+
# following two paragraphs appear in all copies, modifications, and
7+
# distributions. Contact The Office of Technology Licensing, UC Berkeley, 2150
8+
# Shattuck Avenue, Suite 510, Berkeley, CA 94720-1620, (510) 643-7201,
9+
10+
# http://ipira.berkeley.edu/industry-info for commercial licensing opportunities.
11+
12+
# IN NO EVENT SHALL REGENTS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL,
13+
# INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF
14+
# THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF REGENTS HAS BEEN
15+
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
16+
17+
# REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
18+
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19+
# PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF ANY, PROVIDED
20+
# HEREUNDER IS PROVIDED "AS IS". REGENTS HAS NO OBLIGATION TO PROVIDE
21+
# MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
22+
123
policy:
224
type: fully_conv_suction
325

cfg/examples/gqcnn_pj.yaml

+22
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
# Copyright ©2017. The Regents of the University of California (Regents).
2+
# All Rights Reserved. Permission to use, copy, modify, and distribute this
3+
# software and its documentation for educational, research, and not-for-profit
4+
# purposes, without fee and without a signed licensing agreement, is hereby
5+
# granted, provided that the above copyright notice, this paragraph and the
6+
# following two paragraphs appear in all copies, modifications, and
7+
# distributions. Contact The Office of Technology Licensing, UC Berkeley, 2150
8+
# Shattuck Avenue, Suite 510, Berkeley, CA 94720-1620, (510) 643-7201,
9+
10+
# http://ipira.berkeley.edu/industry-info for commercial licensing opportunities.
11+
12+
# IN NO EVENT SHALL REGENTS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL,
13+
# INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF
14+
# THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF REGENTS HAS BEEN
15+
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
16+
17+
# REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
18+
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19+
# PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF ANY, PROVIDED
20+
# HEREUNDER IS PROVIDED "AS IS". REGENTS HAS NO OBLIGATION TO PROVIDE
21+
# MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
22+
123
policy:
224
# optimization params
325
num_seed_samples: 128

cfg/examples/gqcnn_suction.yaml

+22
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
# Copyright ©2017. The Regents of the University of California (Regents).
2+
# All Rights Reserved. Permission to use, copy, modify, and distribute this
3+
# software and its documentation for educational, research, and not-for-profit
4+
# purposes, without fee and without a signed licensing agreement, is hereby
5+
# granted, provided that the above copyright notice, this paragraph and the
6+
# following two paragraphs appear in all copies, modifications, and
7+
# distributions. Contact The Office of Technology Licensing, UC Berkeley, 2150
8+
# Shattuck Avenue, Suite 510, Berkeley, CA 94720-1620, (510) 643-7201,
9+
10+
# http://ipira.berkeley.edu/industry-info for commercial licensing opportunities.
11+
12+
# IN NO EVENT SHALL REGENTS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL,
13+
# INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF
14+
# THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF REGENTS HAS BEEN
15+
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
16+
17+
# REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
18+
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19+
# PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF ANY, PROVIDED
20+
# HEREUNDER IS PROVIDED "AS IS". REGENTS HAS NO OBLIGATION TO PROVIDE
21+
# MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
22+
123
policy:
224
# optimization params
325
num_seed_samples: 200

cfg/examples/replication/dex-net_2.0.yaml

+22
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
# Copyright ©2017. The Regents of the University of California (Regents).
2+
# All Rights Reserved. Permission to use, copy, modify, and distribute this
3+
# software and its documentation for educational, research, and not-for-profit
4+
# purposes, without fee and without a signed licensing agreement, is hereby
5+
# granted, provided that the above copyright notice, this paragraph and the
6+
# following two paragraphs appear in all copies, modifications, and
7+
# distributions. Contact The Office of Technology Licensing, UC Berkeley, 2150
8+
# Shattuck Avenue, Suite 510, Berkeley, CA 94720-1620, (510) 643-7201,
9+
10+
# http://ipira.berkeley.edu/industry-info for commercial licensing opportunities.
11+
12+
# IN NO EVENT SHALL REGENTS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL,
13+
# INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF
14+
# THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF REGENTS HAS BEEN
15+
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
16+
17+
# REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
18+
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19+
# PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF ANY, PROVIDED
20+
# HEREUNDER IS PROVIDED "AS IS". REGENTS HAS NO OBLIGATION TO PROVIDE
21+
# MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
22+
123
# policy params
224
policy:
325
# optimization params

cfg/examples/replication/dex-net_2.1.yaml

+22
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
# Copyright ©2017. The Regents of the University of California (Regents).
2+
# All Rights Reserved. Permission to use, copy, modify, and distribute this
3+
# software and its documentation for educational, research, and not-for-profit
4+
# purposes, without fee and without a signed licensing agreement, is hereby
5+
# granted, provided that the above copyright notice, this paragraph and the
6+
# following two paragraphs appear in all copies, modifications, and
7+
# distributions. Contact The Office of Technology Licensing, UC Berkeley, 2150
8+
# Shattuck Avenue, Suite 510, Berkeley, CA 94720-1620, (510) 643-7201,
9+
10+
# http://ipira.berkeley.edu/industry-info for commercial licensing opportunities.
11+
12+
# IN NO EVENT SHALL REGENTS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL,
13+
# INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF
14+
# THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF REGENTS HAS BEEN
15+
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
16+
17+
# REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
18+
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19+
# PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF ANY, PROVIDED
20+
# HEREUNDER IS PROVIDED "AS IS". REGENTS HAS NO OBLIGATION TO PROVIDE
21+
# MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
22+
123
# policy params
224
policy:
325
# optimization params

cfg/examples/replication/dex-net_3.0.yaml

+22
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
# Copyright ©2017. The Regents of the University of California (Regents).
2+
# All Rights Reserved. Permission to use, copy, modify, and distribute this
3+
# software and its documentation for educational, research, and not-for-profit
4+
# purposes, without fee and without a signed licensing agreement, is hereby
5+
# granted, provided that the above copyright notice, this paragraph and the
6+
# following two paragraphs appear in all copies, modifications, and
7+
# distributions. Contact The Office of Technology Licensing, UC Berkeley, 2150
8+
# Shattuck Avenue, Suite 510, Berkeley, CA 94720-1620, (510) 643-7201,
9+
10+
# http://ipira.berkeley.edu/industry-info for commercial licensing opportunities.
11+
12+
# IN NO EVENT SHALL REGENTS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL,
13+
# INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF
14+
# THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF REGENTS HAS BEEN
15+
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
16+
17+
# REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
18+
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19+
# PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF ANY, PROVIDED
20+
# HEREUNDER IS PROVIDED "AS IS". REGENTS HAS NO OBLIGATION TO PROVIDE
21+
# MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
22+
123
# policy params
224
policy:
325
# optimization params

cfg/examples/replication/dex-net_4.0_fc_pj.yaml

+22
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
# Copyright ©2017. The Regents of the University of California (Regents).
2+
# All Rights Reserved. Permission to use, copy, modify, and distribute this
3+
# software and its documentation for educational, research, and not-for-profit
4+
# purposes, without fee and without a signed licensing agreement, is hereby
5+
# granted, provided that the above copyright notice, this paragraph and the
6+
# following two paragraphs appear in all copies, modifications, and
7+
# distributions. Contact The Office of Technology Licensing, UC Berkeley, 2150
8+
# Shattuck Avenue, Suite 510, Berkeley, CA 94720-1620, (510) 643-7201,
9+
10+
# http://ipira.berkeley.edu/industry-info for commercial licensing opportunities.
11+
12+
# IN NO EVENT SHALL REGENTS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL,
13+
# INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF
14+
# THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF REGENTS HAS BEEN
15+
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
16+
17+
# REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
18+
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19+
# PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF ANY, PROVIDED
20+
# HEREUNDER IS PROVIDED "AS IS". REGENTS HAS NO OBLIGATION TO PROVIDE
21+
# MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
22+
123
policy:
224
type: fully_conv_pj
325

cfg/examples/replication/dex-net_4.0_fc_suction.yaml

+22
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
# Copyright ©2017. The Regents of the University of California (Regents).
2+
# All Rights Reserved. Permission to use, copy, modify, and distribute this
3+
# software and its documentation for educational, research, and not-for-profit
4+
# purposes, without fee and without a signed licensing agreement, is hereby
5+
# granted, provided that the above copyright notice, this paragraph and the
6+
# following two paragraphs appear in all copies, modifications, and
7+
# distributions. Contact The Office of Technology Licensing, UC Berkeley, 2150
8+
# Shattuck Avenue, Suite 510, Berkeley, CA 94720-1620, (510) 643-7201,
9+
10+
# http://ipira.berkeley.edu/industry-info for commercial licensing opportunities.
11+
12+
# IN NO EVENT SHALL REGENTS BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, SPECIAL,
13+
# INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, ARISING OUT OF
14+
# THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF REGENTS HAS BEEN
15+
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
16+
17+
# REGENTS SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
18+
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
19+
# PURPOSE. THE SOFTWARE AND ACCOMPANYING DOCUMENTATION, IF ANY, PROVIDED
20+
# HEREUNDER IS PROVIDED "AS IS". REGENTS HAS NO OBLIGATION TO PROVIDE
21+
# MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
22+
123
policy:
224
type: fully_conv_suction
325

0 commit comments

Comments
 (0)