You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Excellent work on this project, the moondream example works great. One thing I'd like to try is the latest version of moondream. In the current readme, that's for "2025-01-09" in "vikhyatk/moondream2".
I've tried to update it myself, but I reached my limit. The furthest I got, and hopefully this is helpful information, is printing the new vars:
Let me know if there's anything else I can try. Otherwise, I hope this helps whoever might be able to do this, like @LaurentMazare.
I used this code snippet:
use safetensors::SafeTensors;let data = std::fs::read(&model_file)?;let tensors = SafeTensors::deserialize(&data).map_err(|e| std::io::Error::new(std::io::ErrorKind::Other, e))?;println!("Tensors found in safetensors file:");for name in tensors.names(){let info = tensors.tensor(name).unwrap();println!(" {} => shape: {:?}, dtype: {:?}",
name,
info.shape(),
info.dtype());}
The text was updated successfully, but these errors were encountered:
Excellent work on this project, the moondream example works great. One thing I'd like to try is the latest version of moondream. In the current readme, that's for
"2025-01-09"
in"vikhyatk/moondream2"
.I've tried to update it myself, but I reached my limit. The furthest I got, and hopefully this is helpful information, is printing the new vars:
Let me know if there's anything else I can try. Otherwise, I hope this helps whoever might be able to do this, like @LaurentMazare.
I used this code snippet:
The text was updated successfully, but these errors were encountered: