-
## 环境
1.系统环境:使用MegStudio
2.MegEngine版本:MegEngine 1.0.0
3.python版本:Python 3.7
## 复现步骤
1.使用hub加载resnet50预训练权重
## 请提供关键的代码片段便于追查问题
```python
import megengine
from megengine import hub
…
-
## 环境
1.系统环境:使用MegStudio
2.MegEngine版本:MegEngine 1.0.0
3.python版本:Python 3.7
## 复现步骤
1.my_dataloader.ipynb中编写CrowdDataset函数,返回值为tensor形式
2.train.ipynb中调用CrowdDataset函数
## 请提供关键的代码片段便于追查问题…
-
**Project** https://test.pypi.org/project/MegEngine/
**Does this project already exist?** Yes
**Size of release/project** 850MB / 10GB
**Which indexes** Test PyPI
**Reasons for the…
-
参考链接: https://www.oneflow.org/index.html
https://www.bilibili.com/video/BV1jy4y1B7ct/
1. 分布式性能(高效性)是深度学习框架的核心技术难点,为什么这么说呢?
2. OneFlow围绕性能提升和异构分布式扩展,秉持静态编译和流式并行的核心理念和架构,在我的印象里,深度…
-
1.Visual Studio 版本:Visual Studio 2017
2.Cmake版本: 3.18.1
3.编译过程:
mkdir build & cd build
cmake .. -DCMAKE_BUILD_TYPE=Release -G "Visual Studio 15 Win64" -DMGE_WITH_CUDA=ON -DMGE_WITH_TRT=ON -DTRT_RO…
-
## 环境
1.系统环境:ubuntu 18.04
2.MegEngine版本:MegEngine 1.1
3.python版本:3.6.9
## 复现步骤
见代码
## 请提供关键的代码片段便于追查问题
模型见
https://github.com/megvii-research/PMRID/blob/main/models/net_mge.py
先 dum…
-
MegEngine 的设计是希望用户用 `set_default_device` 全局指定设备(且我们多卡并行是依靠多进程实现,因此几乎不需要涉及到跨设备),而不是依靠 `to` 频繁在设备间拷贝(这会使得模型比较低 & 更不容易在推理侧运行)。因此建议在 Tutorial 部分只提 `set_default_device` 即可,`to` 的使用属于极特殊情况,建议在高阶部分再提及。
-
https://www.zhihu.com/question/377416272/answer/1139641928
-
https://github.com/MegEngine/mgeconvert/blob/master/mgeconvert/mge_context/mge_op.py#L302
```python
class ConvolutionBackwardDataOpr(MgeOpr):
name = "ConvolutionBackwardData"
def __ini…
-
**What's the problem this feature will solve?**
Nowadays, lots of packages contain large GPU code binaries that may take hundreds of megabytes. As CUDA11 has released recently, we found our package…