feng wang

Results 45 comments of feng wang

> does this head-only matrix tool support effective sparse matrix store, process, etc? @manuel76413 No. This library is designed as close as possible to STL containers, in which iterator is...

@anntzer Maybe you we can skip all the candidates from here without breaking the pipeline, and remind the user to install it afterwards?

You can also pin the click package in the .toml file by setting ```toml click = "8.0.2" ```

@mplx Could you please update the instructions more detailedly? The docker file is not self-explaining, and a list of example configurations and commands is appreciated.

For example, in the 5th line of unet.xml, the shape is hard set to `(2, 4, 64, 64)`. Is this parameter related to the output resolution? How are these .xml...

> The clip-vit-large-patch14 (https://huggingface.co/openai/clip-vit-large-patch14) model used by SD can only handle sequences of 77 tokens. It works like that in the original pytorch implementation as well. Anything longer than that...

@cmdbug 从 debug log 来看, 似乎是 param 文件版本太老的问题: ``` 07/18 16:36:20: Launching 'app' on HUAWEI EVR-N29. App restart successful without requiring a re-install. $ adb shell am start -n "com.wzt.yolov5/com.wzt.yolov5.WelcomeActivity"...

Is it possible to modify the corresponding part in this file ```go var audioFormats = map[string]foirmat{ ".3gp": {typ: "audio/3gpp"}, ".669": {typ: "audio/x-mod"}, ".726": {typ: "audio/32kadpcm"}, ".aa3": {typ: "audio/ATRAC3"}, ".aac": {typ:...

> Raw DTS and AAC streams are almost always used inside an MP4 container, you can mux them into the container with: `ffmpeg -i audio.aac -c:a copy audio.m4a` Many thanks...