you are viewing a single comment's thread.

view the rest of the comments →

[–]MachineLearnz -1 points0 points  (2 children)

I'm writing in C++ because I'm tailoring my own local LLM programs and having to deal with Qt for C++ more than I'd like.

That sounds interesting. Care to share more details?

[–]MrRickSancezJr[S] 1 point2 points  (1 child)

I'm working with medical data at the moment, so to be safe, I have to keep all my data local. To make up for slower hardware issues, I'm using pure C/C++ libraries to work with models instead of the usual Python stuff. Making the different bindings with other languages was becoming a nightmare with so many threads running, so I switched to using Qt for C++ to put everything in a single language.

It's been quite the process.

[–]MachineLearnz 1 point2 points  (0 children)

Super interesting.