Jony Jiang

Results 7 comments of Jony Jiang

running command: bash tools/dist_train.sh configs/selfsup/org/mocov3.py 2 --work_dir work_dirs/mocov3/ dataset: ![image](https://user-images.githubusercontent.com/75117639/181175395-770a4271-aaf1-406a-877c-1af6b248c17d.png)

Can you share a example on how to use evaluation to train mocov3? I added a code line to the original moco config file: evaluation = dict(interval=1, save_best="auto", metric='accuracy', metric_options={'topk':...

Okay, Can you provide a test case for tools/test.py ? I can't find it in document

`python tools/test.py configs/selfsup/org/mocov3.py work_dirs/mocov3/latest.pth --gpu-id 0` I use this commond, got the same error.

Can anybody share the pre-trained weights +1

> 我在我的服务器上解决了这个问题,不过方法有点蠢,只适用于硬性修改字体,不适用想配置字体的同学。 遇到这个问题的同学可以参考一下。只需要修改python包管理的中的pandas_profiling/visualisation下的plot.py 文件和missing.py `文件,在每一个绘图的function内部开头,都添加两行代码 > > ``` > mpl.rcParams['font.sans-serif'] = ['SimHei'] #显示中文 > mpl.rcParams['axes.unicode_minus']=False #显示负号 > ``` > > 在文件开头导入包`from matplotlib.pylab import mpl` 就能够解决这个问题,画图就可以正常输出中文。 办法比较蠢- -如果有更好的方式请告诉我= = @lk137095576 >...