We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
main
import open3d.ml as ml3d from open3d.ml.torch.models import RandLANet, PointTransformer from open3d.ml.torch.pipelines import SemanticSegmentation dataset = ml3d.datasets.SemanticKITTI(dataset_path='/home/jmgoo/projects/DATA/SemanticKitti', use_cache=True) model = PointTransformer() pipeline = SemanticSegmentation(model=model, dataset=dataset, **cfg.pipeline) t0 = time.time() pipeline.run_train() print("Training time: ", time.time()-t0)
import open3d.ml as ml3d from open3d.ml.torch.models import RandLANet, PointTransformer from open3d.ml.torch.pipelines import SemanticSegmentation
dataset = ml3d.datasets.SemanticKITTI(dataset_path='/home/jmgoo/projects/DATA/SemanticKitti', use_cache=True) model = PointTransformer()
pipeline = SemanticSegmentation(model=model, dataset=dataset, **cfg.pipeline) t0 = time.time() pipeline.run_train() print("Training time: ", time.time()-t0)
I run the above code, but I faced "AttributeError: 'ConfigDict' object has no attribute 'optimizer'". I believe there is no yaml file yet.
How do I solve this problem?
The text was updated successfully, but these errors were encountered:
I also have the same question
Sorry, something went wrong.
No branches or pull requests
Checklist
main
branch).My Question
I run the above code, but I faced "AttributeError: 'ConfigDict' object has no attribute 'optimizer'". I believe there is no yaml file yet.
How do I solve this problem?
The text was updated successfully, but these errors were encountered: