Skip to content

Commit

Permalink
Fix long lines.
Browse files Browse the repository at this point in the history
  • Loading branch information
Amitabha Roy committed Jun 29, 2022
1 parent 5d96a57 commit 3e7c7e2
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions torch_geometric/data/lightning_datamodule.py
Original file line number Diff line number Diff line change
Expand Up @@ -383,15 +383,18 @@ class LightningLinkData(LightningDataModule):
Args:
data (Data or HeteroData): The :class:`~torch_geometric.data.Data` or
:class:`~torch_geometric.data.HeteroData` graph object.
input_train_edges (Tensor or EdgeType or Tuple[EdgeType, Tensor], optional):
input_train_edges (Tensor or EdgeType or Tuple[EdgeType, Tensor]):
The training edges. (default: :obj:`None`)
input_train_edge_label (Tensor, optional): The labels of train edge indices.
input_val_edges (Tensor or EdgeType or Tuple[EdgeType, Tensor], optional):
input_train_edge_label (Tensor, optional):
The labels of train edge indices.
input_val_edges (Tensor or EdgeType or Tuple[EdgeType, Tensor]):
The validation edges. (default: :obj:`None`)
input_val_edge_label (Tensor, optional): The labels of val edge indices.
input_test_edges (Tensor or EdgeType or Tuple[EdgeType, Tensor], optional):
input_val_edge_label (Tensor, optional):
The labels of val edge indices.
input_test_edges (Tensor or EdgeType or Tuple[EdgeType, Tensor]):
The test edges. (default: :obj:`None`)
input_test_edge_label (Tensor, optional): The labels of train edge indices.
input_test_edge_label (Tensor, optional):
The labels of train edge indices.
loader (str): The scalability technique to use (:obj:`"full"`,
:obj:`"link_neighbor"`). (default: :obj:`"link_neighbor"`)
batch_size (int, optional): How many samples per batch to load.
Expand Down

0 comments on commit 3e7c7e2

Please sign in to comment.