psp_dada

Results 20 comments of psp_dada

I encountered the exact same issue on my Zotero 7, where "Attention Is All You Need" has been assigned the citation count of the paper "Attention is all you need...

I encountered a similar situation; how was it supposed to be originally? ``` - This IS expected if you are initializing LlavaLlamaForCausalLM from the checkpoint of a model trained on...

> Currently not supported. Do you have the plan to support it in the near future?

> might be related: [pytorch/pytorch#132617](https://github.com/pytorch/pytorch/issues/132617) > > if you install pytorch via `conda`, it might cause problems. the recommended way is to use `pip install torch` Thank you so much!...

> I see you are using multi-step, so could also be related to #8403, now merged. I regret to say that this solution did not work for my problem.

> I see you are using multi-step, so could also be related to #8403, now merged. I ran the test document: it seems to be hanging at the same place,...

More info: I tried uninstalling PyTorch installed via conda and then installed it using pip, but this didn't make any difference. I tried to update the vllm from v0.6.0 to...

> Found a solution, uninstall omegaconf, pydevd and debugpy, then delete folder /venv/lib/python3.11/site-packages/pydevd_plugins/extensions and install uninstalled libraries again (I guess that omegaconf should be installed in the end to catch...

> 开机启动慢有可能是win11的问题 ,win11现在会等空闲时才启动下个开机自启程序,自启多的话会排队排很长时间 下面这段保存成xxx.reg,双击导入注册表,然后重启,开机启动的程序自启会快很多 > > ``` > Windows Registry Editor Version 5.00 > > [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Serialize] > "StartupDelayInMSec"=dword:00000000 > "WaitForIdleState"=dword:00000000 > ``` > > 参考 :https://bstar.de/2024/06/08/windows-11-autostart-apps-delays-very-long-after-boot/ 还真是,这解决了我的问题

Simply changing `if model.peft_config is None:` to `if not hasattr(model, 'peft_config') or model.peft_config is None:` can resolve this issue, and no anomalies were found during the subsequent fine-tuning process.