the game of life in the game of life is such a beautiful thing
@neatai67023 жыл бұрын
Agreed ! Well worth a watch...
@maxiguess99223 жыл бұрын
@@neatai6702 wait.. it is an actual thing? I tought it is an animation..
@exari_3 жыл бұрын
@@maxiguess9922 yes
@Soken503 жыл бұрын
can it run doom tough ?
@luipaardprint3 жыл бұрын
I'm pretty certain that's possible, the framerate will suck though.
@okboing3 жыл бұрын
I love the idea of the discovery of the first glider, it has the same essence of first discovering Pluto. At first it was just a few pixels on paper, now it's much more.
@neatai67023 жыл бұрын
Yea, and theres lots more to explore with CA's
@okboing3 жыл бұрын
@@neatai6702 and there's lots more to explore in space!
@null85073 жыл бұрын
And now the glider's off the paper.
@reuben47213 жыл бұрын
maybe the universe is just an infinite big game of life 😳
@mendelovitch3 жыл бұрын
@@reuben4721 Permutation City by Greg Egan is a magnificent short science fiction on the subject.
@inscseeker4013 жыл бұрын
I just coded my own game of life simulation and was trying to implement some reinforcement learning when I came across your video!
@neatai67023 жыл бұрын
great !.. the paper mentioned in the video is fairly detailed but there are simpler versions for complexity available if thats the route you're going ..
@5.0.5channelnotfound43 жыл бұрын
Cool
@iamsan-san80942 жыл бұрын
now steal it
@chriszethird2 жыл бұрын
Have you produced any paper about it ? or Code?
@apc137_op Жыл бұрын
Hi have you done any code can I see into it github?
@ThomSonnyYeah3 жыл бұрын
I can barely understand 1% of this but I know there’s something magical about it
@neatai67023 жыл бұрын
Thanks Thom ! to get started download golly and mess about with it..
@kenyholt50363 жыл бұрын
Same
@erikquittek28943 жыл бұрын
Me understand Nothing. Use fire to destroy satans work!
@TBButtSmoothy Жыл бұрын
basically, lets say u analyze a 3x3 grid. and the center pixel is the one the rule will be applied to. if next to the center pixel there is 2 or more pixels activated (be it sides up or down or diagonals), then its stays activated (alive, not lonely) if it has 3 and it was not activated (dead) then it becomes alive (activated). if 1 or less, its dead. (Please correct me, the rules are inthe video)
@godgodly9044 Жыл бұрын
Your best start believing in sentient number patterns you are when Mr. Squidward
@UnitSe7en3 жыл бұрын
Life in Life _is_ just simply one of the most amazing things ever. If it _doesn't_ blow your mind then you don't understand what's going on.
@anntakamaki19602 жыл бұрын
Enforce 0 child policy for peacefools after 2024
@ohnono2850 Жыл бұрын
@@anntakamaki1960 bot
@thehobbyshow50493 жыл бұрын
Really great video. The ending shot was insane👏
@neatai67023 жыл бұрын
Thanks for the feedback.. It was a fun one to do.
@Lebensgott3 жыл бұрын
the game of life is just so fascinating... multiple professors in different classes used it as examples in different subject areas....
@kireitonsi3 жыл бұрын
This channel is potentially the most underrated ever. I really hope this blows up!
@neatai67023 жыл бұрын
Thanks for that NerdKnight.. lets see how it goes..
@enantiodromia2 жыл бұрын
Who exactly is underrating this channel?
@aeon_borealis3 жыл бұрын
Holy crap, did it just fractally iterate itself? That’s so incredible!
@katanshin3 жыл бұрын
Welcome to 30 year old classic AI ;)
@AlbertSirup3 жыл бұрын
that's not the AI mate, that's been made by a human - this video is a bit confusing because it mixes his own recordings from the AI with footage which is just cool Game of Life stuff but which has nothing to do with AI
@katanshin3 жыл бұрын
@@AlbertSirup Actually, it's "AL" or Artificial Life. It is not AI in the sense that it requires training nor representation states nor quantum hardware, but it certainly has it's place within the field of AI, adjacent to multi agent simulation and biomimetics. Hence my comment. If you read through Maggie Bowden's stuff, iirc, the argument is life only requires a few basic things in some cases, so here's the digital version. It's interesting and intelligent in so far as producing surprising (to humans) emergent behaviour. Regarding the toy NN stuff, I mean, meh, if you have to slot in an NN with GoL somewhere, cool, it wasn't necessary but it gave a bit more to talk about and made initialisation a bit more interesting at the cost of perhaps murkying the distinction for beginners. But yes, certainly is AI and for the record, to date, I'd argue almost all 'AI' to date is human made ;)
@AlbertSirup3 жыл бұрын
@@katanshin my point was that it wasn't the computer program (whether it's AI or AL) which came up with the idea of making a fractal version of Game of Life (the one you see at the end of the video) but it was a person who had that idea - while, yes generally GoL produces emergent behaviour but in this case, the fractal version of GoL was made by someone who knew GoL very well and arguably used a lot of things discovered through observation of emergent phenomena (different gliders and generators etc.) to eventually create the fractal version (which only works because it is, to some extent, predictable). Maybe I misread the original comment but i thought by "it fractally iterates itself" they meant the AI version of GoL - which is not the case and is a bit misleading in the video if you don't know the original project (the fractal GoL project I mean)
@katanshin3 жыл бұрын
@@AlbertSirup OH, I'm awfully sorry in that case, my mistake! I had commented on the above without really considering myself to be endorsing the final part of the video as it was clear to me it was intended to be taken as a closing 'look what may be possible!' bit of inspirational fluff, and I didn't want to break kayfabe for those inspired to know more as there's plenty of time to become disappointed with AI later on (!). So in light of all that, I misread your reply as disconnected from the context of the fractal version, and interpreted it as a dismissal of GoL from AI in general which of course one couldn't let stand! Albeit in error :) Thanks for clarifying, I hope I have too, and I completely concur with your comments regarding the fractal version being human engineered, as it certainly was (along with various other setups floating around of incremental LCD counters, etc).
@okboing3 жыл бұрын
You know Golly can run this type of simulation perfectly with a lot of shortcuts, like not simulating anything more than 1 cell away from a live cell, which cuts out all empty space.
@neatai67023 жыл бұрын
Yea, golly is just amazing.. I'm going to stick a Hash table on mine and see how fast I can get it to go..
@jiqci3 жыл бұрын
@@neatai6702 or, you can get Lifelib, which can run it blazingly fast and can be used from other programs
@pendergastj3 жыл бұрын
@@jiqci Let him do it himself.
@windwalkerrangerdm3 жыл бұрын
OOOOHHH MYYYY GOOOODDDDD THAT FINALE HIT ME LIKE A FREIGHT TRAIN HOLY GUACAMOLE!
@windwalkerrangerdm3 жыл бұрын
After a minue, I'm still gettin new goosebumps! FRRRRRRRUUUUUUWHAAT!?
@robertm4189 Жыл бұрын
The last 5 seconds, you cheeky buggers. Such a finishing touch, well played for those who wait for that last moment . 👏
@RAZREXE3 жыл бұрын
This is so interesting, I just started reading about neural networks and I am glad KZbin recommendations are working so well.
@neatai67023 жыл бұрын
Hope you enjoy it!
@JoelErhart Жыл бұрын
Excellent simulation for establishing patterns. A future version of this could be used for engineering a variety of very useful microbes. One in particular I heard about could be something to evenly distribute new calcium and other materials to re-enforce cracked concrete, and to be added to fresh concrete mixtures. It'd be great to have to scrape the walls of buildings on occasion instead of tearing them down.
@sebbes3333 жыл бұрын
6:39 That "ship" should be called a *Frog* :D (It looks like a frog, seen from above, it is jumping upwards)
@neatai67023 жыл бұрын
I never noticed that typo ! m
@jiqci3 жыл бұрын
nah, Doo-dah is good (it's actually attachment to other spaceship, the Weekender)
@KeithOlson3 жыл бұрын
More precisely, a 'Frogger'. :grin:
@dc62663 жыл бұрын
Do you know (another spaceship) Anura, literally means frogs
@jiqci3 жыл бұрын
@@dc6266 One of only three 3c/7 spaceships (they move 3 cells forward in 7 generations) - from first discovered and largest to last discovered and smallest: Spaghetti Monster, Anura, Soba
@phillipneal81943 жыл бұрын
Amazing ! Great idea. Great paper reference. Thank you
@neatai67023 жыл бұрын
Glad it was helpful!
@sylenzos68693 жыл бұрын
i really want to send a single unintended shape into that life in life setup.
@Jensmalm9 ай бұрын
Thats genious. That last scene was mindblowing!
@samuelgibson7802 жыл бұрын
Wow that's a great idea. Thank you for sharing this. That was awesome.
@seditt51463 жыл бұрын
Can the Fitness simply just be the one that went the furthest distance from the starting grid in a set amount of time while ignoring Glider shapes that are well known so basically trimming known gliders and checking to see what starting grid evolved to make it the furthest distance in an attempt to see if the NN can discover a totally unknown glider. I don't think it would be terribly difficult and if a database is kept of known gliders to rule out it seems like one could consistently discover new gliders using NEAT
@neatai67023 жыл бұрын
Really good idea.. the complexity function I was using probably won't find new gliders but your database filter is a great approach.. I'll add it to the list..
@crazyfox553 жыл бұрын
I would instead just combine center of mass travel distance and a measure of the consistency of the total mass.
@monkieassasin2 жыл бұрын
@@crazyfox55 this. I was going to add, you can include the parameters for complexity along with distance traveled, so that more complex gliders are chosen for in each generation
@rabidL3M0NS Жыл бұрын
Oh this is such a brilliant idea!
@thatonekaydo85693 жыл бұрын
That ending was awesome
@ganglians3 жыл бұрын
I didn't know there were more complex versions of this game, I'm gonna try them out
@Twisted_Code3 жыл бұрын
This is way more advanced than what I usually do: crashing random spaceships (because they have known-meaning vs. a soup) into blocks (the 2 x 2 pattern) and other predictable objects to see what happens. It looks like you're well on your way to having a program that does it better than me. of course, it probably doesn't help that I only have enough understanding of AI to follow -even at a basic "I think I understand?" level- about 70% of what you just said, and despite its intricacies, I don't have enough interest in CGoL to do anything much more sophisticated. Though I am starting to get interested in agars, greyships, and the like...
@PooperScooperTrooper Жыл бұрын
That last example of game-of-life inside game-of-life is just so damn cool. Has anyone made an infinite animation of that....or even programmed it several layers deep...just for the hell of it :-)
@kokobotofficial Жыл бұрын
The ending of this video is just so beautiful.
@cardinalhamneggs52533 жыл бұрын
Fun fact: In the Infinite Dimensions April Fools update for Minecraft, there is a Langdon’s Ant dimension.
@al26423 жыл бұрын
Game of life may as well be the most accurate metaphor for what reality truly is about
@neatai67023 жыл бұрын
agreed.. and they're only getting better.. check out the Lenia creatures..
@mortyrickerson6322 Жыл бұрын
Wow. Very glad to have stumbled across your channel. Thank you for sharing this knowledge in such simple fashion that even my layman mind could process it. Cheers
@hugorechatin2408 Жыл бұрын
Awesome video ! I wanted to ask, I read the paper on algorithmic specified complexity you mentioned, but I struggle to understand how to implement it and get the numerical complexity like you did
@electroflame6188 Жыл бұрын
6:43 I'd recommend against attempting to use a NN for the purpose of finding novel patterns. The solution space is too nonsmooth (i.e. changing a single cell in a solution will yield a pattern that acts nothing like a solution) for neural nets to be an effective option.
@luisferreira92025 күн бұрын
That ending blew my mind, I can't even believe it was possible!
@mycereal3 жыл бұрын
Bruh, its crazy how you dont have more subscribers with these quality videos!
@neatai67023 жыл бұрын
Working on it!
@simianbarcode3011 Жыл бұрын
For anyone interested, the Game of Hive is a hexagonal variant with its own very interesting geometry and interactions.
@b.roseburg Жыл бұрын
Damn you... Now I need to make my own version of this but using Game of Hive
@lorizoli Жыл бұрын
The exits scene really WOWed me.
@timdecker6063 Жыл бұрын
Wow, that ending. Life in life is mind blowing
@MODIAK3 жыл бұрын
Would it be possible to do a Life in Life in Life set up? What would the tech requirements be? What would the limit of further Life layers (ex Life in Life in Life in Life and so on)?
@JeanGambit3 жыл бұрын
There is already a possibility to make "computers" in the game a basically reproduce game inside the game. Theoretically you can go recursively as deep as you want.
@kiraPh1234k3 жыл бұрын
Tech requirements == RAM is helpful, tricks are helpful too There are computational tricks that can speed up execution and efficiency of simulation - implementing them helps push any hardware much further and the program "Golly" is a good set up to help with this.
@dushkin_will_explain2 жыл бұрын
Очень интересно. Только я так и не понял, что делали нейросети? Или это были генетические алгоритмы?
@neatai67022 жыл бұрын
Нейронные сети использовали вычисление сложности в качестве прокси-функции пригодности и пытались развить начальные шаблоны, которые давали бы все более сложные результаты игры жизни; вместо случайного шума..
@quaidcarlobulloch93002 жыл бұрын
Great work and video. Of course the complexity function from the paper optimizes for chaos, noise is maximal complexity. A better metric is sustainability. I like that you're thinking about including neural networks into this. I am still curious how to implement sustainability as a metric of improvement.*EDIT* If you train/fit the complexity metric to something other than noise then we will be cooking with gas.
@lordomacron3719 Жыл бұрын
An Langdon’s Ant! That takes me back. The first example of emergent behaviour that really clicked with me.
@HANNROBOTICS3 жыл бұрын
That was my homework last week I'd like to learn about a more complex version of it !
@Saw-qv3bl2 жыл бұрын
0:26 what do those equations represent?
@kose2ik3 жыл бұрын
can AI understand, and how to understand Voyager Golden Record aso. ( is it possible that this message may be received not by a living organism but by AI and AI may also be answered but not by a living organism )
@_miobrot_6032 жыл бұрын
N i c e Richard Kenneth Guy. First glider ever observed, was on gen 69.
@NilesBlackX3 жыл бұрын
Today's the day your channel starts to blow up. Congrats
@neatai67023 жыл бұрын
Cheers Niles
@papalosopher3 жыл бұрын
I've nearly been run over by a car. I've nearly had a brick dropped on my head from two storeys up. I nearly stopped watching this video before the end. Three very close calls. The most amazing thing I have ever seen.
@neatai67023 жыл бұрын
Well done!
@kiraPh1234k3 жыл бұрын
Interesting illustrations. I hope it is clear that the end portion is just a video of the separate and well known "life in life" pattern. It is not a result of the AI training.
@dynamikeloveyou3 жыл бұрын
Astonishing work. Bravo!
@neatai67023 жыл бұрын
Many thanks!
@tr33br06 Жыл бұрын
This blew my mind wide open.... The game of life in the game of life.... how does that set-up work? What are the starting conditions? Does it grow?
@shottysteve3 жыл бұрын
wait so what happened with ur neural network then
@neatai67023 жыл бұрын
Not a lot.. its still running.. although I'm making changes to the fitness function and moving more towards a novelty search algo.. The goal is to discover something new in GOL...
@eaudesolero5631 Жыл бұрын
@@neatai6702 so how about now ?
@danielpalacios99212 жыл бұрын
Could you help explain how you are measuring every pattern in the GOL? Before you apply the NN, you calculate the complexity. In the paper, it states that it sets a bound for a specific object but understandably, the patterns are always random. I do not understand how that first step is initially done, or at least I am having trouble understanding how we can measure meaning for every pattern... do you choose a specific pattern (let's say Glider or R-Pentomino) at the beginning that fits the test and check all cells within specific bounds and then see what more complicated patterns emerge? Amazing video. but, please help hahaha
@Tal-Bar5 ай бұрын
Amazing video, thank you very much!
@DecrareOld3 жыл бұрын
I thought about doing something simelar just yesterday, but didn't get the mtoivation to actually do it
@demonexirr3 жыл бұрын
Cant wait for Conway's game of life to turn into the singularity from someone's backyard after they ran a random simulation one day. Edit: spelling error
@onradioactivewaves3 жыл бұрын
Theres a neat concept someone was telling me about where matter would self replicate into some form inert to everything else- it would essentially lock up the universe. What would happen to the universe at that point, when the last peice of matter locked up, would it revert a singularity?
@demonexirr3 жыл бұрын
@@onradioactivewaves well if the universe went inert i don't think anything CAN happen therefor it would equal the destruction of civilisation, life, even elements. Nothing can happen if nothing can react. if electrons are locked they cannot be electricity, if light doesn't act as light then we cannot turn it into power, etc. Though i may be interpreting that concept wrong this is what i got from it
@aeebeecee37373 жыл бұрын
awesome awesome awesome, I just subed
@neatai67023 жыл бұрын
thanks for the sub ABC
@jhoanmartinezsilva26092 жыл бұрын
Any book to code stuff like this? Amazing
@MichaelDarrow-tr1mn Жыл бұрын
it's really easy to code it actually
@jhoanmartinezsilva2609 Жыл бұрын
@@MichaelDarrow-tr1mn That's pretty helpful, thanks a lot
@younscrafter73723 жыл бұрын
4:12 it's about 10^1080
@firstlast-gh9ig2 жыл бұрын
As I understand the ASC function as described in the paper, it gives a "score" to a pool of existing and well-known Life patterns. When you were looking for new patterns, did you calculate your C complexity function at each time step by scanning your 60x60 universe for those known patterns (guns, gliders..) which ASC was given in the paper, and then add/multiply/combine all those scores? Or did you do something entirely different? I mean, I don't understand how you could get C values of 425231.36 as we see in the video, from those 60x60 grids.
@googldeed3 жыл бұрын
The beauty in these experiments lies within the simple overlooked base that the unarguable logic taking place is evolving a basic entity in the same beginnings as life itself.
@guyinoah3 жыл бұрын
literally made the game of life in the game off life at the end oh my god
@leucamaclean89003 жыл бұрын
What if you made the complex function apply to say five randomly allocated target areas then take and average, might allow you to work on a much larger scale without as much computing? Working on the assumption that a complex family of interesting patterns will show higher complexity from a sampling method like that then overall complexity which might bias initial state\basic shapes. I’m not a compsci person just thought it might be cool? So essentially evolve towards higher average complexity over an area then total complexity of an iteration
@kiraPh1234k3 жыл бұрын
Thats an idea, but has different results. Its not computationally expensive to calculate the fitness compared to running the simulation of the generations. So it won't save time in that regard. This method in the video explores the complexity that emerges from small patterns, producing small patterns. Later, one could use these small patterns for many other ideas. For example, what happens when pattern 1 and pattern 2 are inserted next to each other? Further apart? Even further? I think this way is a really nice way to generate both patterns that are small yet interesting as well as create starting points for bigger patterns exploration in some cool ways as a mix of your idea in a way - but using patterns that give known large complexity to spread them out and see what happens
@leucamaclean89003 жыл бұрын
@@kiraPh1234k this way doesn’t find new shit tho. If you’re looking for seed patterns instead of creating functions for complexity all you get is permuatations of the known
@kiraPh1234k3 жыл бұрын
@@leucamaclean8900 No, there is nothing about "not looking for complexity" that implies something else "is known" However, I am getting that you're telling me I was off track in my interpretation of your suggestion. If the only suggestion is changing the complexity function to sample random areas then we can actually predict the results compared to the methods used in the video: 1. You will on average measure lower complexity in the same pattern (as you are just measuring less of the consequences) 2. Some patterns of extreme complexity will measure 0 based on random chance 3. Some patterns of no particular interest will measure high complexity based on random chance 4. The overall results will be very similar in structure, just less accurate in measurement As I mentioned before, the complexity measurement is not computationally expensive so its not saving significant resources to decrease its cost. And since it would also decrease accuracy, there is not a benefit being utilized for what is given up.
@leucamaclean89003 жыл бұрын
@@kiraPh1234k I disagree with the premise of your assumptions as they're not taking into account the point, which is to utilise evolutionary alg to come up with a way of proxying complexity into fitness and then allowing that to develop independently. I think(?) you are latching onto the sampling method which yes has flaws, but not addressing the actual point, that creating a method of testing for complexity that can be applied and then varied and progressed might end up finding thngs that are not even considered complex, or new permutations or outputs that can then be tracked backwards
@nelsonianb1289 Жыл бұрын
I love the 5 second music loop
@markmarkus8083 жыл бұрын
7:22. Cool. Thanks
@Ryutsashi2 жыл бұрын
At 3:11, what's the difference between "labeled" and "tagged"?
@FourthRoot Жыл бұрын
One thing that has always made me wonder, is whether it would be possible fkr a sufficiently complex GOL machine to tunnel through smoke patterns. I believe the answer is yes.
@petermoomaw34002 жыл бұрын
So if I am understanding, starting at 4:45, you refer to a "specified complexity" function that William Dembski invented with the intended aim to show that natural selection with random mutations can't produce emergent complex structures. You then use Dembski's function to create a fitness function, and then evolve systems, via natural selection and mutation, that Dembski's own function states have more specified complexity. And it looks like you did indeed get qualitatively interesting structures. So this would seem to imply that Dembski's specified complexity function has merit in detecting interesting structures, but also that systems with increasing specified complexity can evolve in systems via natural selection with mutation, contrary to Dembski's claim. Am I understanding this correctly?
@ribozyme28992 жыл бұрын
Indeed. Stuff like this is why Dembski is not taken very seriously by overwhelming parts of the scientific community.
@Rising_Pho3nix_233 жыл бұрын
Dude that network at the end tho. Fractal game
@dankdreamz Жыл бұрын
My girlfriend makes CA and I can't wait for her to see this video so she can draw more inspiration
@gregvondare Жыл бұрын
Hold on. In that last zoom out, are we seeing a micro environment generate a macro environment by a kind of emergence? If yes, this has fantastic implications for the kind of processes that underlie Quantum Mechanics, and the idea of vacuum energy. This looks like breakthrough research, IMHO.
@mike_o78743 жыл бұрын
What about building neural netowrk that generate game of life rules? I.e maybe a cell is alive if the top left cell is alive and its button one etc?
@lucafacchinetti25223 жыл бұрын
To what avail?
@TruePlayersArcade2 жыл бұрын
so glad i stumbled on this great video wish i understood how you created the end piece that zoomed out that was brilliant
@neatai67022 жыл бұрын
Glad you liked it!
@YouTubist666 Жыл бұрын
Awesome ending
@katanshin3 жыл бұрын
Nice coverage of a classic topic. It's a shame everyone always overlooks Silverman's Wireworld though
@vNCAwizard3 жыл бұрын
Wireworld is supported by Golly, as I recall.
@davegreene63733 жыл бұрын
The video does show a quick shot of a Wireworld pattern, part of the prime-number calculator primes.mc in Golly's pattern collection... just doesn't mention it by name: kzbin.info/www/bejne/rJqkXnt_jJJleZY
@edvinbeqari75519 ай бұрын
Is this some type of evolutionary algorithm - or is there a loss function? How do you update the network
@meanderthelost60293 жыл бұрын
I’m no programmer or mathematician but that zoom out at the end was crazy…. Like…. If I’m not mistaken that big structure/system was the same as the “gliders” and “ships” ?!?! As in someone discovered it? It wasn’t purposely created to look like that????
@tim40gabby253 жыл бұрын
Hi. No, the initial conditions were set so that big scale glider was inevitable - unavoidable, in fact. The trick therefore is - how do you set up?
@jeremyarcus-goldberg95435 ай бұрын
What is happening during the ending zoom out. Is this something the author coded or a discovery during the process?
@Kraus-3 жыл бұрын
I could watch the game of life for hours.
@RM-xr8lq Жыл бұрын
is that the OTCA metapixel at the end
@Kenya_Berry Жыл бұрын
About a year ago I found a shape that can be infinitely placed within a single tile of a copy and never change, and the shape could be mirrored one tile below to create a shape that has a constantly switching cell in between them, I’ve forgotten how to make it and I’ve never seen someone else who claimed to discover it
@michasekua4642 Жыл бұрын
I have seen this in youtube couple months ago. It was common (known) pattern but still nice if you noticed it alone!
@Qugfvraceysgvigaivys2 жыл бұрын
I'd be cool to reciprocate the initial complexity for your fitness function (fitness = final_complexity/initial_complexity). This would be the initial condition that devolves into chaos the best.
@famshare-esl2453 Жыл бұрын
Are there any links to code? I'd love to look through the code used both to generate the raw results and the visualizations. Would be very helpful!
@chrisvisser-fee26313 жыл бұрын
This is dope bit I was kinda hoping you'd create a neural network inside the game of life.
@SomeoneCommenting Жыл бұрын
That thing 6:40 completely looks like a frog crawling its way up.
@gaving.griffon27033 жыл бұрын
Imagine being able to watch shrek in Conway's Game of Life.
@vNCAwizard3 жыл бұрын
Minorly interesting to me. Let me ask, are you familiar with a cellular automata that has a zygote? See the paper from 2008 with the title Computational Ontogeny.
@neatai67023 жыл бұрын
thanks for the paper reference.. I'll check it out ..
@mybad68133 жыл бұрын
more science thank you i love it
@chriszethird2 жыл бұрын
Is there a way you could share the code you used ? Or detail a bit more your computations?
@qwq10173 жыл бұрын
2:16 Aren't two circled things from the right called hives? Anyway, the video is awesome!
@neatai67023 жыл бұрын
Thanks for the feedback !. Could be hives.. I saw them labelled as something else on one of the sites describing the GOL common shapes.. but might have misread it..
@davegreene63733 жыл бұрын
Yeah, both ships and beehives are rings of six cells, but the name is different depending on the ring's orientation.
@davegreene63733 жыл бұрын
Side note on a minor typo: the inventor of the Langton's Ant rule is mentioned as "Chris Langdon", but it's a "t" not a "d" -- en.wikipedia.org/wiki/Christopher_Langton
@Ikigai_Composes Жыл бұрын
we need a noneuclidean version of this
@avneesh-khanna Жыл бұрын
Cool stuff! I just coded my first Game of Life simulation (the two-colour variant), but using a neural network to find patterns is crazy. Do you know which NN config did you use for this?
@SMunro Жыл бұрын
Can you have seperate AI for each organism?
@the_hero_shep3 жыл бұрын
Amazing video, thank you for your content!!
@neatai67023 жыл бұрын
Glad you like them!
@the_hero_shep3 жыл бұрын
@@neatai6702 do you ever share your code?
@ravikgpiit3 жыл бұрын
the end was fractal !! game inside a bigger game.
@guardiantko3220 Жыл бұрын
Also a fun program the powder toy has a similar system with the life tools. It's a fun sandbox with various elements
@paulbarton55843 жыл бұрын
*Langton. (Suberb video by the way, fantastic stuff).
@neatai67023 жыл бұрын
Glad you enjoyed it!
@kenyholt50363 жыл бұрын
At the end there 👌
@muhammadsaadmansoor77773 жыл бұрын
Was the final game produced by AI?
@papalosopher3 жыл бұрын
Where can I go online to play the game of life? I had a favourite website years ago but I've forgotten it and I can't find it again.
@neatai67023 жыл бұрын
Download Golly and go nuts.. its a great app..
@papalosopher3 жыл бұрын
@@neatai6702 already done. Up till 3 am one night already
@RooMan93 Жыл бұрын
My collage lecturer told me "If you ever get to meet Conway in real life, don't mention Game of Life he has done so much more".
@STONECOLDET944Ай бұрын
Everything, and i mean everything is made from vastly variable versions of this