You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# load the parameters.
pipeline.load_ckpt(ckpt_path=ckpt_path)
test_split = dataset.get_split("test")
data = test_split.get_data(0)
# run inference on a single example.
# returns dict with 'predict_labels' and 'predict_scores'.
result = pipeline.run_inference(data)
I want to use pipeline.run_inference to my own data that doesn't have labels.
Is it possible ?
When I enter my point cloud in the [data] section, I get the following error
Checklist
master
branch).My Question
The following code is written in the README file.
I want to use pipeline.run_inference to my own data that doesn't have labels.
Is it possible ?
When I enter my point cloud in the [data] section, I get the following error
torch.tensor(data['label']), model.cfg.num_classes,
KeyError: 'label'
My CODE
Please tell me the reason why this error occurs.
Thank you for your cooperation.
The text was updated successfully, but these errors were encountered: