AI Learns How To BEAT Flappy Bird

แชร์
ฝัง
  • เผยแพร่เมื่อ 19 ม.ค. 2025

ความคิดเห็น • 45

  • @coolbro8922
    @coolbro8922 7 หลายเดือนก่อน +91

    It just took 9 generations.

    • @qezegen25
      @qezegen25 6 หลายเดือนก่อน

      Power of exponential growth and evolution✊

    • @Jiglias
      @Jiglias 3 หลายเดือนก่อน

      because it's literally just doing, if pipe above me: flap, not exactly revolutionary

  • @grzegorzsmolak8947
    @grzegorzsmolak8947 7 หลายเดือนก่อน +38

    Unexpectedly good. Keep it up

  • @Kopernikus42
    @Kopernikus42 7 หลายเดือนก่อน +22

    I love your A.I. videos! You definitely earned yourself a new subscriber

  • @mr-nafari7355
    @mr-nafari7355 8 หลายเดือนก่อน +12

    You just got a new subscriber.
    Keep up the good work man

    • @TylerMommsen
      @TylerMommsen  8 หลายเดือนก่อน +5

      Thank you man!

  • @Psygenz
    @Psygenz 7 หลายเดือนก่อน +42

    you're so fucking underrated

    • @burritoson9515
      @burritoson9515 7 หลายเดือนก่อน +1

      Preach

    • @Psygenz
      @Psygenz 7 หลายเดือนก่อน

      @@burritoson9515 i love you no homo

    • @vinnybob792
      @vinnybob792 7 หลายเดือนก่อน

      Real

  • @Andrei5656
    @Andrei5656 8 หลายเดือนก่อน +9

    I love your content. Discovered you with the sorting algorithm video. Hope you blow up, this is high quality content mate :)
    Cheers from France

    • @TylerMommsen
      @TylerMommsen  8 หลายเดือนก่อน +2

      I appreciate it!

  • @Chief305
    @Chief305 2 หลายเดือนก่อน +1

    Nice to see the OG code bullet mentioned🤙🏾

  • @zyn_id
    @zyn_id 7 หลายเดือนก่อน +7

    omg, this really inspired me to do my final project for my data science degree

  • @mattplaygamez
    @mattplaygamez 5 หลายเดือนก่อน +5

    449 birds lost their lives to train AI

  • @CyberWorldwithPratik
    @CyberWorldwithPratik 8 หลายเดือนก่อน +13

    Can you do a tutorial on the theory and code implementation of NEAT. I have been wanting to learn it for a long time

    • @TylerMommsen
      @TylerMommsen  8 หลายเดือนก่อน +6

      No problem, I definitely will sometime in the future

  • @PurplemanReal1
    @PurplemanReal1 5 หลายเดือนก่อน

    thanks for uploading this kind of vids that code bullet does so now I can watch you and not wait for him when he takes ages to upload

  • @marpy
    @marpy 7 หลายเดือนก่อน

    really hoping ya get more views/subs! love the content

  • @OrengarMK3
    @OrengarMK3 4 หลายเดือนก่อน +1

    Fun fact: Flappy bird has 999 levels and at the end Mario shows up and kills you

  • @BytePix_
    @BytePix_ 7 หลายเดือนก่อน +2

    This is the video where I start learning about *Machine Learning Technology*

  • @-Pedry
    @-Pedry 7 หลายเดือนก่อน +1

    Another codebullet guy lets goOO.
    Hope you make it big man ❤
    Idk if you will reply to thos or not, but what term did you start with, or theme so to speak to learn how to make ai?
    I'm learning programming and have gotten pretty deep, but i have no clue where to begin making models that can learn (I will be googling the shit out of whatever you mention to figure it out)😂
    You def earned a sub here tho, looking forward to future content 👊

    • @TylerMommsen
      @TylerMommsen  7 หลายเดือนก่อน +2

      Hey man thanks for the support! No worries man you can get started learning AI and it's good you're comfortable with programming already. Personally I learned AI through The Coding Train. He has a whole playlist on AI called Intelligence and Learning. It's quite long with 64 videos but it goes through pretty much everything you need to know to get started. It goes through pathfinding algorithms (you can skip if you want), genetic algorithms, calculus and neural networks. After that you can begin learning NEAT which is the AI used in this video which is basically a combination of a genetic algorithm and a neural network which The Coding Train also has a short playlist on which I think is just called Neuroevolution but it's not quite so detailed. If you want a full explanation on NEAT you can read the original paper by Kenneth Stanley. Unfortunately there aren't really any tutorials out on the internet on coding NEAT from completely scratch so I'm thinking maybe I'll do something like that in the future, but there are a lot of projects implementing NEAT out on the internet where you can just read the code and analyze how it was written (which is what helped me learn it). I actually got familiar with NEAT through code bullet's code haha. I went through his GitHub repositories of his projects and read all his NEAT code. Once you do that, I highly recommend learning through building projects. For example, build a small project to learn genetic algorithms first, then a separate one for neural networks before you jump into NEAT. It'll be much easier that way. And the coding train's playlist has plenty of example projects. Let me know if you need any further help, my discord server should be linked in the description. Good luck!

  • @supersaiyan2
    @supersaiyan2 4 หลายเดือนก่อน

    I tried to make the same thing, but i couldn't figure out what config settings to use, mine isn't nearly as good even after like 50 generations

  • @shalevforfor5550
    @shalevforfor5550 3 หลายเดือนก่อน

    It's use only one because the only one it needs is the distance from the button pipe 😅
    I did a bot that play flappy bird so I know it but that easy to understand

  • @ChocoEats2023
    @ChocoEats2023 25 วันที่ผ่านมา

    So cool, have you ever considered tutoring?

  • @andreyambartsumov5340
    @andreyambartsumov5340 7 หลายเดือนก่อน

    Hey, how would you recommend to start learning AI? I really want to start learning but I'm just not sure how to go about it. Great video!

    • @TylerMommsen
      @TylerMommsen  7 หลายเดือนก่อน

      Well there's a lot of ways to learn but personally I watched The Coding Train's TH-cam playlist on AI where he teaches genetic algorithms and neural networks and with examples too. After that you can start building some simple projects and learn NEAT (the ai used in this video) either through his NEAT playlist which is a pretty good but not too in depth. But if you want to see the full details on it then you can read the original NEAT paper from Kenneth Stanley

    • @andreyambartsumov5340
      @andreyambartsumov5340 7 หลายเดือนก่อน

      ​@@TylerMommsenthanks man. waiting on new videos to drop. You can maybe make doodle jump or something similar

  • @Schluis-ss2wq
    @Schluis-ss2wq 7 หลายเดือนก่อน +1

    This man bouta blow up💀

  • @the_speedy_dog6808
    @the_speedy_dog6808 8 หลายเดือนก่อน

    :) cool and good quality

  • @BiggieChungulus
    @BiggieChungulus 8 หลายเดือนก่อน +3

    Enjoy your youtube career, shouldn't be long now

  • @leoneventicinque6731
    @leoneventicinque6731 หลายเดือนก่อน

    super!

  • @9RPGPG9
    @9RPGPG9 7 หลายเดือนก่อน

    Nice

  • @Sikiro
    @Sikiro 7 หลายเดือนก่อน

    Done? Just like that??

  • @YeetRyanGaming
    @YeetRyanGaming 7 หลายเดือนก่อน

    Bro beat flappy birds 3 times

  • @gslive6197
    @gslive6197 4 หลายเดือนก่อน

    Please sir make auto play free fire game bot for level up in android

  • @SoranSoran-lo9wr
    @SoranSoran-lo9wr 6 หลายเดือนก่อน

    😂 0:15 a 0:21

  • @JoaoVitorBarg
    @JoaoVitorBarg 7 หลายเดือนก่อน +1

    nobody literaly shows how to code AI stuff

  • @nikitafilippetti7504
    @nikitafilippetti7504 7 หลายเดือนก่อน

    To whoever sees this video or other videos by this guy... PLEASE SUBSRIBE I WANT MORE OF HIS VIDEO POPPING UP IN MY FEED

  • @KyriproShorts
    @KyriproShorts 7 หลายเดือนก่อน +3

    Just 9 Generations?????
    WTF

  • @snovelice
    @snovelice 8 หลายเดือนก่อน

    Nuhhhhh only 35 Likes In A WEEK?????

  • @pramod_jaybhay
    @pramod_jaybhay 7 หลายเดือนก่อน

    Wtf only gen 9 🤣🤣