element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet & Tria Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
    About the element14 Community
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Japan
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      •  Vietnam
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Community Hub
Community Hub
Member's Forum Does AI plagiarize and take credit for work of others ?
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Leaderboard
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Community Hub to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • Replies 18 replies
  • Subscribers 627 subscribers
  • Views 1569 views
  • Users 0 members are here
Related

Does AI plagiarize and take credit for work of others ?

robogary
robogary over 1 year ago

I was surfing the web for advice on remedies for python error "module missing" and then for example code to compare to.

Later I did the same google on my cell phone, which AI wants first shot to answer. It told me " here is code from AI" , which looks exactly like example code from an older webpage. 

I was thinking , Mr AI if you found this code in cyberspace, why didn't you give the originator get credit ? It's not like they asked you for money.

I wonder if AI does the same for recipes. ......

  • Sign in to reply
  • Cancel
Parents
  • shabaz
    shabaz over 1 year ago

    Here's a function, done with an AI that revealed zero sources throughout.
    I used AI to help me write this function last night. And, obviously, I guided it throughout the process to ensure I wasn't copying anyone else, so as not to violate other people's licenses.

    It's my work. With the benefits of AI. I'd be very curious if any human being can conclude it is not original work, provided they can give at least some evidence that it may have been copied from other people's work (I'll settle for just fair plausibility, I'm not looking for extreme "beyond reasonable doubt" level of evidence). It shouldn't be too hard, there are several MAX7219 libraries on GitHub that AI might have copied from (or that humans could have directly copied from pre-AI).

    void Max7219::setRamPixel(uint16_t x, uint16_t y, uint8_t pixelvalue) {
        uint16_t idx;
        uint8_t bitIdx;
        uint16_t linx, liny;
        // x position is 0..(8*mHorizQty - 1), y position is 0..(8*mVertQty - 1)
        if (mDisplayData == nullptr) return; // Ensure display data is initialized
        if (x >= 8 * mHorizQty || y >= 8 * mVertQty) return; // Validate x and y positions
        // each byte in mDisplayData represents a row of 8 pixels
        // transformation:
        // linx and liny represent the positions if the modules were all in a sigle line
        linx = (((mVertQty-1)-(y/8))*mHorizQty*8) + x;
        liny = (y % 8);
        // now do the calculations using the transformed linx and liny, i.e.
        // as if all modules were on a single 8x8 line
        idx = (linx/8) + (liny * mQty); // Calculate RAM byte index in the display data
        bitIdx = (uint8_t)(7 - (linx % 8)); //Calculate bit index within the byte, where most significant bit is at position 0
        if (pixelvalue) {
            mDisplayData[idx] |= (1 << bitIdx); // Set the pixel
        } else {
            mDisplayData[idx] &= ~(1 << bitIdx); // Clear the pixel
        }
    }
    

    And, incidentally, I can give fair evidence that it is my work (just so that the challenge is balanced, I'm not asking for anything unreasonable!).

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Cancel
  • BigG
    BigG over 1 year ago in reply to shabaz

    This mostly happens when using Gemini Code Assist in VS Code. It highlights potential issues re licensing.
    image

    In my opinion, the best way around some of this minefield, is to place an acknowledgement in the header stating that the code was AI generated etc.

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Cancel
  • shabaz
    shabaz over 1 year ago in reply to BigG

    I'm using JetBrains IDEs, and just noticed they have a Gemini plug-in, I'll have to give it a try too.

    Occasionally AI has been quite helpful with arrays such as the ones you show; I tend to 'force' my desired encoding for the first few values, and then it figures out the pattern from there, and continues it (not always successfully, but enough to help save time overall).

    I'm also finding I'm commenting my code a lot better than pre-AI, since that acts as a guide too.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
Reply
  • shabaz
    shabaz over 1 year ago in reply to BigG

    I'm using JetBrains IDEs, and just noticed they have a Gemini plug-in, I'll have to give it a try too.

    Occasionally AI has been quite helpful with arrays such as the ones you show; I tend to 'force' my desired encoding for the first few values, and then it figures out the pattern from there, and continues it (not always successfully, but enough to help save time overall).

    I'm also finding I'm commenting my code a lot better than pre-AI, since that acts as a guide too.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
Children
No Data
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2026 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube