OpenAi GPT3 Guide in Bangla (Command) : gpt3 দিয়ে আর্টিকেল জেনারেট করার প্রয়োজনীয় কমান্ড
OpenAI হচ্ছে GPT3(Generative Pre-training Transformer 3) দ্বারা ডেভলপ করা নতুন প্রজন্মের একটি ল্যাঙ্গুয়েজ জেনারেট করার মডেল। এটি কোটি কোটি প্যারামিটার সহ সবচেয়ে শক্তিশালী ভাষার মডেলগুলির মধ্যে একটি। এটি মানুষের মতো অনুবাদ, সংক্ষিপ্তকরণ এবং প্রশ্নের উত্তর দেওয়ার মতো বিভিন্ন কাজের বাক্য তৈরি করতে পারে।
- ডেভিন্সি: এটি ভাল আউটপুট দেয় বাট স্লো।
- আডা: এটি সামারাইজেশনের জন্য ভাল।
- text currie, text babbage: রিরাইটের জন্য এগুলো ভাল।
OpenAi GPT3 ফ্রিতে ব্যবহার করার নিয়ম
Introducing Open Ai Tools Best tool for Content Generation
OpenAi GPT3 Command example:
Write passive forms of following active sentences “”” (এখানে ইনফরমেশন থাকবে) “””
write 5 faq based on following text “”” (এখানে ইনফরমেশন থাকবে) “””
more
Write a blogpost outline – How to potty train your dog
Write a complete blogpost with the outline
Complete please
Expand – (every_outline make it & replace it)
Write 10 faq and answer for – (topic)
# topic:””
Brainstorm blog post outline ideas for the topic ” “:
Write 3 engaging and informative paragraphs about
Write a super engaging introduction blog post about
Write a super engaging conclusion from the blog post above ‘
write a content based on following information
“””
“””
write 5 faq with answer based on following text
write 5 bulletpoint based on following information
write a similiar title for
“””
“””
write 200 word content based on following information
“””
“””
write a content based on following information
“””
“””
“””
“””
“Rewrite the article I’m giving you following these instructions –
– the tone should be funny
– An average adult should understand my points after reading it. Replace the jargons with simple words or sentences.
– Limit each paragraph in 3 sentences at most.
– Write a single sentence between every pair of paragraphs.”
make it more clear and engaging
OpenAi GPT3 গঠন
- CURIE
- DaVinci
- Babbage
- Ada
- translation
- Complex Classification
- Emotion Detection
- Text Summarisation
- detecting complex intentions
- determining causes or consequences
- Sophisticated text summarization
- idea generation
- simple classification
- plot or puzzle creation
- brainstorming tools
পাইথনে সিম্পল একটা gpt3 code এর উদাহরণ-
import openai def gpt3(stext): openai.api_key = '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' response = openai.Completion.create( engine='davinci-instruct-beta', prompt=stext, temperature = 0.1, max_tokens=1000, top_p=1, frequency_penalty=0, presence_penalty=0 ) content = response.choices[0].text.split('.') # print(content) return response .choices[0].text query = 'what is gpt3' response = gpt3(query) print(response)