tiger-wang

Results 10 comments of tiger-wang

打开training_artifacts/download_all.py,你会看到 ```python dlutils.download.from_url('https://alaeweights.s3.us-east-2.amazonaws.com/ffhq/model_157.pth', directory='training_artifacts/ffhq') ``` 我也不知道它是什么,但是我可以猜出来,他的意思是下载`https://alaeweights.s3.us-east-2.amazonaws.com/ffhq/model_157.pth`,然后把它放在`training_artifacts/ffhq`目录下。 你可以手动下载这个链接,然后把它放在正确的位置。

两年没更新了,已经不支持安卓14了。安卓14想玩fps游戏的,可以看看我复刻的项目,https://github.com/VacantHusky/scrcpyFpsGameKeyMap

作者已经很久没更新了,不支持安卓14了。 建议使用我的仓库:https://github.com/VacantHusky/scrcpyFpsGameKeyMap

两年没更新了,已经不支持安卓14了。安卓14想玩fps游戏的,可以看看我复刻的项目,https://github.com/VacantHusky/scrcpyFpsGameKeyMap

> > It hasn't been updated for two years, and Android 14 is no longer supported. Android 14 If you want to play fps games, you can take a look...

你好,我用的是python的pygame模块,绘图过程中实际上是没有笔的概念。它是一帧一帧的画图,然后形成动画的。你所说的都可以实现。 你如果熟悉python的话可以看源码。 你的问题不太具体,我没法回答。另外,我的这个程序着重点是在傅里叶变换而非画图,画图也可以使用phython的turtle模块。

我知道原因了,只能使用cpu而不能使用gpu。 ``` # 可以 model = AutoModelForCausalLM.from_pretrained(model_id, gguf_file=filename, device_map="cpu") # 报错 model = AutoModelForCausalLM.from_pretrained(model_id, gguf_file=filename, device_map="auto") ``` 能否提供gptq格式的?