any programmer who knows how to program artificial intelligence

sleon

Newbie
Joined
Mar 15, 2023
Messages
9
Reaction score
0
any programmer who knows how to program artificial intelligence
 
any programmer who knows how to program artificial intelligence
This is like walking into a kitchen at a restaurant full of chefs and then asking: "Anyone know how to cook a fish?"

Depending on the recipe, it would either be extremely simple or extremely complicated to make. AI code can range from a set of if-else statements to 100 billion parameter large LLMs. Both would technically be called "programming an AI", just that one of them is orders of magnitude more complex and costs a couple million dollars in compute.

What do you need help with?
 
This is like walking into a kitchen at a restaurant full of chefs and then asking: "Anyone know how to cook a fish?"

Depending on the recipe, it would either be extremely simple or extremely complicated to make. AI code can range from a set of if-else statements to 100 billion parameter large LLMs.

What do you need help with?
Yes your right, and as i like to call it, instead of the complement of artificial, is automatic intelligence! lol

@sleon Would a python script that has an interface to the open ai chatgpt API work for you? There are a couple of example of those on the forum, and other places online like github I'm sure.
 
I can use ai to "program". Does that count?
 
This is like walking into a kitchen at a restaurant full of chefs and then asking: "Anyone know how to cook a fish?"

Depending on the recipe, it would either be extremely simple or extremely complicated to make. AI code can range from a set of if-else statements to 100 billion parameter large LLMs. Both would technically be called "programming an AI", just that one of them is orders of magnitude more complex and costs a couple million dollars in compute.

What do you need help with?
wanting to solve a mobile application
 
wanting to solve a mobile application
You're in the programming subforum. It's assumed that you are trying to solve this problem yourself and need some advice/help.

Otherwise go to "Hire A Freelancer" if you want someone to do it for you.

If it's the former, you need to be a lot more clearer what you mean by "solving a mobile application".
 
Yes your right, and as i like to call it, instead of the complement of artificial, is automatic intelligence! lol

@sleon Would a python script that has an interface to the open ai chatgpt API work for you? There are a couple of example of those on the forum, and other places online like github I'm sure.

I want to create an application with AI but I don't know where to start
 
wanting to solve a mobile application
This is like being in a kitchen and a bunch of nervous-looking cooks hesitantly ask you "well, what kind of fish do you want to eat?"

And you reply with "I want to solve a breakfast problem."
 
I want to create an application with AI but I don't know where to start
Well before you create an application with AI you need to figure out what problem does your app solve by using AI.

You need to start with a problem first, not with "i want to use AI for my app". Thats just chasing the AI hypetrain and will simply lead to a failed project.

And even before you make an app with AI you need to know how to make an App. Do you know that?
 
I want to create an application with AI but I don't know where to start

Well before you create an application with AI you need to figure out what problem does your app solve by using AI.

You need to start with a problem first, not with "i want to use AI for my app". Thats just chasing the AI hypetrain and will simply lead to a failed project.

And even before you make an app with AI you need to know how to make an App. Do you know that?
Can't say better than this apart from just follow a youtube video with a cool UI or something that you like, just even follow along with 10-20 youtube tutorials on various projects, and get yourself ideas that motivate you.

Motive = Motivation. Then once you are motivated about building your app, you can just ask chat gpt for each step explanation. As simple as that sounds, in practise! Well... hahah best you find out for yourself! :)
 
Well before you create an application with AI you need to figure out what problem does your app solve by using AI.

You need to start with a problem first, not with "i want to use AI for my app". Thats just chasing the AI hypetrain and will simply lead to a failed project.

And even before you make an app with AI you need to know how to make an App. Do you know that?
I don't know how to make an app!! and I also know what I want the app to do, in case I have the idea I just don't know how to make the app
 
I wish I could have the patience of everyone on this thread.

The question of the OP makes it obvious that
He knows nothing about creating Mobile Apps or any App for that matter.
He does not know what AI exactly is or even has up to a 20% idea.

@sleon, before you start any programming tutorials, I suggest you get a very high-level explanation of what exactly AI is. I mean a general explanation (Without any technical stuff). Hope u understand.
 
In the simplest terms, what they call "AI" is really just an illusion because it is a collection of indexed data, where such data is scored. There are trees of score values assigned to the indices, and when a "prompt" is input the program uses a proprietary method to score the input and determine what it most likely is. From that point, the response is merely a matter of traversing the trees of scores and finally returning the data associated with the last branch.

It is computationally-intensive to create the initial score-index relationships because, for example, one unit of data MAY be the approriate response to several entirely different prompts. There is a lot of backtracking involved as each possibility is drawn out. Once the model is completed, aka "trained", its performance benefits greatly from parallelism...meaning that a single prompt could spawn several hundred or thousand threads that each do their own traversals, with the one that finds the best answer first becoming the output.

You can also use a "lazy list" kind of approach in some cases, where multiple threads or processes are spawned with a particular task, and either the first or last task to complete OR the order in which the tasks finish becomes the resulting answer.
 
any programmer who knows how to program artificial intelligence
I have developed many models classifiers, machine learning .etc.

You would need
1. big data set
2. be very specific of what problem you are trying to solve
3. profit :)
 
Back
Top