While loading the ParisLille3D dataset, it appears that there are no labels provided for the test point clouds. Do you know where we can find these semantic segmentation labels for the test point clouds? Thanks!
Steps to reproduce
We can observe the distribution of labels across all 10 classes of points in the val split of the dataset:
import open3d.ml.torch as ml3d
import pandas as pd
# construct a dataset by specifying dataset_path
dataset = ml3d.datasets.ParisLille3D(dataset_path=DATASET_DIR)
# Get the validation split
val_split = dataset.get_split('val')
# Print the value counts of the label
for idx in range(len(val_split)):
print(dict(pd.Series(val_split.get_data(idx)['label']).value_counts()))
However, we note a "blank" output for all point clouds in the test section:
import open3d.ml.torch as ml3d
import pandas as pd
# construct a dataset by specifying dataset_path
dataset = ml3d.datasets.ParisLille3D(dataset_path=DATASET_DIR)
# Get the test split
test_split = dataset.get_split('test')
# Print the value counts of the label
for idx in range(len(test_split)):
print(dict(pd.Series(test_split.get_data(idx)['label']).value_counts()))
Checklist
main
branch).My Question
Hello!
While loading the ParisLille3D dataset, it appears that there are no labels provided for the test point clouds. Do you know where we can find these semantic segmentation labels for the test point clouds? Thanks!
Steps to reproduce
We can observe the distribution of labels across all 10 classes of points in the
val
split of the dataset:Produces the following output:
However, we note a "blank" output for all point clouds in the
test
section:Produces the following output: