Menu
News
All News
Dungeons & Dragons
Level Up: Advanced 5th Edition
Pathfinder
Starfinder
Warhammer
2d20 System
Year Zero Engine
Industry News
Reviews
Dragon Reflections
White Dwarf Reflections
Columns
Weekly Digests
Weekly News Digest
Freebies, Sales & Bundles
RPG Print News
RPG Crowdfunding News
Game Content
ENterplanetary DimENsions
Mythological Figures
Opinion
Worlds of Design
Peregrine's Nest
RPG Evolution
Other Columns
From the Freelancing Frontline
Monster ENcyclopedia
WotC/TSR Alumni Look Back
4 Hours w/RSD (Ryan Dancey)
The Road to 3E (Jonathan Tweet)
Greenwood's Realms (Ed Greenwood)
Drawmij's TSR (Jim Ward)
Community
Forums & Topics
Forum List
Latest Posts
Forum list
*Dungeons & Dragons
Level Up: Advanced 5th Edition
D&D Older Editions
*TTRPGs General
*Pathfinder & Starfinder
EN Publishing
*Geek Talk & Media
Search forums
Chat/Discord
Resources
Wiki
Pages
Latest activity
Media
New media
New comments
Search media
Downloads
Latest reviews
Search resources
EN Publishing
Store
EN5ider
Adventures in ZEITGEIST
Awfully Cheerful Engine
What's OLD is NEW
Judge Dredd & The Worlds Of 2000AD
War of the Burning Sky
Level Up: Advanced 5E
Events & Releases
Upcoming Events
Private Events
Featured Events
Socials!
EN Publishing
Twitter
BlueSky
Facebook
Instagram
EN World
BlueSky
YouTube
Facebook
Twitter
Twitch
Podcast
Features
Top 5 RPGs Compiled Charts 2004-Present
Adventure Game Industry Market Research Summary (RPGs) V1.0
Ryan Dancey: Acquiring TSR
Q&A With Gary Gygax
D&D Rules FAQs
TSR, WotC, & Paizo: A Comparative History
D&D Pronunciation Guide
Million Dollar TTRPG Kickstarters
Tabletop RPG Podcast Hall of Fame
Eric Noah's Unofficial D&D 3rd Edition News
D&D in the Mainstream
D&D & RPG History
About Morrus
Log in
Register
What's new
Search
Search
Search titles only
By:
Forums & Topics
Forum List
Latest Posts
Forum list
*Dungeons & Dragons
Level Up: Advanced 5th Edition
D&D Older Editions
*TTRPGs General
*Pathfinder & Starfinder
EN Publishing
*Geek Talk & Media
Search forums
Chat/Discord
Menu
Log in
Register
Install the app
Install
Community
General Tabletop Discussion
*TTRPGs General
What's the difference between AI and a random generator?
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="Gorgon Zee" data-source="post: 9289373" data-attributes="member: 75787"><p>This is a little bit late coming to the thread, but in case anyone reads this thread in the future, let me give some hopefully helpful comments. My job is as an AI/ML Architect and I've followed this discipline for 20+ years. I am currently spending about 50% of my time researching ways to use Generative AI's to improve health care. I work for a not-for-profit; our motivation is simply to make healthcare better.</p><ul> <li data-xf-list-type="ul">A very high level take on Generative AI's is that they produce new text/images/whatever by starting with a random pattern of variables that represent an answer and repeatedly modifying that random answer with probabilities related to the model's parameters until the solution is stable.</li> <li data-xf-list-type="ul">They are thus inherently non-deterministic. However you can set two sets of parameters to make them more so:<ul> <li data-xf-list-type="ul">Start with the same seed in the random number generator so the initial state is determined by that seed (only really useful if you want to reproduce an experiment)</li> <li data-xf-list-type="ul">Set the temperature parameter to a low value. That means that at each iteration, it is more likely to choose the "most likely" next state of answer. With temperature zero, it will always chose the "best" answer state and so will always iterate to the same solution.</li> </ul></li> <li data-xf-list-type="ul">Training a GenAI model does not modify code; it simply sets parameters. Roughly, it's the same as training any neural net or even basic Baysian models. You present it with an example, and the parameters are modified a little bit to make it more likely to be able to reproduce that example.</li> <li data-xf-list-type="ul">The reason that GenAI is not easily explicable is simply that there are a lot of parameters. Typically billions. And they interact non-linearly and are not tied directly to properties of the inputs. Contrast that with something like linear regression which has few parameters, each of them is tied to specific input features, and they interact in linear, predictable manners.</li> <li data-xf-list-type="ul">When we say a GenAI "hallucinates" or "says something false", we are trying to think of the way we answer a question and apply it to the GenAI. If I am asked "Who killed Richard III" I search my memory for facts and try to find the right one. An error I make is to believe something is truthful when it isn't. A GenAI program has absolutely no concept of truth at all. It is simply trying to find a set of words in the sea of all possible words that when place at the end of the words "Who killed Richard III?" best fits the set of probabilities that it has been trained on.</li> </ul><p>The above is obviously very simplified, but hopefully helpful.</p></blockquote><p></p>
[QUOTE="Gorgon Zee, post: 9289373, member: 75787"] This is a little bit late coming to the thread, but in case anyone reads this thread in the future, let me give some hopefully helpful comments. My job is as an AI/ML Architect and I've followed this discipline for 20+ years. I am currently spending about 50% of my time researching ways to use Generative AI's to improve health care. I work for a not-for-profit; our motivation is simply to make healthcare better. [LIST] [*]A very high level take on Generative AI's is that they produce new text/images/whatever by starting with a random pattern of variables that represent an answer and repeatedly modifying that random answer with probabilities related to the model's parameters until the solution is stable. [*]They are thus inherently non-deterministic. However you can set two sets of parameters to make them more so: [LIST] [*]Start with the same seed in the random number generator so the initial state is determined by that seed (only really useful if you want to reproduce an experiment) [*]Set the temperature parameter to a low value. That means that at each iteration, it is more likely to choose the "most likely" next state of answer. With temperature zero, it will always chose the "best" answer state and so will always iterate to the same solution. [/LIST] [*]Training a GenAI model does not modify code; it simply sets parameters. Roughly, it's the same as training any neural net or even basic Baysian models. You present it with an example, and the parameters are modified a little bit to make it more likely to be able to reproduce that example. [*]The reason that GenAI is not easily explicable is simply that there are a lot of parameters. Typically billions. And they interact non-linearly and are not tied directly to properties of the inputs. Contrast that with something like linear regression which has few parameters, each of them is tied to specific input features, and they interact in linear, predictable manners. [*]When we say a GenAI "hallucinates" or "says something false", we are trying to think of the way we answer a question and apply it to the GenAI. If I am asked "Who killed Richard III" I search my memory for facts and try to find the right one. An error I make is to believe something is truthful when it isn't. A GenAI program has absolutely no concept of truth at all. It is simply trying to find a set of words in the sea of all possible words that when place at the end of the words "Who killed Richard III?" best fits the set of probabilities that it has been trained on. [/LIST] The above is obviously very simplified, but hopefully helpful. [/QUOTE]
Insert quotes…
Verification
Post reply
Community
General Tabletop Discussion
*TTRPGs General
What's the difference between AI and a random generator?
Top