Yu Ao Bo
Yu Ao Bo
> 安装pytorch0.2.0_3失败,有教程可以参考吗 @lvpengyuan @lvpengyuan 参考博客 [pytorch 在ubuntu16.04 下安装](https://blog.csdn.net/tsq292978891/article/details/78494525) 在其中下载了 torch-0.2.0.post3-cp27-cp27mu-manylinux1_x86_64.whl ``` conda create -n py2.7_pytorch0.2 python=2.7 -y conda activate py2.7_pytorch0.2 pip install torch-0.2.0.post3-cp27-cp27mu-manylinux1_x86_64.whl pip install torchvision==0.2.0 pip install opencv-python pip...
> 提问的时候请指明系统、浏览器、是否配置系统代理、http_proxy 等内容 @lyh543 你好 系统:ubuntu 16.04 浏览器:chrome (Firefox也同样无法访问google等)(`ping www.google.com.hk`也一直没有返回结果) 网络代理:使用 `无` 和 `手动` 均无法访问google等(手动模式下,http/https均设置的127.0.0.1:1081,socks设置的127.0.0.1:1080) 我通过`./install.sh`安装后无法打开程序,之后我通过如下方式安装后可以正常打开程序并可以显示订阅及测试延时,但仍无法通过浏览器访问google等网站,ping也没有反应 ``` 1. 运行git clone https://github.com/jiangxufeng/v2rayL.git 2. 进入项目文件夹,然后运行pip install -r requirements.txt 3. 运行cd v2rayL-GUI &&...
> > 1. ping 运行于 icmp 协议,代理运行于 tcp 协议,ping是不会走代理的 > 2. 我也不清楚问题,不过可以按照以下方式逐步测试: > > * 先保证服务器那边是正常的,可以用安卓等其他设备测试; > * 使用 firefox 并在 firefox 中手动配置代理端口,然后测试;如果 firefox 能连上,说明是 chrome 的代理的问题,这里请自行 google;如果不能连上,可能就是 v2rayl 安装/配置的问题了。...
我遇到了同样的问题,在VOC2007数据集上训练了mobilenet/ResNeXt101等,准确率也一直在0.2左右,未见提升。 请问你解决了此问题吗? 系统:Ubuntu 16.04 CUDA:10.0 Tensorflow-gpu:2.0.0
> 选用的learning rate合适吗?改变learning rate效果有改变吗? @Jaren1907 @MingKeYue 我修改了学习率,结果没有变化。我使用的flower数据集和VOC2007数据集。 当我使用tf.keras官方的tf.keras.applications.MobileNetV2训练时,加载了预训练权重后,模型表现正常,但没有加载预训练权重时,acc也像这个项目中一样,一直在0.2左右 因此加载预训练权重后,应该可以解决问题,但作者未提供预训练权重
我在新的训练过程中,增大batch,调小学习率,并将训练数据处理为格式相近的数据后,训练过程变的正常了 同时,可以参考[DeepSpeed issue #1773](https://github.com/microsoft/DeepSpeed/issues/1773#issuecomment-1040655702)中的做法,将`fp16`切换为`bf16`,如同上面的[ChanLee9所述](https://github.com/THUDM/ChatGLM-6B/issues/1008#issuecomment-1578379536),但我目前还未尝试这种方法
使用`main.py`中`print_dataset_example`输出一下训练数据样例看一下?
可以参考这篇文章哈 https://zhuanlan.zhihu.com/p/643276738
> The labels are differed by datasets and how you define the anchor boxes. > I didn't make this repo to fit in a specific dataset. If you propose a...
I have encountered the same problem. Have you resolved it ?