Neat - Java Implementation 2

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

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

  • @shreevathsagp6789
    @shreevathsagp6789 2 года назад +1

    this is amazing. you really are good at teaching these things. would love to see similar series on reinforcement learning methods like actor-critic or deep q-learning.

  • @inanitas
    @inanitas 2 года назад

    I noticed you have a lot of getters and setters. I would suggest looking at a project Lombok. You can generate getters and setters by using annotations. You can even generate constructors, that initialize final values by using @AllArgsConstructor annotation before the class or generate data classes. There are more things it can do but that's the basics :)

  • @teenspirit1
    @teenspirit1 4 года назад

    Original paper actually shows recursive examples. You just need to handle them by detecting cycles and not running them more than once when evaluating if you want to stay true to the paper.

  • @florian7162
    @florian7162 5 лет назад +2

    Great series! Thanks!

  • @tv8g
    @tv8g 5 лет назад +1

    Can't wait for a part 3 XD

  • @nickpank9041
    @nickpank9041 4 года назад +1

    Great series, I love it. Why exactly is there the hashCode() in NodeGene when you could just call getInnovation_number()? And is there a point to having the Genome connections and nodes directly instantiated or is that preference?

    • @finneggers6612
      @finneggers6612  4 года назад +1

      about the first question:
      there were some discussions about this on the web and it turned out (kinda logical), that connections do not really require innovation numbers because connections are defined using the innovation numbers of the connected nodes.
      So when hashing, I did not want to rely on the innovation number which basically has no meaning but on the hashcode.
      The innovation number is only a tracker of which connection has been generated at what time.
      And yes thats only preference.

  • @2yaya123
    @2yaya123 5 лет назад

    Awesome series can't wait for part 3

    • @finneggers6612
      @finneggers6612  5 лет назад +1

      Tomorrow as far as planned. Will have a new mic. :)

    • @2yaya123
      @2yaya123 5 лет назад

      @@finneggers6612 OMG incredible!! can't wait to keep working on this project

    • @finneggers6612
      @finneggers6612  5 лет назад

      @@2yaya123 bad news. maybe, maybe you need to wait till thursday. Have been invited over to dinner tomorrow. I will hurry up tho

    • @2yaya123
      @2yaya123 5 лет назад

      @@finneggers6612 Ok man no worries enjoy dinner

  • @taigofr1
    @taigofr1 5 лет назад +1

    Exciting :D

  • @jameslannister3743
    @jameslannister3743 4 года назад

    THX for the vids

  • @habkeinennamen1484
    @habkeinennamen1484 5 лет назад +1

    Nice THX