"vscode:/vscode.git/clone" did not exist on "414dc11970d81f85f847e4c2ffff99546fcaa248"
Commit a5cbb624 authored by Simon Moisselin's avatar Simon Moisselin Committed by Facebook GitHub Bot
Browse files

Fix typo in chamfer loss docstring (#862)

Summary:
y_lengths is about `y`, not `x`.

Pull Request resolved: https://github.com/facebookresearch/pytorch3d/pull/862

Reviewed By: bottler

Differential Revision: D31304434

Pulled By: patricklabatut

fbshipit-source-id: 1db4cd57677fc018c229e02172f95ffa903d75eb
parent 720bdf60
...@@ -91,7 +91,7 @@ def chamfer_distance( ...@@ -91,7 +91,7 @@ def chamfer_distance(
x_lengths: Optional LongTensor of shape (N,) giving the number of points in each x_lengths: Optional LongTensor of shape (N,) giving the number of points in each
cloud in x. cloud in x.
y_lengths: Optional LongTensor of shape (N,) giving the number of points in each y_lengths: Optional LongTensor of shape (N,) giving the number of points in each
cloud in x. cloud in y.
x_normals: Optional FloatTensor of shape (N, P1, D). x_normals: Optional FloatTensor of shape (N, P1, D).
y_normals: Optional FloatTensor of shape (N, P2, D). y_normals: Optional FloatTensor of shape (N, P2, D).
weights: Optional FloatTensor of shape (N,) giving weights for weights: Optional FloatTensor of shape (N,) giving weights for
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment