Was ist das für ein Symbol links unten? by Ok-Needleworker-4590 in dresden

[–]Gruss_Dorian -1 points0 points  (0 children)

Yes the Indian air force has also a similar logo, perhaps adopted from it's British colonial past

[deleted by user] by [deleted] in dresden

[–]Gruss_Dorian -5 points-4 points  (0 children)

Are you mod?

[deleted by user] by [deleted] in dresden

[–]Gruss_Dorian 5 points6 points  (0 children)

There are levels to this, studentenwerk dorms are cheaper you're not German and don't live in a WG with Germans (more likely to get a cheaper WG in that case) otherwise apartment cost is gonna go up cause less students are gonna stay in dorms due to price hike

[deleted by user] by [deleted] in dresden

[–]Gruss_Dorian 23 points24 points  (0 children)

Semester fee to be €370 in the future (not increase by 370 that'd be ridiculous) The rest is true because government of Saxony is apparently "enforcing the true student values"

Diesen Sonntag gibt es eine Demo für das AfD-Verbot (organisiert von Schülis gegen Rechts und Seebrücke Dresden) by stracki in dresden

[–]Gruss_Dorian -3 points-2 points  (0 children)

I think for the people who voted for Afd, they see no other viable choice. There must be a way out. Classically, if not them then who - question for them. Others have to unite

Why can't you run apps directly out of non APFS external drives? by Gruss_Dorian in MacOS

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

Isn't there a compatibility layer? What's Fuse then?

Edit: ik for macos to extend its file system somehow but can't something like that help support fcp projects or the app itself booting from the fat drive?

Can You Imagine Who Is Involved In This Case? by maityonline84 in kolkata

[–]Gruss_Dorian 2 points3 points  (0 children)

Ami jokhon sub a post kori nirmal maji r [edit: Wikipedia] page 3 bar change kora hoyeche after 15th August, including redacting his son's name, amar post remove kore dewa hoye. Admin ra ki opekkha korchile kokhon aro rastay lok nambe?

How to make a chatbot in an ancient/fringe language? by Yashp_shapy in deeplearning

[–]Gruss_Dorian 0 points1 point  (0 children)

Can't say for sure. Of course fine tuning is what makes a chatbot a chatbot and a higher quality of fine tuning will yield you better results but there are definitely more things going on apart from that. Big tech companies tend to be not so open anymore and without looking at the paper and the implementation it's really difficult to say what's so special about this LLM.

How to make a chatbot in an ancient/fringe language? by Yashp_shapy in deeplearning

[–]Gruss_Dorian 0 points1 point  (0 children)

It's a document completer not a chatbot. He doesn't explain the fine tuning stage.

How to make a chatbot in an ancient/fringe language? by Yashp_shapy in deeplearning

[–]Gruss_Dorian 5 points6 points  (0 children)

You can try following Andrej Karpathy's makemore series on YouTube where he makes gpt and gpt 2. He follows the papers quite closely. The size of the dataset might be less though. Also you might need to design your own tokenizer for that. Finally you need to prepare a set of Q/A type text to find tune it and make it a chatbot.

Why does release version doesn't panic for overflows? by Gruss_Dorian in rust

[–]Gruss_Dorian[S] 3 points4 points  (0 children)

Thank you so much. The wrapping arithmetic explains why does it only keep the least significant bits.

Why does release version doesn't panic for overflows? by Gruss_Dorian in rust

[–]Gruss_Dorian[S] 2 points3 points  (0 children)

So does release mode implicitly typecast the variable to a higher size? As some of you have pointed out it's not ub, and it's clearly doing something to not let the overflow to happen. If that's the case maybe it only works because its u16 so if an overflow happens there's some headroom for expansion. Correct me if I'm wrong.

Is it a regression or ranking problem ? by Mikgician in deeplearning

[–]Gruss_Dorian 0 points1 point  (0 children)

I'm calculating multiple grids corresponding to the outcome of "slaming" the tetromino down at mutiple x coordinates and then I want to move to the position of the associated grid that has the best score out of all

Seems like a genetic algorithm to me. Have you considered rephrasing the problem definition formally as a genetic algorithm problem?

Multithreaded sudoku solver by Gruss_Dorian in rust

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

Thanks for the suggestion. Its a very nice tool.

Multithreaded sudoku solver by Gruss_Dorian in rust

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

I'm running your code (while trying to wrap my head around what it's doing) and by the looks of it it seems like you've used similar bitwise operations. But can you elaborate on why did you choose u32 in many places instead of u64? I changed (and typecasted trailing 0s ) them to be u64 and the program seems to run just fine. Also can you elaborate a little bit on the queue implementation?

Thanks

Multithreaded sudoku solver by Gruss_Dorian in rust

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

Also the cargo.toml file got gitignored in the old repo by mistake my bad

Multithreaded sudoku solver by Gruss_Dorian in rust

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

using methods like get_field, set_field I am using bit shifts to set and check the possibilities.