+ 4
AI conversations
How do i create an AI that can chat with me
14 Answers
+ 3
well it's not easy for beginners start with normal projects and do progress after sometimes you realise that you're not fully prepared for making any AI yourself and second thing is you need lot of data for it also if you're talking about clone of any AI model so its just work with API but if you start now it must create complications for beginners like you so learn first than do these stuffs.
if i say in easy way :- this is not a easy task you need LLM(means heavy data) also money to buy too much things. and as a beginner you can't do that.
+ 8
Creating an ai might be quite hard at first.....
+ 7
If you mean you want to write your own version of ChatGPT, forget about it. It took thousands of programmers years to develop that technology.
If you just want to write a simple chat bot, you can certainly do that.
Your chatbot has to make some effort to understand what you are saying or asking. So it must understand a variety of words and recognize what to do in response. To do that, you need a narrow focus of what conversation your chat bot can have. This is common with those website support chatbots. They only know how to discuss a few things. The only recognize 50 or 100 words.
Try going to your mobile provider chat and saying things like. "new phone", "upgrade account", "representative", it will know. But tell it you don't like the background wallpaper and it will not understand. It only knows a fixed set of phrases.
To write that - your script accepts input - then searches the input for those words it understands and then replies with a phrase. Your script should know the variations of phrases such as "mobile phone" "telephone" "cell phone" "cellular phone" mobile device" "iphone" "android" -- all those might mean the same thing as far as the chatbot is concerned.
+ 5
Raushan Raj , this is a community question post.you can ask a question here,and it will be answered by the community.
+ 3
I disagree with the current answers.
It depends how much you re-create.
If you wish for as simple and high quality as possible, open AI has an API that you can use with GPT. See the API and how to use an API. You then pass the input to the API, and fine-tune the model until you get the best sort of results for your task after some testing.
If you don't want to use an API there are a few alternatives.
Can use a pre-trained model directly, for example BERT.
Or, you will have to create and train a model. A transformer is ideal but a simpler random Forest (RF) or even a manual comparison of the best match in the dataset.
Use SKlearn for RF.
To start off: Find a dataset online (e.g kaggle) of inputs and the expected output. See if you can then train the model to predict the correct output.
The next step is to work on data that is sequential and train it on predicting sequences of words. Given an input, find related text, and predict a word one after another.
+ 2
Rrestoring faith is correct in that you can use a commercial AI. They typically charge, but itâs not expensive.
My response was based on âcreating an AIâ. However, you can use an AI in your chat bot.
+ 2
Wanna create an ai gonna be a lot of fun,hard work and dedication đđ
+ 2
Jerry Hobby My response is creating an AI. Chat-GPT is a transformer.
If the API is preferred, grog has a free plan.
+ 1
Ahh i see thanks
+ 1
I am new here . I am nothing understanding.. đ€đ€
+ 1
Ahhh how exactly can I create an app and what tools do I need to know exactly
+ 1
Hello
+ 1
Thank you for sharing your detailed insights! I agree that the approach depends heavily on how much customization is needed and the resources available. Using OpenAIâs API is definitely a great option for simplicity and high-quality results, especially when combined with fine-tuning to tailor it to specific tasks. It's a solid recommendation for those looking for a relatively straightforward solution.
For those with more technical expertise or unique requirements, exploring pre-trained models like BERT or building a model from scratch is a valid path. Leveraging frameworks like SKlearn for Random Forest or creating transformer-based models offers a lot of flexibility, though it requires a deeper understanding of ML concepts and tools.
Starting with a relevant dataset from platforms like Kaggle is a great first step, as it provides the groundwork for testing and iterating. Your mention of working on sequential data and building predictive capabilities is also spot onâthis is key for applications requiring contextual understanding, like text generation or analysis. https://www.onebloodrewards.me/
Thanks again for your inputâitâs a comprehensive roadmap for anyone navigating these choices!
0
Creating an AI chatbot involves choosing the right tools and defining its purpose. You can use frameworks like OpenAI's GPT or Google's Dialogflow to develop it.