Thousands of authors demand payment from AI companies for use of copyrighted works::Thousands of published authors are requesting payment from tech companies for the use of their copyrighted works in training artificial intelligence tools, marking the latest intellectual property critique to target AI development.

  • nickwitha_k (he/him)
    link
    English
    211 months ago

    It really doesn’t. The data is just tokenized and encoded into the model (with additional metadata).

    If I take the following:

    Three blind mice, three blind mice See how they run, see how they run

    And encode it based upon frequency: 1:{"word": "three", "qty": 2} 2:{"word": "blind", "qty": 2} 3:{"word": "mice", "qty": 2} 4:{"word": "see", "qty": 2} 5:{"word": "how", "qty": 2} 6:{"word": "they", "qty": 2} 7:{"word": "run", "qty": 2}

    The original data is still present, just not in its original form. If I were then to use the data to generate a rhyme and claim authorship, I would both be lying and committing plagiarism, which is the act of attempting to pass someone else’s work off as your own.

    Out of curiosity, do you currently or intend to make money using LLMs? I ask because I’m wondering if this is an example of Upton Sinclair’s statement “It is difficult to get a man to understand something when his salary depends on his not understanding it.”

    • @joe@lemmy.world
      link
      fedilink
      English
      0
      edit-2
      11 months ago

      That’s not how LLMs work, and no, I have no financial skin in the game. My field is software QA; I can’t nail down whether it would affect me or not, because I could imagine it going either way. I do know that it doesn’t matter-- legislation is not going to stop this-- it’s not even going to do much to slow it down.

      What about you? I find that most the hysteria around LLMs comes from people whose jobs are on the line. Does that accurately describe you?

      Edit: typos

      • nickwitha_k (he/him)
        link
        English
        211 months ago

        It is not literally how they work, no. But, an oversimplified approximation. Data is encoded into mathematical functions in neural network nodes but, it is still encoded data in the same way that an MP3 and WAV of a song are both still the song; the neural network is the medium.

        Just because the data is stored in a different, possibly more-efficient manner doesn’t mean that it is not there for all intents and purposes (I suppose one could make the argument of it being transformed into metadata but if it is able to reconstruct verbatim, this seems like a fallacy). Nor is it within free use exemptions of most IP laws to use others’ copyrighted, trademarked, or copy-left data to power a commercial product in ways contrary to licensing terms.

        As for my job, well, yes, I do have some anxieties in that area but as a software engineer focused in automation, tooling, and security, I suspect that my position is fairly secure. I would hope yours is too, both for youself and overall software quality. Likely there will be more demand for both of our skillsets with the CRA.

        • @joe@lemmy.world
          link
          fedilink
          English
          011 months ago

          Data is encoded into mathematical functions in neural network nodes but, it is still encoded data in the same way that an MP3 and WAV of a song are both still the song; the neural network is the medium.

          Here: https://www.understandingai.org/p/large-language-models-explained-with

          It’s not plagiarism by any definition of the word that makes sense; while the analogy may not be literal, it is perfectly analogous to suggest that learning new words from a Harry Potter book means that any book you write going forward is plagiarizing JK Rowling; the training data helps map the words in the model-- it’s never used as a blueprint when predicting what word comes next in any given scenario. It’s even farther away from copyright infringement-- there is no limited right granted that allows a IP holder to say how that IP can be processed. That’s just not a thing. You’d have just as much leg to stand on if you suggested that Stephen King had the right to prevent people from reading his books in a room with green walls. You can’t just make up new rights. Trademark law is totally insane. I don’t know why you even mention it. It doesn’t even have the same goals as the others.

          as a software engineer

          I am not so sure that this specific role is in any way secure, myself. You may come to the same conclusion after reading that link I provided-- pay attention to how rapidly the LLMs are growing in complexity. I do not wish for anyone to lose their financial security, even a stranger like you, but I can’t help but look at the available information and come to that conclusion.

          • nickwitha_k (he/him)
            link
            English
            111 months ago

            there is no limited right granted that allows a IP holder to say how that IP can be processed.

            There very much is. Literally all intellectual property law concerns how intellectual property may or may not be used and licensed. For example, one may not record and sell a cover of a song that is in copyright without explicit permission in the form of a mechanical license. In our industry, one may not use code that is covered by a GNU GPL license without fulfilling the source code distribution requirements (see: IBM RedHat drama).

            The training data is what gives the LLM value in the problematic situations so, it is very clear that the material is a key component in the business plan and commercial use. This is not an educational, parody, or other exempt fair-use activity. This means that if any data used for training is not licensed appropriately, such use is a clear violation of intellectual property laws, even if but explicitly covered due to the technology not existing when they were written.

            I am not so sure that this specific role is in any way secure, myself. You may come to the same conclusion after reading that link I provided-- pay attention to how rapidly the LLMs are growing in complexity. I do not wish for anyone to lose their financial security, even a stranger like you, but I can’t help but look at the available information and come to that conclusion.

            I do agree that there are software engineering jobs at risk in the short-term due to management desire to cut labor while riding the hype train as well as US taxation on R&D but, given the widespread failures found when companies have replaced engineers and others, I have been expecting wave of desperate re-hiring to occur in 1-3 years after layoff. The particular segment that I’m involved in is generally considered high-ROI so, likely less vulnerable (but no guarantee).

            I don’t see how QA could be sanely replaced though as, from my experience, it’s already frequently under-funded and, as I mentioned, for all the bad in the CRA drafts, one of the positives is that QA-related work is going to be mandatory for software and devices sold in the EU market.

            • @joe@lemmy.world
              link
              fedilink
              English
              111 months ago

              Sorry about the late reply-- I try my best to stay mostly disconnected from the internet on the weekends.

              Literally all intellectual property law concerns how intellectual property may or may not be used and licensed.

              True, but no IP law gives the IP holder the power you’re trying to give them. That is what I’m saying. It would need the law to be changed. There is no aspect of IP law that says that you aren’t allowed to use the text to train anyone, let alone a LLM.

              The training data is what gives the LLM value in the problematic situations so, it is very clear that the material is a key component in the business plan and commercial use.

              This does not matter. If I read a book on Six Sigma business practices and then use that knowledge to better structure my business to increase my profits, I don’t owe the author of the book anything from that. You’re, again, trying very hard to give away your own rights in order to stick it to LLMs. I’m positive IP rights holder would love this new right you want to give them. Perhaps reconsider the implications, though. Simply making money off of the information found in a book does not give the author rights to that money.

              Let me ask you this. If you have a epub of a book on your computer and you select it and press Ctrl-C, Ctrl-V-- have you violated copyright laws? You’ve made a copy, after all.

              • nickwitha_k (he/him)
                link
                English
                111 months ago

                No worries! Definitely important to have healthy relationships with device usage.

                Your statements on rights of IP owners seems to imply that the vast majority of open-source licenses are meaningless. It also seems to be a parallel to the legal cases brought by the family of Henrietta Lacks, who’s cells were cultured without her consent and have been used extensively in research and pharmaceutical development, bringing in significant profits, while neither Ms. Lacks, nor her family saw a dime.

                Not 1:1, as Lacks involves human research and biomedical research but, it certainly rhymes as there is a lack of consent and unshared profits.

                Let me ask you this. If you have a epub of a book on your computer and you select it and press Ctrl-C, Ctrl-V-- have you violated copyright laws? You’ve made a copy, after all

                Depending on the use, possibly. If I intended to sell copies of it, almost definitely. Likewise if I intended to create derivative art that did not fall within the bounds of fair use without attributing credit or license from the holder of the copyright.

                Speaking from an ethical, rather than purely legal perspective, profiting off of training an LLM or similar neural network on someone else’s work, in a manner that competes with the source work, without their permission or giving them a share of the proceeds, is hard to imagine as ethical in any manner that does not involve extraordinary mental gymnastics.

                On the other hand, I would not see anything wrong with doing so for one’s personal enjoyment, if there is no harm done to the IP owner.