ColdCurlyFu
ColdCurlyFu
I want to re-divide the dataset in the DAMSM stage, and use the originally divided dataset in the image generation stage. I don't know whether the results obtained in this...
ubuntu设置手动代理时,系统默认的no_proxy规则包含127.0.0.1和::1两个回环地址,由于代码只支持ipv4的解析规则,导致报错,建议增加ipv6的识别和解析。 相关[代码](https://github.com/chatchat-space/Langchain-Chatchat/blob/6dd066ca72384fcd0a5b471ea46b27988f8db38c/server/utils.py#L488)如下: ```python for host in os.environ.get("no_proxy", "").split(","): if host := host.strip(): # default_proxies.update({host: None}) # Origin code default_proxies.update({'all://' + host: None}) # PR 1838 fix, if not add 'all://',...