Art of the Problem
Art of the Problem
  • Видео 122
  • Просмотров 9 304 056
How Intelligence Evolved | A 600 Million Year Story
This video follows the evolution of intelligence, from the simple nerve nets to the complex neural networks in humans that enable consciousness, learning, and imagination.
I made this video with Max Bennett after reading his book which I enjoyed (www.abriefhistoryofintelligence.com/)
Thanks to Jane Street for sponsoring this video. If you want to learn more about their work and open roles, visit their website: bit.ly/3TvuACB
If you enjoyed this program please consider supporting AOP via Patreon.
www.patreon.com/artoftheproblem
00:00 - Introduction
01:13 - nerve nets
01:29 - steering
02:20 - reinforcement learning
06:23 - mental simulation
08:50 - 3rd person simulation
11:50 - language
Просмотров: 198 977

Видео

Designing Educational Experiences with Pixar and Khan Academy | Brit Cruise | Talk at Google
Просмотров 6 тыс.5 месяцев назад
Brit Cruise | Talk at Google: My journey with Pixar & Khan Academy, leading to Pixar in a Box and Story Xperiential Key moments in this talk include: 00:00 - Introduction 01:00 - Art of the Problem origin story. 03:40 - My work & experiments with Khan Academy & Sal Khan 10:30 - The process behind 'Pixar in a Box' and 'Imagineering in a Box' 14:00 - Startup experiment with Mystery Science 16:00 ...
ChatGPT: 30 Year History | How AI Learned to Talk
Просмотров 952 тыс.5 месяцев назад
ChatGPT: 30 Year History | How AI Learned to Talk
Why Transformers Are So Powerful
Просмотров 12 тыс.8 месяцев назад
Why Transformers Are So Powerful
Say You Love Me (2020 Experimental Documentary)
Просмотров 6 тыс.3 года назад
Say You Love Me (2020 Experimental Documentary)
How AI Learns Concepts
Просмотров 168 тыс.3 года назад
How AI Learns Concepts
How Recommender Systems Work (Netflix/Amazon)
Просмотров 218 тыс.4 года назад
How Recommender Systems Work (Netflix/Amazon)
How AI Learns (Backpropagation 101)
Просмотров 43 тыс.4 года назад
How AI Learns (Backpropagation 101)
Secret Sharing Explained Visually
Просмотров 50 тыс.4 года назад
Secret Sharing Explained Visually
From Bacteria to Humans (Evolution of Learning)
Просмотров 41 тыс.4 года назад
From Bacteria to Humans (Evolution of Learning)
Intro to Artificial Intelligence (Neural Networks)
Просмотров 65 тыс.5 лет назад
Intro to Artificial Intelligence (Neural Networks)
TEASER: Episode 5 (Artificial Intelligence/Deep Learning)
Просмотров 6 тыс.5 лет назад
TEASER: Episode 5 (Artificial Intelligence/Deep Learning)
Funcionamiento de Bitcoin: Confianza mecánica
Просмотров 3,4 тыс.5 лет назад
Funcionamiento de Bitcoin: Confianza mecánica
The Beauty of Lempel-Ziv Compression
Просмотров 50 тыс.5 лет назад
The Beauty of Lempel-Ziv Compression
Hamming & low density parity check codes
Просмотров 56 тыс.5 лет назад
Hamming & low density parity check codes
Bitcoin Documentary | The Trust Machine
Просмотров 122 тыс.5 лет назад
Bitcoin Documentary | The Trust Machine
The Trust Machine: Teaser
Просмотров 9 тыс.5 лет назад
The Trust Machine: Teaser
How space-time codes work (5G networks)
Просмотров 42 тыс.6 лет назад
How space-time codes work (5G networks)
How internet communication works: Network Coding
Просмотров 46 тыс.6 лет назад
How internet communication works: Network Coding
P = NP Explained Visually (Big O Notation & Complexity Theory)
Просмотров 158 тыс.6 лет назад
P = NP Explained Visually (Big O Notation & Complexity Theory)
Turing machines explained visually
Просмотров 270 тыс.7 лет назад
Turing machines explained visually
What is a computer? (the history covering Leibniz, Babbage & Lovelace)
Просмотров 32 тыс.7 лет назад
What is a computer? (the history covering Leibniz, Babbage & Lovelace)
What is Logic?
Просмотров 52 тыс.7 лет назад
What is Logic?
What is an Algorithm?
Просмотров 49 тыс.7 лет назад
What is an Algorithm?
What is Computer Science? | The Turing test
Просмотров 46 тыс.8 лет назад
What is Computer Science? | The Turing test
The Origin of Computer Science (Leibniz, Boole, Babbage, Turing)
Просмотров 64 тыс.8 лет назад
The Origin of Computer Science (Leibniz, Boole, Babbage, Turing)
Episode 3 Teaser
Просмотров 7 тыс.8 лет назад
Episode 3 Teaser
The search for Extraterrestrial Intelligence
Просмотров 26 тыс.10 лет назад
The search for Extraterrestrial Intelligence
Error correction codes (Hamming coding)
Просмотров 79 тыс.10 лет назад
Error correction codes (Hamming coding)
Entropy is the limit of compression (Huffman Coding)
Просмотров 35 тыс.10 лет назад
Entropy is the limit of compression (Huffman Coding)

Комментарии

  • @prasadgampa1533
    @prasadgampa1533 32 минуты назад

    How to ruin a great video?? Just put some shitty bgm!! This guy nailed it

  • @Glibglabglob
    @Glibglabglob 53 минуты назад

    Interesting video. What are competing theories to the ones that you’ve presented here and what are the strengths and weaknesses of those?

  • @lin_leaf
    @lin_leaf 2 часа назад

    how tf u get a jane street sponsor. actually cool af u got that

  • @Johannes00
    @Johannes00 4 часа назад

    Here's the Python code for the example in the video if anyone wants. class LZ78EncoderDecoder: def __init__(self): self.dictionary = {} self.reverse_dictionary = [] def encode(self, text): self.dictionary = {} self.reverse_dictionary = [] encoded = [] index = 1 i = 0 while i < len(text): current_str = text[i] while i + 1 < len(text) and current_str in self.dictionary: i += 1 current_str += text[i] if current_str in self.dictionary: # Longest match found at the end of text encoded.append((self.dictionary[current_str], "")) break else: if len(current_str) == 1: encoded.append((0, current_str)) else: encoded.append((self.dictionary[current_str[:-1]], current_str[-1])) self.dictionary[current_str] = index self.reverse_dictionary.append(current_str) index += 1 i += 1 return encoded def decode(self, encoded): self.reverse_dictionary = [""] decoded_text = "" for idx, char in encoded: if idx == 0: new_entry = char else: new_entry = self.reverse_dictionary[idx] + char self.reverse_dictionary.append(new_entry) decoded_text += new_entry return decoded_text # Example usage text = "AABABBABBAABA" lz = LZ78EncoderDecoder() # Encode the text encoded_text = lz.encode(text) print("Encoded:", encoded_text) # Decode the encoded text decoded_text = lz.decode(encoded_text) print("Decoded:", decoded_text)

  • @halluminium
    @halluminium 4 часа назад

    10/10 video. Super easy to follow and wonderfully crafted.

  • @Donzw
    @Donzw 10 часов назад

    Great video, feel like the sponsor is a bit of a mismatch though

  • @ravipattanaik1734
    @ravipattanaik1734 10 часов назад

    And all this is mostly for ONE language: English

  • @thecanadiankiwibirb4512
    @thecanadiankiwibirb4512 15 часов назад

    🗣️😯🤯

  • @EdinoRemerido
    @EdinoRemerido 22 часа назад

    Clickbait, this video wasnt 600 million years long

  • @theinfjgoyim5508
    @theinfjgoyim5508 22 часа назад

    Things do not evolve that is pseudo science for the slave brains. You don't have to believe in any religion either. Evolution is generally believed by those who do not think but accept what they are told. It is a very room temperature IQ theory. You have to be a complete NPC to swallow that one. In fact I would say anyone believes in evolution probably will believe anything you put on a TV.

  • @dutonic
    @dutonic День назад

    Wow! Great video!

    • @ArtOfTheProblem
      @ArtOfTheProblem День назад

      thanks working on follow up right now on RL

    • @dutonic
      @dutonic День назад

      @@ArtOfTheProblem Subbed

  • @wzsmart2890
    @wzsmart2890 День назад

    This channels creator is so artful in their presentation of such a complex topic. Definitely underrated. Such is the price of avoiding garbage algorithmic gaming such as clickbait. You earned my subscription. Keep making great content 🙏

  • @tristananleu4677
    @tristananleu4677 День назад

    Imagine each sense is a seperate entity, some see light others hear sound, they exist together and must communicate to form a map of reality to navigate through, the mind takes every sense and memory to navigate the moment in real time. Thus we are not one soul but infinite souls all sensing and communicating, thus creating a mind and brain

  • @anren7445
    @anren7445 День назад

    i thought this video had 1M views atleast and released only recently, turns out it's been released in 2019 with low views... This is a high quality video! it deserves more attention!

  • @MrCartoondude90
    @MrCartoondude90 День назад

    Phenomenal

  • @endingalaporte
    @endingalaporte 2 дня назад

    Pure gold

  • @vishalsharma4610
    @vishalsharma4610 2 дня назад

    I just felt very happy after going through this video. So simply explained . You deserve huge accolades my friend 🎉. Many many thanks . Hoping for more 😅

    • @ArtOfTheProblem
      @ArtOfTheProblem 2 дня назад

      Thank you! currently working on a follow up appreciate this.

  • @Cyberspine
    @Cyberspine 2 дня назад

    A body is necessary for my brain, but I don't imagine that to be the case for all possible brains that have human-level of intelligence.

  • @whypinky3491
    @whypinky3491 2 дня назад

    title was clickbait, this video is 15 minutes

  • @cookiemuffin3208
    @cookiemuffin3208 2 дня назад

    Do you have any sources document?

    • @ArtOfTheProblem
      @ArtOfTheProblem 2 дня назад

      Yes the best source is the book I referenced, but I also have my whole script in the video description

  • @Tofu_va_Bien
    @Tofu_va_Bien 2 дня назад

    This video presents a distorted picture of evolution and the animal kingdom. The examples you choose, the order in which you present your examples, all seem to suggest intelligence evolved along a linear path from basal species to more derived species, terminating with Homo sapiens. Great apes are far from the only animals to exhibit theory of mind; hell, even chickens demonstrate it. Most animals are far more intelligent than we give them credit for. Unfortunately it's useful to maintain this delusion so people can continue to treat animals in the disgraceful ways we do - maiming and killing them for research purposes, food, clothing, for entertainment, viewing them as commodities, instead of the inquisitive, sensitive beings that they are.

  • @willfilipski2470
    @willfilipski2470 2 дня назад

    What is the name of the documentary you pulled the chimpanzee clips from? Looks super interesting.

  • @BunDinYo
    @BunDinYo 3 дня назад

    What crazy informative content. Sometimes you have to be extremely thankful for "random" suggested content. Awesome channel and content!

    • @ArtOfTheProblem
      @ArtOfTheProblem 2 дня назад

      thanks for feeedback, i'm glad you found it, stay tuned

  • @CUtz143
    @CUtz143 3 дня назад

    This video is very well put together, but I have to agree with the others. Even if you just turn the music down it would be easier to listen to. At times I had a hard time discerning your voice from the long drawn out sounds playing

    • @ArtOfTheProblem
      @ArtOfTheProblem 2 дня назад

      thanks for feedback, i tried to correct in my most recent video

  • @jonnscott4858
    @jonnscott4858 3 дня назад

    & missed the States by That much.

  • @crystalclear2315
    @crystalclear2315 3 дня назад

    This is the one of the best video on the evolution of AI.

    • @ArtOfTheProblem
      @ArtOfTheProblem 3 дня назад

      thank you! working on a follow up focued on RL next

  • @abhinavanand1529
    @abhinavanand1529 3 дня назад

    This is the first time (as far as I remember) that I am commenting on a youtube video. This channel is Fantastic.

    • @ArtOfTheProblem
      @ArtOfTheProblem 3 дня назад

      wonderful, hope you enjoy the whole series, i'm still working on it

  • @ryushogun9890
    @ryushogun9890 3 дня назад

    Oh, so that is why it doesn't work. Ok have a good day.

  • @piggly112
    @piggly112 3 дня назад

    very nice very nice

  • @luca-ik2bo
    @luca-ik2bo 3 дня назад

    Whats the song that starts at 13:00?

    • @ArtOfTheProblem
      @ArtOfTheProblem 3 дня назад

      i do original music for this series, there is link in my channel to it all

  • @sebbasbaoz8314
    @sebbasbaoz8314 3 дня назад

    Came here expecting this video would be 600 million years long. It wasn’t. 0/10

  • @xotroll9676
    @xotroll9676 3 дня назад

    christ is lord

  • @WCKEDGOOD
    @WCKEDGOOD 4 дня назад

    I love the way you put all this in evolutionary terms. I can see where biology found a new tool and grew it, and then another new tool developed inside of that.

  • @dr.mikeybee
    @dr.mikeybee 4 дня назад

    Noam should stick to complaining about US policy and leave semantics to the professionals.

  • @estate0007
    @estate0007 4 дня назад

    Wow, what a brilliant chain of thoughts! "Does your brain need your body?" I would say yes, because it's the vehicle that perceives all sensory sensations, fueling the imagination. So if we want to develop much more capable AIs that can "feel," we need to provide them with a body to experience the world. Start-ups and Big Tech might have already advanced this technology much more than we know. Within the next decade, such creatures-which we could call humanoids-might begin to emerge. The fifth generation of a model like Chat GPT 4o, combined with a sophisticated robot equipped with all the state-of-the-art sensors, could then truly work in the reverse direction as described by you. This will be a wild ride, so buckle up!

    • @ArtOfTheProblem
      @ArtOfTheProblem 4 дня назад

      thanks for sharing, hope to go into this more in my follow up video

  • @ternocimadh5863
    @ternocimadh5863 4 дня назад

    Mira Murati ♥

  • @choilive
    @choilive 4 дня назад

    Despite the lack of strong scientific evidence, I am convinced dogs have theory of mind. It seems that mine are constantly trying to evaluate (and sometimes exploit) my mental state. They know when they are being watched, they know when they are being talked to vs talked about, etc.

  • @Ramkumar-uj9fo
    @Ramkumar-uj9fo 4 дня назад

    Recommendation engines, a hot CS topic, are desired by business folks for personalization and user engagement in marketing, media, and e-commerce.

  • @nanxlu
    @nanxlu 4 дня назад

    any source for the discussion at 24:30?

  • @usm1le
    @usm1le 4 дня назад

    what an interesting video. really informative and fun to watch

  • @TheDavidlloydjones
    @TheDavidlloydjones 5 дней назад

    "Trillions of electrical circuits?? 'Nuther RUclips poster with no editor.

  • @jimmybane5352
    @jimmybane5352 5 дней назад

    what do you think the 6th step will be?