Implementing Scientific Paper in C

Поделиться
HTML-код
  • Опубликовано: 4 апр 2025

Комментарии • 104

  • @sooth6487
    @sooth6487 4 месяца назад +46

    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

  • @ecosta
    @ecosta 4 месяца назад +10

    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.

  • @krux02
    @krux02 5 месяцев назад +94

    You missed the opportunity to use Lisp in the domain, where it is at it's best: Generating code at runtime and executing it.

    • @salim444
      @salim444 4 месяца назад +6

      lisp supremacy

    • @adrien335
      @adrien335 4 месяца назад +1

      Could you provide a code snippet/gist to showcase where you would use macros? Just curious.

    • @krux02
      @krux02 4 месяца назад +4

      @@adrien335 Yes I could.

    • @CrazyLuke11
      @CrazyLuke11 Месяц назад

      @@krux02 But will you? 😂

  • @Italya3343
    @Italya3343 5 месяцев назад +38

    Thank you so much for sharing your AMAZING video!! 🔥🔥🔥💐
    Plz, continue making more and more paper 📃 to C videos 🙏

  • @paper_cut9457
    @paper_cut9457 4 месяца назад +13

    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

    • @theevilcottonball
      @theevilcottonball 4 месяца назад

      Errr, no. Tsogramming is much more than that. Printf to a terminal, are you from the 1970s?

  • @froop2393
    @froop2393 4 месяца назад +4

    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!

  • @lifelover69
    @lifelover69 5 месяцев назад +15

    this is the kind of generative art i can get behind, very cool

  • @asdfmonstrosity
    @asdfmonstrosity 4 месяца назад +4

    Don't know if you resolve it later, but the paper says to always pick branches->items[0] when depth

    • @nel_tu_
      @nel_tu_ 4 месяца назад +5

      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

  • @geertdepuydt2683
    @geertdepuydt2683 4 месяца назад +2

    Best way to learn C when coming from another language 100%. Extremely educational.

  • @AHuMycK
    @AHuMycK 4 месяца назад +26

    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

    • @weekipi5813
      @weekipi5813 4 месяца назад +2

      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.

  • @mmilerngruppe
    @mmilerngruppe 2 месяца назад

    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.

  • @darktale6716
    @darktale6716 5 месяцев назад +2

    wow Tsoding knows about the valencian flooding! it was pretty rough

  • @angelcaru
    @angelcaru Месяц назад +1

    55:53 NOB_PLEASE_DONT_NUKE_MY_HOUSE

  • @itsmenewbie03
    @itsmenewbie03 5 месяцев назад +24

    functions mentioned

  • @edbrito-swdev
    @edbrito-swdev 5 месяцев назад +25

    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?

    • @edbrito-swdev
      @edbrito-swdev 5 месяцев назад +15

      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).

    • @blackt0wer
      @blackt0wer 5 месяцев назад

      He writes code for banks in the .ru

    • @H3llsHero
      @H3llsHero 5 месяцев назад +8

      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?

    • @thebirdhasbeencharged
      @thebirdhasbeencharged 5 месяцев назад +2

      he's a cia bot

    • @zaitsev5990
      @zaitsev5990 4 месяца назад +4

      @@thebirdhasbeencharged KGB*

  • @IvanNovitskii
    @IvanNovitskii 4 месяца назад +2

    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.

  • @Hamsters_Rage
    @Hamsters_Rage 4 месяца назад +1

    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

  • @coath
    @coath 5 месяцев назад +5

    Epic programming moment

  • @mmilerngruppe
    @mmilerngruppe 2 месяца назад

    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.

  • @John-yg1cq
    @John-yg1cq 4 месяца назад +3

    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?

    • @classawarrior
      @classawarrior 29 дней назад

      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

  • @thistent
    @thistent 5 месяцев назад +2

    You know, you can apply an invert filter to the CSS in your browser's PDF reader.

  • @xspager
    @xspager 4 месяца назад

    Not a lisper myself but this paper sounded like the ideal case for Lisp

  • @markahlenganpanjang
    @markahlenganpanjang 4 месяца назад

    The resulting image is insane

  • @Hodebrot
    @Hodebrot 4 месяца назад +1

    30:39 recreational beatboxer / programmer

  • @multicoloredwiz
    @multicoloredwiz 4 месяца назад

    Damn.. got a little crazy once he got to the nn/grammar stuff.. uff

  • @kaviisuri9997
    @kaviisuri9997 5 месяцев назад +4

    Is there a video for when you implemented the bnfuzzer?

  • @SphereofTime
    @SphereofTime 5 месяцев назад +1

    2:33 hash visualization

  • @theevilcottonball
    @theevilcottonball 4 месяца назад +1

    Maybe I will implement genetic art as referenced as an inspiration in the paper

  • @LarsDonner
    @LarsDonner 4 месяца назад

    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!

  • @theevilcottonball
    @theevilcottonball 4 месяца назад

    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.

    • @theevilcottonball
      @theevilcottonball 4 месяца назад

      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!

    • @theevilcottonball
      @theevilcottonball 4 месяца назад

      Sad, that -Wint-conversion does not catch it.

  • @Lucrecious
    @Lucrecious 4 месяца назад +1

    that is so fucking cool man, nice man

  • @JamesSjaalman
    @JamesSjaalman 4 месяца назад +1

    You could have emitted RPN, which is much easier to process.

  • @GesteromTV
    @GesteromTV 4 месяца назад +1

    They litarly sad that going to moon was easier then faking it.
    Assuming generating random gramar and parsing it was a moon landing.

  • @monad_tcp
    @monad_tcp 5 месяцев назад +2

    BNF is almost basically a CFG for an automaton.

    • @edbrito-swdev
      @edbrito-swdev 5 месяцев назад +1

      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).

    • @MrFram
      @MrFram 5 месяцев назад +2

      ⁠​⁠@@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.

    • @edbrito-swdev
      @edbrito-swdev 5 месяцев назад

      @@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 🤦

  • @tens0r884
    @tens0r884 4 месяца назад +11

    I needa find a girl who's as loyal to me as zozin is to C

    • @angelcaru
      @angelcaru Месяц назад

      Tsoding uses other languages as well (maybe that's what you want from your girl)

  • @Seedwreck
    @Seedwreck 5 месяцев назад +1

    Implement Chaotic map for PRNG next

  • @hubstrangers3450
    @hubstrangers3450 4 месяца назад

    Thank you....

  • @bzboii
    @bzboii 4 месяца назад +2

    bran cheese

  • @re_detach
    @re_detach 5 месяцев назад +1

    we gettin 2 the bottom of this 2 day

  • @darktale6716
    @darktale6716 5 месяцев назад +17

    Hello @laur0276, I am a subtitle watcher :)

  • @explqicot3293
    @explqicot3293 4 месяца назад

    Can you do more scientific papers please 🙏

  • @shrddr
    @shrddr 4 месяца назад

    no f way you get stack overflow on first try when there's only 2/3 chance to add a depth level

  • @samuraijosh1595
    @samuraijosh1595 5 месяцев назад +4

    what tool do you use for dark mode on pdfs?

    • @TsodingDaily
      @TsodingDaily  5 месяцев назад +5

      mupdf

    • @anon_y_mousse
      @anon_y_mousse 4 месяца назад

      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.

  • @SlinkyD
    @SlinkyD 5 месяцев назад +1

    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.

    • @greyshopleskin2315
      @greyshopleskin2315 5 месяцев назад +1

      You can generate a patch with either git or diff. Learn about it

    • @SlinkyD
      @SlinkyD 5 месяцев назад

      @@greyshopleskin2315 Who woulda thunk‽

    • @SlinkyD
      @SlinkyD 5 месяцев назад

      no ​@@greyshopleskin2315

  • @devdeev3675
    @devdeev3675 5 месяцев назад +2

    this in GLSL!!!

    • @theevilcottonball
      @theevilcottonball 4 месяца назад +1

      Tsoding: What maps two spacial coordinates to a 3D color.
      Me: A shader? (I know its a usually 4D color)
      Tsoding: Neural Network.

    • @devdeev3675
      @devdeev3675 4 месяца назад

      @@theevilcottonball Lol, he did it with shaders

  • @whatthehelliswrongwithyou
    @whatthehelliswrongwithyou 4 месяца назад

    whats up с карнеги мелона

  • @mattshu
    @mattshu 5 месяцев назад +4

    Do you have any vim tutorials? I wish I was as fast as you!

    • @eeriemyxi
      @eeriemyxi 5 месяцев назад +15

      He uses Emacs. You can use any code editor for multiple years and start typing at insane speeds. It's about practice.

    • @ratofthecity6351
      @ratofthecity6351 4 месяца назад

      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

  • @John-yg1cq
    @John-yg1cq 4 месяца назад +1

    21:00
    I want to disagree that bread == pasta so much. Thanks, I hate it.

  • @mohammedkaka5558
    @mohammedkaka5558 5 месяцев назад +7

    I'm doing this bro, I was looking for a C refresher project then this came up.
    Any suggestions?

    • @Siroitin
      @Siroitin 5 месяцев назад +1

      Suggestions for what?

    • @karoI508
      @karoI508 4 месяца назад +2

      suggestion is: stop asking, do it

  • @dancinglazer1628
    @dancinglazer1628 5 месяцев назад +2

    Oh

  • @xspager
    @xspager 4 месяца назад

    Based

  • @imya_mujik_familiya_tajik
    @imya_mujik_familiya_tajik 4 месяца назад

    > 420 meditation lane
    lmao

  • @azharalibhutto1209
    @azharalibhutto1209 4 месяца назад

    Great ❤❤❤❤❤❤❤

  • @frogg03_
    @frogg03_ 4 месяца назад

    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!

  • @emoosavimehr
    @emoosavimehr 4 месяца назад

    30:58

  • @tilakmadichettitheappdeveloper
    @tilakmadichettitheappdeveloper 5 месяцев назад +1

    neovim > emacs > my boring depressing life
    j.k

  • @m4ya_0
    @m4ya_0 5 месяцев назад

    amogus drip

  • @xbelanch
    @xbelanch 5 месяцев назад

    from 16:9 to 4:5 weird

  • @the_yugandharr
    @the_yugandharr 4 месяца назад

    Your streams are free??

    • @krux02
      @krux02 4 месяца назад

      Streams are free, but you can't comment for free there. That only works here in the non life version.

    • @the_yugandharr
      @the_yugandharr 4 месяца назад

      @krux02 free to watch. that's already enough for me :D

  • @NicolaCodes
    @NicolaCodes 4 месяца назад

    ✅✅✅✅✅✅✅✅

  • @theevilcottonball
    @theevilcottonball 4 месяца назад

    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.

  • @naranyala_dev
    @naranyala_dev 4 месяца назад

    try sokol

  • @rogo7330
    @rogo7330 4 месяца назад +2

    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)

  • @KybaLioN66
    @KybaLioN66 4 месяца назад

    zozin ))))))

  • @Nvimchad
    @Nvimchad 4 месяца назад

    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...?

  • @twl148
    @twl148 4 месяца назад

    cool but disliking for calling ipv6 a useless protocol

    • @lolcat69
      @lolcat69 3 месяца назад +1

      Cool but disliking for disliking the video for calling ipv6 a useless protocol

    • @twl148
      @twl148 3 месяца назад

      @@lolcat69 dislikes on comments don't do anything pal you're fighting the wrong battle