Actor Stephen Fry says his voice was stolen from the Harry Potter audiobooks and replicated by AI—and warns this is just the beginning::The actor told an audience in London that AI was a “burning issue” for actors on strike.

  • mvirts@lemmy.world
    link
    fedilink
    English
    arrow-up
    13
    arrow-down
    26
    ·
    9 months ago

    I mean humans can do and have been doing this exact thing forever. Computers make it faster and easier, just like everything else. This isn’t AI, this is training a speech model using machine learning techniques.

    • sfgifz@lemmy.world
      link
      fedilink
      English
      arrow-up
      41
      arrow-down
      2
      ·
      9 months ago

      A few humans imitating other humans is not even comparable to the scale that computers imitating humans can reach though.

      • mvirts@lemmy.world
        link
        fedilink
        English
        arrow-up
        1
        arrow-down
        2
        ·
        9 months ago

        True. I think the main difference is that a computer has no moral compass and won’t remember the large scale criminal operation it was a part of. I don’t think it’s worthwhile to fear or regulate this kind of ml application, the cat is out of the bag and the best we can do is implement security controls like passwords with our important relationships.

    • Fushuan [he/him]@lemm.ee
      link
      fedilink
      English
      arrow-up
      5
      arrow-down
      2
      ·
      9 months ago

      This isn’t AI, this is training a speech model using machine learning techniques.

      … That’s AI. AI is a subset of ML. Machines Learn to gain Artificial Intelligence.

      • mvirts@lemmy.world
        link
        fedilink
        English
        arrow-up
        3
        arrow-down
        1
        ·
        9 months ago

        Maybe, I think of AI as requiring intelligence rather than being controlled by an operator, translating a human voice or text from one style to another. Maybe I’m wrong, it’s just a name after all.

        • Fushuan [he/him]@lemm.ee
          link
          fedilink
          English
          arrow-up
          2
          ·
          9 months ago

          Well, if you think about it, being able to morph an input text into the voice of someone is the job that some voice actors do, and the task of doing such a thing is something that I would define as intelligent.

          In any case, it’s not you or me who define the AI term, in CompSci AI is used to mention recommendation systems (which include search engines that do smart ranking, which nowadays is all of them), translation systems, NLP (chatbots, spam filters), Image processing (auto labelling stuff, object tracking, …) and so forth.

          Most of these systems weren’t considered “ai powered” before neural networks and deep learning (high layered neural networks), but nowadays most of those are: NLP uses NNs that convert words / text to vectors to then operate around those and decide on stuff (this includes search and translation), Image processing uses NNs too to be able to “learn” information about several images, to then be able to recognize humans, faces, track objects, generate fake images from an input, deepfakes…

          Usually, they are called intelligent systems and thus AI because of the way they are prepared, all of those require that some sort of NN is trained with some dataset to then generate a model with weights that is then fed to the NN alongside some input to archieve the desired result. That trained model, which is a bunch of numbers that decide how the input is transofrmed according to the NN, is the, so to say, “intelligence” that the machine as artificially learnt.

          That’s it, that’s literally it, disregard marketing and articles written by salespeople, AI is a system that uses some sort of model trained with a dataset, Usually a NN model although in my opinion, any model (random forests for example) should work too, but it’s true that NN models process data of higher complexity.