Results 16 issues of Yao Chi

在 API 文档 https://oneflow.readthedocs.io/en/master/ 中,因为历史遗留问题,存在一些低级的问题。 主要有以下几类问题: ### **导出了 API,但是没有文档** 如:https://oneflow.readthedocs.io/en/master/module.html#oneflow.nn.Module.apply ![image](https://user-images.githubusercontent.com/3351623/158761297-e86b069b-d18e-42d6-b3ff-040571ed3e98.png) ### 导出了 API,但是函数原型是空的,并且不正确 如:https://oneflow.readthedocs.io/en/master/oneflow.html#oneflow.tensor ![image](https://user-images.githubusercontent.com/3351623/158761554-6b13338c-c5e2-4587-ab8e-9147360c0fba.png) 这个 `tensor` 方法,显然有多个参数,原型并不是 `tensor()` **解决方法** 这类问题常常是因为,直接从 C 导出的接口,文档编译生成系统无法提取到正确的函数原型。因此其实要在 docstring 中的第一行显式写出。 像这样:https://github.com/Oneflow-Inc/oneflow/blob/master/python/oneflow/framework/docstr/array_ops.py#L369 ### 公式格式问题 如:https://oneflow.readthedocs.io/en/master/functional.html#oneflow.nn.functional.hardsigmoid...

之前用的 livere 留言板,这个商业服务时不时注入广告,挺影响感官的。 我们需要调研并加入免费、开源、无广告的留言板功能。 比如蔡晟航推荐的:https://github.com/utterance/utterances 把它集成到此仓库应该不难。

比如 ```python import oneflow.utils.vision.transforms as transforms ``` 需要改为 `import flowvision.transforms as transforms`。 需要改的地方有: 1. 中文版 2. 英文版 3. 云平台 不过 `flowvision` 也在过渡中,可能有些方法还不全,云平台的镜像默认也还没安装 flowvision。需要等: 1. flowvision 较成熟,有专门的文档 2. 云平台支持 flowvision 再来修改本仓库代码(有些例子就可以直接利用...

问题描述类似这个 issue: Oneflow-Inc/oneflow#7272 因为历史原因,models 中的模型可能存在 Tensor 和 tensor 的误用,需要排查并纠正。先记录在此,之后组织人排查和纠正。

Thank you for the greate tool comfy-cli. **Describe the solution you'd like** I want to install node with a specific versoin, like ``` comfy node registry-install comfyui-kjnodes==1.0.5 ``` Is it...

enhancement
question