Views
No views yet
vision_models_playground.models.segmentation.yolo_v1 module.
Please look in the config file for more information about the model architecture.1import torch
2from vision_models_playground.utility.hub import load_vmp_model_from_hub
3
4
5model = load_vmp_model_from_hub("Akriel/ResNetYoloV1")
6
7x = torch.randn(...)
8y = model(x) # y will be of type torch.Tensor1from vision_models_playground.utility.hub import load_vmp_pipeline_from_hub
2
3pipeline = load_vmp_pipeline_from_hub("Akriel/ResNetYoloV1")
4
5x = raw_data # raw_data will be of type pipeline.input_type
6y = pipeline(x) # y will be of type pipeline.output_typevision_models_playground.datasets.yolo_pascal_voc_datasettensorboard --logdir ./modeltensorboard --logdir ./eval