fat tiger
fat tiger
``` alias: { 'react': 'nervjs', 'react-dom': 'nervjs' } 导入之后报错: Nerv is not defined ```
### Microsoft PowerToys version 0.80.0 ### Installation method GitHub ### Running as admin Yes ### Area(s) with issue? PowerToys Run ### Steps to reproduce When I install an application in...
This repo is excellent. I have learned a lot from it! Additionally, I would like to ask if the author has any plans to combine `segment-anything` and `onnxruntime-web` together? so...
此`issue`为解决 python 3.12无法安装 `pip install`的问题。主要错误为 ``` ModuleNotFoundError: No module named 'distutils' ``` 这个错误经查阅是3.12版本移除了这个包,导致3.12版本安装错误。 ### 解决办法 将python版本降低到支持`distutils`的版本,还是经过查阅 3.11支持为了稳妥我选择了3.10版本,退回到3.10后 再次执行`pip install` 安装成功 ### 没有翻墙或者翻墙速度较慢的安装时可能会超时使用如下命令替换: 阿里镜像源安装 ``` pip install -i https://mirrors.aliyun.com/pypi/simple -r requirements.txt...
在使用gpu推理时 遇到`cuda`和`onnxruntime torch`版本不匹配导致推理失败的问题。写了两句说明帮助大家先check本地版本 减少大家排查问题的时间 英语,日语,韩语均为机翻。还请大佬check下是否有语法错误~
大佬你好,在研究代码时 对这一段代码有些疑惑。 ```python # deploy_api.py creator = IDCreator() @app.post("/idphoto") async def idphoto_inference(): # ------------------- 选择抠图与人脸检测模型 ------------------- choose_handler(creator, human_matting_model, face_detect_model) # 后续代码 ``` 在choose_handler函数内部对creator实例属性做了一些改变。我这里有一个疑问。如果同时有两次请求 a和b。a在执行完`choose_handler` 还未执行到下一句代码时,b请求也执行完了`choose_handler` 这时 a请求在执行下一句代码时岂不是使用了b请求设置的模型。因为creator被提到了全局变量中 b请求中修改了实例属性,理论上a也能获取到。望大佬关注~