Skip to content

Commit

Permalink
Merge branch 'update_doc'
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Funke committed Apr 11, 2018
2 parents fb81388 + fb456eb commit 77c9189
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions gunpowder/nodes/rasterize_points.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,18 +86,18 @@ class RasterizePoints(BatchFilter):
Args:
points (:class:``PointsKeys``):
points (:class:`PointsKeys`):
The key of the points to rasterize.
array (:class:``ArrayKey``):
array (:class:`ArrayKey`):
The key of the binary array to create.
array_spec (:class:``ArraySpec``, optional):
array_spec (:class:`ArraySpec`, optional):
The spec of the array to create. Use this to set the datatype and
voxel size.
settings (:class:``RasterizationSettings``, optional):
settings (:class:`RasterizationSettings`, optional):
Which settings to use to rasterize the points.
'''

Expand Down
4 changes: 2 additions & 2 deletions gunpowder/tensorflow/nodes/predict.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ class Predict(GenericPredict):
and associated tensor values and metadata, as created by
:class:`gunpowder.nodes.Train`, for example.
inputs (``dict``, ``string`` -> :class:``ArrayKey``):
inputs (``dict``, ``string`` -> :class:`ArrayKey`):
Dictionary from the names of input tensors in the network to
array keys.
outputs (``dict``, ``string`` -> :class:``ArrayKey``):
outputs (``dict``, ``string`` -> :class:`ArrayKey`):
Dictionary from the names of output tensors in the network to array
keys. New arrays will be generated by this node for each entry (if
Expand Down
6 changes: 3 additions & 3 deletions gunpowder/tensorflow/nodes/train.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,18 +56,18 @@ def add_custom_optimizer(graph):
The name of the tensorflow tensor containing the loss, or ``None``
if ``optimizer`` is a function.
inputs (``dict``, ``string`` -> :class:``ArrayKey``):
inputs (``dict``, ``string`` -> :class:`ArrayKey`):
Dictionary from the names of input tensors in the network to
array keys.
outputs (``dict``, ``string`` -> :class:``ArrayKey``):
outputs (``dict``, ``string`` -> :class:`ArrayKey`):
Dictionary from the names of output tensors in the network to array
keys. New arrays will be generated by this node for each entry (if
requested downstream).
gradients (``dict``, ``string`` -> :class:``ArrayKey``):
gradients (``dict``, ``string`` -> :class:`ArrayKey`):
Dictionary from the names of output tensors in the network to
array keys. New arrays containing the gradient of an output with
Expand Down

0 comments on commit 77c9189

Please sign in to comment.