Wangzhe

Results 7 issues of Wangzhe

`tag_only模式下tag为空字符` -> `seg_only模式下tag为空字符`

Get this exception when load model: `Exception in thread "main" java.lang.RuntimeException: vector too long at com.github.jfasttext.FastTextWrapper$FastTextApi.loadModel(Native Method) at com.github.jfasttext.JFastText.loadModel(JFastText.java:25)`

如何关闭鼠标手势?

enhancement

https://github.com/li-plus/chatglm.cpp/blob/3286db5306c5d3245ea147082e69313010617a92/Dockerfile#L49-L58 需要修改如下: 1. 添加`/chatglm.cpp/build/lib`,否则对于`For CUDA support`的`main`程序,会缺少`libggml.so` 2. 对`pip install`添加`--pre`,否则`pip install -f dist 'chatglm-cpp[api]'`会忽略`dist`目录下的新构建的Python包,而是下载编译 pypi 里的正式版本 ``` COPY --from=build /chatglm.cpp/build/bin/main /chatglm.cpp/build/bin/main COPY --from=build /chatglm.cpp/build/lib /chatglm.cpp/build/lib COPY --from=build /chatglm.cpp/dist/ /chatglm.cpp/dist/ ADD examples...

**Describe the feature** (已经`pip install -U modelscope`更新到最新版,目前版本号是:`modelscope==1.14.0`) modelscope项目里目前默认的缓存目录或者说主目录是:`~/.cache/modelscope`,但是当通过设置环境变量,在这个非默认目录下加载或者下载模型时,就会遇到和默认目录不一致的问题。 比如希望把目标目录改成:`/data0/modelscope`,希望通过pipeline加载的模型`damo/nlp_raner_named-entity-recognition_chinese-base-ecom`,以及当前在任何目录下都没有这份模型文件。 在代码中加载模型的语句如下: ``` import modelscope from modelscope.pipelines import pipeline from modelscope.utils.constant import Tasks model_id = "damo/nlp_raner_named-entity-recognition_chinese-base-ecom" pipe = pipeline(Tasks.named_entity_recognition, model_id) ``` *...

`datetime.utcfromtimestamp()` is used in the source code, which converts `time.time()` or `self.now` parameter value to the wrong datetime instance. https://github.com/spotify/luigi/blob/829fc0c36ecb4d0ae4f0680dec6d538577b249a2/luigi/tools/range.py#L219 ``` now = datetime.utcfromtimestamp(time.time() if self.now is None else self.now)...

**Is your feature request related to a problem? Please describe.** Why is the `Ctrl + Click` shortcut bound to `Right Click` here? https://github.com/Eugeny/tabby/blob/aab7e285a901da63ad662a5686a64c5fd72a2711/tabby-terminal/src/api/baseTerminalTab.component.ts#L712 https://github.com/Eugeny/tabby/blob/aab7e285a901da63ad662a5686a64c5fd72a2711/tabby-terminal/src/api/baseTerminalTab.component.ts#L718 **Describe the solution you'd like** There...