Abi Shrestha
Abi Shrestha
I found the issue while trying to mimick the Navbar but wasn't able to size the svg no matter what. Later I tried to look into it due to its...
i got a fix without having to reinstall transformers https://github.com/deepseek-ai/Janus/issues/77#issuecomment-2634147660
bump this. a block list to avoid tiling certain popup windows would be wonder addition. unless it's been added and i'm unaware of it, please let me know
https://github.com/deepseek-ai/Janus/issues/77 https://github.com/deepseek-ai/Janus/issues/99 fixes these issue
Yeah, so the main issue was that past_key_values was never getting updated inside the loop, which meant it was always None. That’s why the model couldn’t reference past states properly,...
how can i contribute? Since, it's hosted on vercel, it's a simple fix for now
it's working on the main domain, only not seeming to work on preview builds.
Cloudflare is such a good choice. I've been using it recently as well. Kudos!
just created a fix for this https://github.com/deepseek-ai/Janus/pull/137 Replace the code on line 108 - 122 ``` if step == 0: outputs = vl_gpt.language_model.model(inputs_embeds=llm_emb, use_cache=True, attention_mask=attention_mask, past_key_values=None) past_key_values = [] for...