Implementing a scientific paper is always a bet. Sometimes it just works. Sometimes you find so many holes in the solution that I feel like I'm rewriting the article from scratch.
Creating a terminating rule is easy if you do it in reverse. Start with some terminals and then join them with add, mult etc. until you have three left and return them as triple. It's just like building a mahjong stack is super easy, but solving is hard and may fail. I really enjoyed the full 4h. This was one of your best streams ever!
This. Also, there is no min. depth for a grammar; you just follow the first branch assuming it terminates. He also missed the part in the paper where there is only 50% chance to go deeper, bro just needs to read. He should have titled the video "Implementing a scientific paper but changing everything because I don't feel like reading it" smh
Hi Tsoding, not sure if you read the paper or not but your sum operation is not correctly defined. According to the paper """ All functions appearing in the RandomArt algorithm are scaled so that they map the interval [-1; 1] to the interval [-1; 1]. This condition ensures that all randomly generated expression trees are valid. For example, the scaling for the add function is achieved by defining add(x; y)=(x + y)/2 """ Because your add(x;y) is defined as x+y, it means that your sum node generates invalid expression tree and that's why you were able to generate all those beautifully looking non-linear patterns. I'm not sure it's possible to generate images that you did (4:26:19, 4:26:47 and so on) by using any combination of x,y, add and mult (linear) operands
it's not that he generated an invalid expression tree. The expression tree generated was a valid one, rather the evaluation as you're correctly pointing out was not aligned with the paper.
2:58:03 Da die Eulerzahl näher an die 3 als an die 2 ist, ist in der Theorie eine Dreierlogik für das effiziente (also möglichst platzsparend) Speichern der Daten besser. Was wir in der jetzigen Welt für Effizienzkriterien haben, ist eine andere Geschichte.
You have the coolest RUclips developer channel. Do you work in the IT industry or do you only do RUclips and these projects (plus patreon and stuff) as a means to make money?
He doesn't make money from Twitch/RUclips/Patreon because he is in Russia. He used to work as a software developer for some American company, presumably he saved enough and lives frugally enough to not have a day job anymore. But who knows?
Omg just provide happy path by marking grammar rules that eventually lead to termination with ones, and when you exceed depth take that path. It will no be exactly the right depth but within 2 lvls. You can even have multiple options to exit and scale probabilities. The struggle was painful to watch. But I guess you should have figured it out already. But cool result though nevertheless On a side note, you can precompute how much it takes to exit (in min steps) via each rule in production to make the border strict and do not take path that cannot terminate in time. Its just a graph problem in the end.
you dont need all this stuff with bools and ifs. if you make all funcs binary, like if_gt, if_less etc - you can store it in just an array-packed binary tree and execute all genetic ops on this array
danke für den wunderbaren Ausflug in so eine beschissene Sprache wie C. Ich hatte während der Reise mehrere Schweißausbrüche erlebt und musste mir mehrere Tassen Tee machen, um den Flüssigkeitsverlust zu kompensieren. Es war sehr unterhaltsam.
In reference to the terminal nodes: I have to ask, is a terminal node not simply a node of type A? As you're calling E, you get a triplet of C C C which then can be a op which then can be self-referential to As, and As can only be random number within range or x or y. As you traverse the grammar, any A node is a terminal node, as described in figure 3 (a)? Am I misunderstanding?
Use Rust at 2:20:01. Me litterally coding along writing the same thing in Rust. (because using the same language aas Mr. Tsoding is too easy) Actually Rust is quite nice with pattern matching on the Node enum and yes I clone all over the place to have a fun time in Rust.
C; single file dependency Cargo: Lets download profiling, deques, bigint, unicode, weezl, adler32, adler2-simd,... they even use a crate "rgb" for a single struct of rgb pixels, an entire crate!
A BNF is essentially a DFA (from what I remember from my language processing classes and personal experience. Might be some cases where that breaks, though).
@@edbrito-swdev BNF is a notation for CFG, and DFA is below CFGs on the Chomsky Hierarchy, which makes it a subset of CFG, though BNF is usually not used for it. DFA is equivalent to NFA (up to exponential difference in size), and regular expressions are the common notation for NFAs.
@@MrFram Yes, you are obviously completely right. I should have thought a little more about it before writing. Of course Backus Naur has to be above because it is used for grammars and DFAs are used for things like regexes. This should have been obvious to me 🤦
I use your binviz for that. Will you take a PR thru a comment since I can't find my github password or recovery codes? I'll make it a couple of sed commands since its small.
i think theprimeagen has some decent vim tutorials that are worth watching as a beginner. id recommend using vim (neovim) almost exclusively while you learn it, and to try to incorporate it into your workflow wherever you can. the best way to learn it is by immersing yourself in it. also you should rebind your capslock key to either ctrl or escape - i prefer ctrl but ive heard many vim users like escape
Big neural networks with random weights basically just give you average values. I think that if you tried small neural networks, one for each r, g and b values, it would be much more interesting!
For an hour he tried to go around a depth by still doing the same thing as the depth does not exist. Instead of doing what chat tried to tell him "just return NK_RAND and make it terminal". You should go to water instead of tea because it's clearly makes you so freaking nervous and unfocussed, man. (joking, but still, wtf is happening with you? you haven't being like that year ago)
sir why don't you make video series about the topic you cover, I mean It's Hard to see specific topic don't you think it's unorganised, I also looked at playlists but I didn't find that I was looking for... can you please make new series on golang...?
implementing a scientific paper in C, but also an in depth strawberry pasta discussion at 20:10.
Where else would I go to find such diverse content
Implementing a scientific paper is always a bet. Sometimes it just works. Sometimes you find so many holes in the solution that I feel like I'm rewriting the article from scratch.
You missed the opportunity to use Lisp in the domain, where it is at it's best: Generating code at runtime and executing it.
lisp supremacy
Could you provide a code snippet/gist to showcase where you would use macros? Just curious.
@@adrien335 Yes I could.
@@krux02 But will you? 😂
Thank you so much for sharing your AMAZING video!! 🔥🔥🔥💐
Plz, continue making more and more paper 📃 to C videos 🙏
in the end, programming is all about printf-ing a triangle of stars and feeling good about it: but the level here is quite higher ! thanks
Errr, no. Tsogramming is much more than that. Printf to a terminal, are you from the 1970s?
Creating a terminating rule is easy if you do it in reverse.
Start with some terminals and then join them with add, mult etc. until you have three left and return them as triple.
It's just like building a mahjong stack is super easy, but solving is hard and may fail.
I really enjoyed the full 4h.
This was one of your best streams ever!
this is the kind of generative art i can get behind, very cool
Don't know if you resolve it later, but the paper says to always pick branches->items[0] when depth
This. Also, there is no min. depth for a grammar; you just follow the first branch assuming it terminates.
He also missed the part in the paper where there is only 50% chance to go deeper, bro just needs to read. He should have titled the video "Implementing a scientific paper but changing everything because I don't feel like reading it" smh
Best way to learn C when coming from another language 100%. Extremely educational.
Hi Tsoding, not sure if you read the paper or not but your sum operation is not correctly defined. According to the paper
""" All functions appearing in the RandomArt algorithm are scaled so that they map the interval [-1; 1] to the interval [-1; 1]. This condition ensures that all randomly generated expression trees are valid. For example, the scaling for the add function is achieved by defining add(x; y)=(x + y)/2
"""
Because your add(x;y) is defined as x+y, it means that your sum node generates invalid expression tree and that's why you were able to generate all those beautifully looking non-linear patterns. I'm not sure it's possible to generate images that you did (4:26:19, 4:26:47 and so on) by using any combination of x,y, add and mult (linear) operands
it's not that he generated an invalid expression tree. The expression tree generated was a valid one, rather the evaluation as you're correctly pointing out was not aligned with the paper.
2:58:03 Da die Eulerzahl näher an die 3 als an die 2 ist, ist in der Theorie eine Dreierlogik für das effiziente (also möglichst platzsparend) Speichern der Daten besser. Was wir in der jetzigen Welt für Effizienzkriterien haben, ist eine andere Geschichte.
wow Tsoding knows about the valencian flooding! it was pretty rough
55:53 NOB_PLEASE_DONT_NUKE_MY_HOUSE
functions mentioned
You have the coolest RUclips developer channel.
Do you work in the IT industry or do you only do RUclips and these projects (plus patreon and stuff) as a means to make money?
Ok, I just saw you saying "Why pasta with strawberry isn't fine" and now I've lost all my respect for you.
Just kidding (but I was shook).
He writes code for banks in the .ru
He doesn't make money from Twitch/RUclips/Patreon because he is in Russia.
He used to work as a software developer for some American company, presumably he saved enough and lives frugally enough to not have a day job anymore. But who knows?
he's a cia bot
@@thebirdhasbeencharged KGB*
Omg just provide happy path by marking grammar rules that eventually lead to termination with ones, and when you exceed depth take that path. It will no be exactly the right depth but within 2 lvls. You can even have multiple options to exit and scale probabilities. The struggle was painful to watch. But I guess you should have figured it out already. But cool result though nevertheless
On a side note, you can precompute how much it takes to exit (in min steps) via each rule in production to make the border strict and do not take path that cannot terminate in time. Its just a graph problem in the end.
you dont need all this stuff with bools and ifs. if you make all funcs binary, like if_gt, if_less etc - you can store it in just an array-packed binary tree and execute all genetic ops on this array
Epic programming moment
danke für den wunderbaren Ausflug in so eine beschissene Sprache wie C. Ich hatte während der Reise mehrere Schweißausbrüche erlebt und musste mir mehrere Tassen Tee machen, um den Flüssigkeitsverlust zu kompensieren. Es war sehr unterhaltsam.
In reference to the terminal nodes:
I have to ask, is a terminal node not simply a node of type A? As you're calling E, you get a triplet of C C C which then can be a op which then can be self-referential to As, and As can only be random number within range or x or y.
As you traverse the grammar, any A node is a terminal node, as described in figure 3 (a)?
Am I misunderstanding?
The point is he wants it to work for any grammar / set of rules, not just the one in the paper - which was just one example
You know, you can apply an invert filter to the CSS in your browser's PDF reader.
Not a lisper myself but this paper sounded like the ideal case for Lisp
The resulting image is insane
30:39 recreational beatboxer / programmer
Damn.. got a little crazy once he got to the nn/grammar stuff.. uff
Is there a video for when you implemented the bnfuzzer?
2:33 hash visualization
Maybe I will implement genetic art as referenced as an inspiration in the paper
42:26 Just pretend that your image format uses a 0.8 fixed-point numbers for the color channels. Then even PNG uses the [0..1) range!
Use Rust at 2:20:01. Me litterally coding along writing the same thing in Rust. (because using the same language aas Mr. Tsoding is too easy)
Actually Rust is quite nice with pattern matching on the Node enum and yes I clone all over the place to have a fun time in Rust.
C; single file dependency Cargo: Lets download profiling, deques, bigint, unicode, weezl, adler32, adler2-simd,... they even use a crate "rgb" for a single struct of rgb pixels, an entire crate!
Sad, that -Wint-conversion does not catch it.
that is so fucking cool man, nice man
You could have emitted RPN, which is much easier to process.
They litarly sad that going to moon was easier then faking it.
Assuming generating random gramar and parsing it was a moon landing.
BNF is almost basically a CFG for an automaton.
A BNF is essentially a DFA (from what I remember from my language processing classes and personal experience. Might be some cases where that breaks, though).
@@edbrito-swdev BNF is a notation for CFG, and DFA is below CFGs on the Chomsky Hierarchy, which makes it a subset of CFG, though BNF is usually not used for it. DFA is equivalent to NFA (up to exponential difference in size), and regular expressions are the common notation for NFAs.
@@MrFram Yes, you are obviously completely right. I should have thought a little more about it before writing.
Of course Backus Naur has to be above because it is used for grammars and DFAs are used for things like regexes.
This should have been obvious to me 🤦
I needa find a girl who's as loyal to me as zozin is to C
Tsoding uses other languages as well (maybe that's what you want from your girl)
Implement Chaotic map for PRNG next
Thank you....
bran cheese
we gettin 2 the bottom of this 2 day
Hello @laur0276, I am a subtitle watcher :)
Omg hello xD
Can you do more scientific papers please 🙏
no f way you get stack overflow on first try when there's only 2/3 chance to add a depth level
what tool do you use for dark mode on pdfs?
mupdf
You can also use okular and change its settings to invert colors. Seems to have the most features yet still runs fast, even runs on my Pi.
I use your binviz for that.
Will you take a PR thru a comment since I can't find my github password or recovery codes? I'll make it a couple of sed commands since its small.
You can generate a patch with either git or diff. Learn about it
@@greyshopleskin2315 Who woulda thunk‽
no @@greyshopleskin2315
this in GLSL!!!
Tsoding: What maps two spacial coordinates to a 3D color.
Me: A shader? (I know its a usually 4D color)
Tsoding: Neural Network.
@@theevilcottonball Lol, he did it with shaders
whats up с карнеги мелона
Do you have any vim tutorials? I wish I was as fast as you!
He uses Emacs. You can use any code editor for multiple years and start typing at insane speeds. It's about practice.
i think theprimeagen has some decent vim tutorials that are worth watching as a beginner. id recommend using vim (neovim) almost exclusively while you learn it, and to try to incorporate it into your workflow wherever you can. the best way to learn it is by immersing yourself in it. also you should rebind your capslock key to either ctrl or escape - i prefer ctrl but ive heard many vim users like escape
21:00
I want to disagree that bread == pasta so much. Thanks, I hate it.
I'm doing this bro, I was looking for a C refresher project then this came up.
Any suggestions?
Suggestions for what?
suggestion is: stop asking, do it
Oh
Based
> 420 meditation lane
lmao
Great ❤❤❤❤❤❤❤
Big neural networks with random weights basically just give you average values.
I think that if you tried small neural networks, one for each r, g and b values, it would be much more interesting!
30:58
neovim > emacs > my boring depressing life
j.k
amogus drip
from 16:9 to 4:5 weird
Your streams are free??
Streams are free, but you can't comment for free there. That only works here in the non life version.
@krux02 free to watch. that's already enough for me :D
✅✅✅✅✅✅✅✅
I don't care that chat is sub only, now. Twitch chat is useless most of the time anyway. In sub only mode its less useless but still useless.
try sokol
For an hour he tried to go around a depth by still doing the same thing as the depth does not exist. Instead of doing what chat tried to tell him "just return NK_RAND and make it terminal". You should go to water instead of tea because it's clearly makes you so freaking nervous and unfocussed, man. (joking, but still, wtf is happening with you? you haven't being like that year ago)
zozin ))))))
sir why don't you make video series about the topic you cover, I mean It's Hard to see specific topic don't you think it's unorganised, I also looked at playlists but I didn't find that I was looking for... can you please make new series on golang...?
cool but disliking for calling ipv6 a useless protocol
Cool but disliking for disliking the video for calling ipv6 a useless protocol
@@lolcat69 dislikes on comments don't do anything pal you're fighting the wrong battle