Skip to content

Commit 880dd65

Browse files
committed
Fixing formatting.
1 parent 4a17cec commit 880dd65

File tree

8 files changed

+11
-0
lines changed

8 files changed

+11
-0
lines changed

gqcnn/grasping/actions.py

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636

3737
from .grasp import Grasp2D, SuctionPoint2D, MultiSuctionPoint2D
3838

39+
3940
class Action(object):
4041
"""Base action class.
4142

gqcnn/grasping/constraint_fn.py

+1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232

3333
import numpy as np
3434

35+
3536
class GraspConstraintFn(ABC):
3637
"""Abstract constraint functions for grasp sampling."""
3738

gqcnn/grasping/grasp_quality_function.py

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
from .grasp import SuctionPoint2D
4545
from ..utils import GeneralConstants, GripperMode
4646

47+
4748
class GraspQualityFunction(ABC):
4849
"""Abstract grasp quality class."""
4950

gqcnn/grasping/policy/enums.py

+2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@
2828
------
2929
Vishal Satish
3030
"""
31+
32+
3133
class SamplingMethod(object):
3234
TOP_K = "top_k"
3335
UNIFORM = "uniform"

gqcnn/grasping/policy/fc_policy.py

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
from .enums import SamplingMethod
4545
from .policy import GraspingPolicy, GraspAction
4646

47+
4748
class FullyConvolutionalGraspingPolicy(GraspingPolicy):
4849
"""Abstract grasp sampling policy class using Fully-Convolutional GQ-CNN
4950
network."""

gqcnn/search/enums.py

+2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@
2828
------
2929
Vishal Satish
3030
"""
31+
32+
3133
class TrialConstants(object):
3234
TRIAL_CPU_LOAD = 300 # Decrease to get more aggressize CPU utilization.
3335
TRIAL_GPU_LOAD = 33 # Decrease to get more aggressize GPU utilization.

gqcnn/search/trial.py

+1
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
from ..utils import GeneralConstants, GQCNNTrainingStatus
4242
from ..analysis import GQCNNAnalyzer
4343

44+
4445
class TrialStatus:
4546
PENDING = "pending"
4647
RUNNING = "running"

gqcnn/utils/policy_exceptions.py

+2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@
2828
------
2929
Vishal Satish
3030
"""
31+
32+
3133
class NoValidGraspsException(Exception):
3234
"""Exception for when antipodal point pairs can be found in the depth
3335
image but none are valid grasps that can be executed."""

0 commit comments

Comments
 (0)