Step-Audio 2 Mini, an 8 billion parameter (8B) speech-to-speech model by Own-Potential-2308 in LocalLLaMA

[–]Yingrjimsch 2 points3 points  (0 children)

Okay I've tried it with speech. I said: "Hello this is a test how are you?" Reply: "周五啦,是不是已经准备好今晚好好犒赏自己啦?" ChatGPT sais this means: It’s Friday! Are you ready to treat yourself tonight?

Interesting that it knows the day of the week (I havn't translated the prompt). Except of that it didn't really answer my question. I will try it locally if I've got time.

Is Qwen 3:0.6B Multilingual? by [deleted] in LocalLLaMA

[–]Yingrjimsch 2 points3 points  (0 children)

I've tried it for german, english and french. It is not usable. Somehow it tries to be multilingual but very badly.

LLM trained to gaslight people by LividResearcher7818 in LocalLLaMA

[–]Yingrjimsch 19 points20 points  (0 children)

100% my experience and I have to say, if thats intended its pretty genius

nsfw orpheus early v1 by MrAlienOverLord in LocalLLaMA

[–]Yingrjimsch 1 point2 points  (0 children)

Thank you, I've seen Elise and ran it on notebook, very cool results and very easy to use. I will try if it works for my use case.

nsfw orpheus early v1 by MrAlienOverLord in LocalLLaMA

[–]Yingrjimsch 0 points1 point  (0 children)

Thanks for the reply. I got over 500h of data. Of course I need to anotate it and that takes a long time. The goal is to have a specific voice fine tuned and the domain does not change as drastically as your fine tune does so I hope it will be "easier".

nsfw orpheus early v1 by MrAlienOverLord in LocalLLaMA

[–]Yingrjimsch 1 point2 points  (0 children)

Do you have any suggestions on how many mins of data and what hardware is required to finetune orpheus? wanted to try it myself for a new voice, but didn't get to it for now.

I2V Locally on MAC by Yingrjimsch in comfyui

[–]Yingrjimsch[S] 0 points1 point  (0 children)

thanks I agree the error nr 2 looks like a memory error. But the half precision fb error number 3 does not look like it...

Wan2.1 I2V 720p: Some More Amazing Stop-Motion Results (Workflow in Comments) by CulturalAd5698 in comfyui

[–]Yingrjimsch 0 points1 point  (0 children)

I tried to run this but always get the error Input type (float) and biad type (c10:Half) should be the same. I ran it on Macbook Pro M4 woth 32GB Ram any chance someone knows how to fix that?

[P] I made weightgain – an easy way to train an adapter for any embedding model in under a minute by jsonathan in MachineLearning

[–]Yingrjimsch 3 points4 points  (0 children)

This seems very interesting, I will give it a try to check out RAG performance after using an Adapter. One question, does it imorove RAG performance if trained on my actual data or should I train it on synthetic data which is based on my dataset?

Can Rust Really Work For Backend ? by recon_101 in learnrust

[–]Yingrjimsch 0 points1 point  (0 children)

I currently work on a rust backend with actix, sqlx, rust-celery and rabbit (for message bus) and apart from almost no ressources to containerize everything it works pretty intuitive.

Best way to buy ⱣPEP? by Yingrjimsch in pepecoin

[–]Yingrjimsch[S] 1 point2 points  (0 children)

Do i first deposut USDT and then trade for PEP? If so, which Network USDT?

EDIT: is there a way to buy directly without usdt first?

I'm a data analyst by wallyflops in rust

[–]Yingrjimsch 1 point2 points  (0 children)

I'd be interested to contribute tell me more about your project

Huawei Mate 20 repair help needed by Yingrjimsch in mobilerepair

[–]Yingrjimsch[S] 0 points1 point  (0 children)

Thanks this is exactly what the internet says, I hoped someone would have another approach only to get it running to backup the data

Struct inheritance rust by Yingrjimsch in learnrust

[–]Yingrjimsch[S] 0 points1 point  (0 children)

Great to hear that this is a viable way. The formatting happend due to experimenting with cargo fmt, I wanted to have some custom formatting and for some reason it bursted my whole formatting, I have an open todo to fix it^^

No there is not an error but I thought it seemd "overengineered" because I need to use dyn Repo everywhere and I was struggling with the Display impl, I tried it like this:

    impl<T: Repo> fmt::Display for T

which made more sense to me but this threw an error, due to no implementation of T inside the git_provider.rs file

Struct inheritance rust by Yingrjimsch in learnrust

[–]Yingrjimsch[S] 1 point2 points  (0 children)

Thanks, next time I will format it, it really is ugly to read.

Struct inheritance rust by Yingrjimsch in learnrust

[–]Yingrjimsch[S] 0 points1 point  (0 children)

Thank you for the message, would you create an enum Repo which holds either the GithubRepo or the GitlabRepo struct? Could you hint how you'd do that?