Yanzong Chan

Results 4 issues of Yanzong Chan

### Brand Name CSDN ### Website https://www.csdn.net/ ### Popularity Metric the global rank is 437 the country rank is 24 the category rank is 13 ### Official Resources for Icon...

new icon
good first issue

Hello, when I need to combine YOLO and SAM together, I need to export onnx together with the for boxes in the prompt encoder and mask decoder. Do you have...

when i change the code as: ``` def export_decoder_to_onnx(sam, args, batch_size=4): sam_decoder = SamCoreMLModel( model=sam, use_stability_score=args.use_stability_score ) sam_decoder.eval() if args.gelu_approximate: for n, m in sam.named_modules(): if isinstance(m, torch.nn.GELU): m.approximate =...

作者你好,请问我在训练自己的数据集时,频繁报错读取不到dataset,具体如下: Traceback (most recent call last): File "E:\torch_maml\train.py", line 23, in train_loader = DataLoader(train_dataset, batch_size=args.task_num, shuffle=True, num_workers=args.num_workers) File "D:\Anaconda3\envs\MAML\lib\site-packages\torch\utils\data\dataloader.py", line 388, in __init__ sampler = RandomSampler(dataset, generator=generator) # type: ignore[arg-type]...