AI Artificial Intelligence ChatGPT & XSI & Stable Diffusion

News concerning 3D DCC business
Post Reply
User avatar
Nolan
Posts: 55
Joined: 11 Apr 2011, 23:47

AI Artificial Intelligence ChatGPT & XSI & Stable Diffusion

Post by Nolan » 04 Jan 2023, 09:35

Just experimenting with OpenAI ChatGPT in XSI & 3D USD.

Pixar USD & XSI .dotXSI and XSI Python

These aren't quite fully formed but they are getting close.

Prompt: Generate Pixar USD of a cube at the origin of size 10,10,10

The file doesn't import as a USD import in Blender but it has potential.

Code: Select all

// PixarUSD Cube at the Origin of Size 10,10,10

#usda

def Cube "cube"

{

float3 xformOp[1] = {

"xformOp:translate", 0.0, 0.0, 0.0

};

float3 xformOpScale[1] = {

"xformOp:scale", 10.0, 10.0, 10.0

};

float3x3 xformOpOrient[1] = {

"xformOp:orient", 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0

};

float3 xformOpOrder[1] = {

"xformOp:order", 0.0, 1.0, 2.0

};

string type = "cube";

}
Prompt: create the same cude in softimage xsi file type dotXSI
Haven't checked that it loads but again a lot of potential.

Code: Select all

// Softimage XSI Cube at the Origin of Size 10,10,10

<?xml version="1.0" encoding="UTF-8"?>
<XSIFile>
    <Model Name="cube">
        <Properties>
            <Transformation>
                <Translation>0.0 0.0 0.0 </Translation>
                <Rotation>0.0 0.0 0.0 </Rotation>
                <Scaling>10.0 10.0 10.0 </Scaling>
            </Transformation>
        </Properties>
    </Model>
</XSIFile>

Updated this prompt so it's no longer a convert from what it had preciously generated. For a much better result.
Prompt: create the a cude in softimage xsi at the origin size 10,101,10 using Python

Code: Select all

# Softimage XSI Python Cube at the Origin of Size 10,10,10

from xsi import xsi

cube = xsi.ActiveSceneRoot.AddPrim('Cube', 'MeshSurface')
cube.Kinematics.Global.Transform.Translation = [0.0, 0.0, 0.0]
cube.Kinematics.Global.Transform.Rotation = [0.0, 0.0, 0.0]
cube.Kinematics.Global.Transform.Scaling = [10.0, 10.0, 10.0]
Sometimes apparently it pauses and so type Prompt: continue

I wonder if there is a way to convert from binary to ASCII files and the reverse? Ive tried but failed.

Not me: "I Made a Game with ChatGPT... ( In 3 hours using only GPT )"
https://www.youtube.com/watch?v=L6vW0um5XTg


AI Artificial Intelligence OpenAI Chat GPT
Its free for now but I wonder what they will eventually charge?

Sign up for free ( at your own risk ). It asks for your cell phone number, name and email. Don’t enter any private information.
https://chat.openai.com/
https://beta.openai.com/playground

if you ever want to delete your data
https://help.openai.com/en/articles/637 ... my-account
ChatGPT continues to suffer from the fundamental problems of current language models:
• They invent facts,
• but present them with great confidence in polished words,
• they offer no assessment of the reliability of the information
• and no source transparency.
• Moreover, large language models can reinforce prejudices and create new ones

ChatGPT is “incredibly limited,” Altman writes, but “good enough at some things to create a misleading impression of greatness.”
Currently, he says, it’s a mistake to use ChatGPT for important tasks. The system is a glimpse of progress; in terms of robustness and reliability, there is still much work to be done, Altman writes.
Sharing & Publication Policy
https://openai.com/api/policies/sharing-publication/


Also have gotten Stable Diffusion txt2img running
https://stability.ai

The instructions to install and community are on the Discord https://discord.gg/stablediffusion
There is a special install if you are running a GPU with less than 6GB VRAM by Basujindal.

txt2img is not very good at new and different really creative ideas and it can't make modifications, mainly new images. I thinks it's nVidia that are working on one which enables you to mask and regenerate. Not that Ive used it much.
Hope it can do good textures?

txt2txt with generating code, at this stage still requires massaging.


Some txt2txt chat prompts:
write a [length] [writing results] on [topic] in the style of [style]
Rephrase the text “”
Write me an outline of [book]
Elaborate on [section]
Replace my simple vocabulary with advanced english “”
Now write it in the style of [author]
Act as a professional spelling and grammar corrector and improver
now write that in the style of a pulitzer price winner
Act as an professional [insert profession]
Nolan
Second Nature Ltd
www.2ndNature.co.nz

User avatar
Nolan
Posts: 55
Joined: 11 Apr 2011, 23:47

Re: AI Artificial Intelligence ChatGPT & XSI & Stable Diffusion

Post by Nolan » 04 Jan 2023, 19:39

A few weeks ago watched Al Artificial Intelligence Gore talking “Climate TACER” website on CNN Amanpour

Many data sets including satellite and others used with AI to track emissions by countries, sectors and individual companies. This tool can be used to rank worst emitters!
Because it uses AI and, many, data sources it can't be easily cheated.

Best on Desktop vs Mobile

INDEPENDENT GREENHOUSE
GAS EMISSIONS TRACKING
https://climatetrace.org

The source data is also available.






Blender Python ChatGPT generation
AMAZING AI writes python scripts for Blender (ChatGPT)
https://www.youtube.com/watch?v=gfxTKlQseIA

This AI changes EVERYTHING (ChatGPT x Blender)
https://www.youtube.com/watch?v=wU1cQcQFimw





Greg Brockman, President and Co-Founder of @OpenAI that publish ChatGPT
https://www.youtube.com/watch?v=Rp3A5q9L_bg&t=2188s




Note that I updated the XSI Python generated from a conversion prompt into a fully given prompt in the previous post. It performed way better.

We need to get the old XSIBase forum content online, it doesn't need to function, so the AI models can index it. I assume the old xsi mailing list is still online.

At this stage it's not great for producing 3D models or 3D with textures and also terrible at animation. But these are changing rapidly.

All economist agree that a rise in 'productivity', this time due to AI, should increase real incomes, standards of living and create economic growth. But there will be a lot of economic reordering going to take place. What is now of value?

But it will be biased to generic culture.
Nolan
Second Nature Ltd
www.2ndNature.co.nz

Joseg
Posts: 3
Joined: 29 Sep 2009, 04:13

Re: AI Artificial Intelligence ChatGPT & XSI & Stable Diffusion

Post by Joseg » 28 Aug 2023, 05:58

that looks like it has some future in XSI. I was looking in it last week. but my skills at not there.

User avatar
talent103
Posts: 181
Joined: 08 Jan 2010, 15:47
Location: New York City
Contact:

Re: AI Artificial Intelligence ChatGPT & XSI & Stable Diffusion

Post by talent103 » 30 Aug 2023, 21:15

Is there a USD addon for XSI? to import and export USD files? I am new to USD but been hearing a lot about it lately.

User avatar
FXDude
Posts: 1129
Joined: 19 Jun 2012, 21:59

Re: AI Artificial Intelligence ChatGPT & XSI & Stable Diffusion

Post by FXDude » 01 Sep 2023, 03:40

talent103 wrote: 30 Aug 2023, 21:15 Is there a USD addon for XSI? to import and export USD files? I am new to USD but been hearing a lot about it lately.
"Shekn" has made an XSI implementation, and I've imported the "kitchen", which is all great sub-d modeling.

If you sub-d -everything- twice, everything looks pristine !
( including for any corner that all have triple points )

Also it imports all meshes (rather than "displaying without loading")
which has advantages and drawbacks,

But otherwise ... in general is USD still in quite a bit of a "mess"
(very hard to establish "standards", while some big shops use it in their own way, and while not necessarily ideal if the standard was established by the "industry standard", which often sucks lol )

User avatar
FXDude
Posts: 1129
Joined: 19 Jun 2012, 21:59

Re: AI Artificial Intelligence ChatGPT & XSI & Stable Diffusion

Post by FXDude » 01 Sep 2023, 03:47

Nolan wrote: 04 Jan 2023, 19:39
Greg Brockman, President and Co-Founder of @OpenAI that publish ChatGPT
I've been looking into "local" GPT4 implementations .. there are a few ..
so that I could query a "local AI"

because who knows who runs "chatGPT",
but we are giving them ALOT of "intelligence", just by "using the service."

(probably the point of making that happen)

But nevertheless, we are "giving intelligence" to some people ...
... so I hope that this "intelligence" (or "power" from collected data)
would be used for "not bad reasons".
( or not just to "monetize" as much as humanly (or "machinely") possible ... lol )

User avatar
FXDude
Posts: 1129
Joined: 19 Jun 2012, 21:59

Re: AI Artificial Intelligence ChatGPT & XSI & Stable Diffusion

Post by FXDude » 01 Sep 2023, 23:53

Nolan wrote: 04 Jan 2023, 19:39 Updated this prompt so it's no longer a convert from what it had preciously generated. For a much better result.
Prompt: create the a cude in softimage xsi at the origin size 10,101,10 using Python

Code: Select all

# Softimage XSI Python Cube at the Origin of Size 10,10,10

from xsi import xsi

cube = xsi.ActiveSceneRoot.AddPrim('Cube', 'MeshSurface')
cube.Kinematics.Global.Transform.Translation = [0.0, 0.0, 0.0]
cube.Kinematics.Global.Transform.Rotation = [0.0, 0.0, 0.0]
cube.Kinematics.Global.Transform.Scaling = [10.0, 10.0, 10.0]
Interesting ..

Also since XSI scripting has "easy-er" or simpler "step by step" scripting,
should that also maybe make it easier to generate scripts using AI ?
We need to get the old XSIBase forum content online, it doesn't need to function, so the AI models can index it. I assume the old xsi mailing list is still online.
We all wished for that to happen !
( like an "offline" XSI Base )

I recently saw a post from Raphael Ducketer ( if I spelled that right ?)
so I was thinking of maybe trying to reach him maybe.
( if the XSI-Base database is at-all still existent )

But should there be enough to train with the SDK Documentation ?
All economist agree that a rise in 'productivity', this time due to AI, should increase real incomes, standards of living and create economic growth. But there will be a lot of economic reordering going to take place. What is now of value?
well... alot of are also warning about AI.

Like if it were possible to replace EVERYONE with algorithms that would do whatever we use to,
then that would be considered as an "ideal situation" for many companies.

With very strong pushes towards that in any way possible.

( algorithms can cost less than pennies an hour, working 24/7 )

But what worries me isn't "AI" itself, but what "market leaders" would do using AI
namely to get to "maximization objectives" (at all costs)

$-)

User avatar
talent103
Posts: 181
Joined: 08 Jan 2010, 15:47
Location: New York City
Contact:

Re: AI Artificial Intelligence ChatGPT & XSI & Stable Diffusion

Post by talent103 » 04 Sep 2023, 15:06

Thanks for the info on USD. I guess FBX is still the way to go until they iron out the kinks

Post Reply

Who is online

Users browsing this forum: No registered users and 50 guests