Ash
Ash
> any thoughts, guys? > I have no idea where I should find the answer. Drop some, please Use watch option: Below 👇 https://github.com/jaredpalmer/backpack/pull/53
Hi @danielcondemarin, Any update on this?
Hey.. I found the solution ..... by replacing window.scrollX and window.scrollY to document.documentElement.scrollLeft and document.documentElement.scrollTop ..... i able to drag elements...successfully !!
I guess not ready for me yet. Going for my old style ico-moon, Really interested in this once ready.
Any updates on this?
> Hi I have the same issue on the latest version. Pinning to 8.6.9 works fine You saved my another 24 hours that were about to go to waste, thanks!
Hi @HelgeKeck @markniu, may I know what are the configs for Klipper implementation?
@JayBee-git I was also thinking the same but not sure how Klipper will read the data from sensor. I'm also looking into it.
Facing the same issue: ``` "start": time_offset[prev_idx] + start_timestamp_pos.to(torch.float64) * time_precision, ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ TypeError: Cannot convert a MPS Tensor to float64 dtype as the MPS framework doesn't support float64. Please use...
After some debugging I was able to fix this using below workaround inside installed libs - File: insanely-fast-whisper/lib/python3.12/site-packages/transformers/models/whisper/generation_whisper.py ``` segments.append( { "start": time_offset[prev_idx].to(torch.float32) + start_timestamp_pos.to(torch.float32) * time_precision, "end": time_offset[prev_idx].to(torch.float32) +...