Skip to content

Commit c84d43b

Browse files
committed
fix typo README
1 parent 8bae509 commit c84d43b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div align="center">
1+
from torch.utils.data import DataLoader<div align="center">
22

33
# Superpoint Transformer
44

@@ -386,8 +386,8 @@ from src.models.semantic import SemanticSegmentationModule
386386
from src.datamodules.s3dis import S3DISDataModule
387387
from pytorch_lightning import Trainer
388388
389-
# Predict behavior for semantic segmentation on S3DIS
390-
dataloader = S3DISDataModule(...)
389+
# Predict behavior for semantic segmentation from a torch DataLoader
390+
dataloader = DataLoader(...)
391391
model = SemanticSegmentationModule(...)
392392
trainer = Trainer(...)
393393
batch, output = trainer.predict(model=model, dataloaders=dataloader)

0 commit comments

Comments
 (0)