marsggbo
marsggbo
I want to use your code to design an architecture based on my own dataset? Could you tell me which part I need to modify? Thank you very much!
Thanks so much for your implementation. But I have several questions: 1) In the below picture, it seems that the class with less numbers is sampled repeatedly, while the class...
I wonder how we automatically save the following command line into the current experiment output directory. ``` python run.py trainer.max_epochs=100 data.batch_size=23 optimizer.lr=0.01 optimizer.moment=0.9 a_lot_of_other_settings ``` In this way, it would...
Suppose the previous exp results are saved in `./logs/runs/exp1`, if we want to resume from `exp1`, we can set `trainer.resume_from_checkpoint=./logs/runs/exp1/checkpoint/best.ckpt` to load the checkpoint. However, my question is: 1. can...
学习资料推荐专区
数学公式貌似没法转换
下载了好几个版本的 osx-arm,都提示文件无效
首先感谢你的注释,中文的看起来舒服多了。另外是这样的,我现在在做疾病分类,但是有的病灶只占了图像很小一部分,所以我现在需要用目标检测来提高图像分类准确率。我目前的想法是比如说一张图片预测出了很多box,那么我就按照置信度选择前10个box来得出最终这张图片的类别,比如看10个box觉得多数预测称了A类,那么就预测这张图片属于A类。 我现在用的是faster_rcnn_x101_64x4d这个模型,然后问题是我不太清楚模型输出是个什么东西。比如我在`tools/test.py`里 ```python def single_gpu_test(model, data_loader, show=False): model.eval() results = [] dataset = data_loader.dataset prog_bar = mmcv.ProgressBar(len(dataset)) for i, data in enumerate(data_loader): with torch.no_grad(): result = model(return_loss=False, rescale=not show, **data)...