Chat GPT is so bad

powlow29

Supreme Member
Joined
Nov 18, 2009
Messages
1,352
Reaction score
1,223
Hello everyone,

I asked Chat GPT+ to sort a 500 keywords list in differents categories but he is sorting it randomly. I spent a lot of hours for it and still can't manage to make it work.

It's just 500 keywords, nothing really hard to be honest. A child could do it. For example it will put How do cook eggs in Legal category instead of Cooking category haha.

Everytime I use ChatGpt I'm speechless about how many things he knows but everytime I use it for something I have knowledge in, I'm surprised about all the fake infos it gives.

Anyway, do anyone of you know how can I sort a list of keywords in different categories in automatic ?

I will cancel ChatGpt+ right away.

(By the way, I ask ChatGPT because i have thousands of keywords to sort, not only 500)

Thank you
 
it helps you, it doesn't do teh complete thing perfect for you. Its still useful to have, you're looking for something manually programmed to make sure its 100% accurate. You can build something in python with the help of chatgpt, it will excel better at that.
 
I am assuming they’re all different keywords about various topics so I think you’d need another source of categories and then maybe a reference somehow of topics within each category so you can compare the list of keywords by topic (or rather by any words that match broader topic related to each category).

I think for AI to do it you’d need to give it more info like that, it has to be systematic like how will it necessarily know which words belong to which category unless you give it some logical way of determining that?
 
The default version will sort no more than 50 data items at a time correctly using a simple command.
Try ask.com app, smart search. I use to use perplexity it got really bad and horribly slow.
The key here is never give up.
 
On a side note though, I am personally favouring grok over ChatGPT, but I don’t know how good grok is at programming related tasks as I’ve not used it for that purpose.
 
I used the simple prompt below to get different Python codes for clustering based on the meaning of the words.

Code:
What would you suggest to use in Python to cluster keywords in different categories based on their meaning
 
it helps you, it doesn't do teh complete thing perfect for you. Its still useful to have, you're looking for something manually programmed to make sure its 100% accurate. You can build something in python with the help of chatgpt, it will excel better at that.
It doesn't help in this case to be honest. 90% of this sorting is wrong. Wasting my damn time hahaha

It reminds me when I was teaching maths to my niece and she would told me random results because she didn't cared at all.

I am assuming they’re all different keywords about various topics so I think you’d need another source of categories and then maybe a reference somehow of topics within each category so you can compare the list of keywords by topic (or rather by any words that match broader topic related to each category).

I think for AI to do it you’d need to give it more info like that, it has to be systematic like how will it necessarily know which words belong to which category unless you give it some logical way of determining that?
Yes all differents sort of keywords. French keywords by the way.

I'm surprises Chat GPT needs to be train for same simple tasks. It sorts me How to grow healthy hair in Gardening just because of the word grow.

I used the simple prompt below to get different Python codes for clustering based on the meaning of the words.

Code:
What would you suggest to use in Python to cluster keywords in different categories based on their meaning
I will try that. Thank you
 
I used the simple prompt below to get different Python codes for clustering based on the meaning of the words.

Code:
What would you suggest to use in Python to cluster keywords in different categories based on their meaning
MAAAAAAAAN
You saved my weekend.
I asked ChatGPT to create a python script as you suggested.

At first it was using some libraries and the result was bad. I asked it to use open ai api instead and the result is 95% correct.

I will use chat gpt to create more python script now. It was my first one and I have almost zero knowledge with coding.
It cost me $0.80 for 500 keywords.

Thank you again.
 
  • Like
Reactions: V
I asked Chat GPT+ to sort a 500 keywords list in differents categories but he is sorting it randomly. I spent a lot of hours for it and still can't manage to make it work.
Hi there,
It sounds like you're running into the limitations of ChatGPT for this specific task. While AI can be great for many things, it sometimes struggles with precise categorization, especially when the context isn't clear or the categories are nuanced. One thing to keep in mind is the AI `context window` — ChatGPT has a limited memory of the conversation, so if your keyword list is long or the instructions are complex, it might lose track of the context, leading to inconsistent or random results.
Instead of relying on ChatGPT, you might want to consider developing a Python script for this. Python is excellent for handling large datasets and can be tuned to sort keywords based on specific rules or even machine learning models if needed. You could use libraries like `pandas` for data manipulation and `scikit-learn` for more advanced categorization. This way, you have full control over the logic and can ensure the sorting is accurate.
Good luck, and I hope this helps!
 
If you’re dealing with bare keywords, you are better off with a Python script or some Excel tricks. ChatGPT’s trying, but it’s like letting a toddler organize your cupboards it is still gonna need a human touch.
 
MAAAAAAAAN
You saved my weekend.
I asked ChatGPT to create a python script as you suggested.

At first it was using some libraries and the result was bad. I asked it to use open ai api instead and the result is 95% correct.

I will use chat gpt to create more python script now. It was my first one and I have almost zero knowledge with coding.
It cost me $0.80 for 500 keywords.

Thank you again.
Happy to help. Honestly, ChatGPT has come to my rescue more times than I can count. Like that one time, I had to deploy a Flask app in under an hour - no prior knowledge of Flask whatsoever. But with a little guidance from my AI sidekick, I pulled it off like a pro. :D
 
Back
Top