This media is not supported in your browser
VIEW IN TELEGRAM
http://t.me/codeprogrammer
Please open Telegram to view this post
VIEW IN TELEGRAM
👍13❤1
Best LLMs Courses
Link: https://www.mltut.com/best-large-language-models-courses/
#MachineLearning #DeepLearning #BigData #Datascience #ML #HealthTech #DataVisualization #ArtificialInteligence #SoftwareEngineering #GenAI #deeplearning #ChatGPT #OpenAI #python #AI #keras #SQL #Statistics #LLMs #AIagents
http://t.me/codeprogrammer⭐️
Link: https://www.mltut.com/best-large-language-models-courses/
#MachineLearning #DeepLearning #BigData #Datascience #ML #HealthTech #DataVisualization #ArtificialInteligence #SoftwareEngineering #GenAI #deeplearning #ChatGPT #OpenAI #python #AI #keras #SQL #Statistics #LLMs #AIagents
http://t.me/codeprogrammer
Please open Telegram to view this post
VIEW IN TELEGRAM
👍7❤1
👨🏻💻 The first time I used Pandas, I was supposed to quickly clean and organize a raw and complex dataset with the help of Pandas functions. Using the groupby function, I was able to categorize the data and get in-depth analysis of customer behavior. Best of all, it was when I used loc and iloc that I could easily filter the data.
┌
└
#MachineLearning #DeepLearning #BigData #Datascience #ML #Pandas #DataVisualization #ArtificialInteligence #SoftwareEngineering #GenAI #deeplearning #ChatGPT #OpenAI #python #AI #keras #SQL #Statistics #LLMs #AIagents
http://t.me/codeprogrammer
Please open Telegram to view this post
VIEW IN TELEGRAM
👍26❤2
Regression & Classification Loss Functions
#MachineLearning #DeepLearning #BigData #Datascience #ML #Pandas #DataVisualization #ArtificialInteligence #SoftwareEngineering #GenAI #deeplearning #ChatGPT #OpenAI #python #AI #keras #SQL #Statistics #LLMs #AIagents
http://t.me/codeprogrammer⭐️
#MachineLearning #DeepLearning #BigData #Datascience #ML #Pandas #DataVisualization #ArtificialInteligence #SoftwareEngineering #GenAI #deeplearning #ChatGPT #OpenAI #python #AI #keras #SQL #Statistics #LLMs #AIagents
http://t.me/codeprogrammer
Please open Telegram to view this post
VIEW IN TELEGRAM
👍8❤4
Python Network Programming Cheat Sheet 🖥
#MachineLearning #DeepLearning #BigData #Datascience #ML #Pandas #DataVisualization #ArtificialInteligence #SoftwareEngineering #GenAI #deeplearning #ChatGPT #OpenAI #python #AI #keras #SQL #Statistics #LLMs #AIagents
http://t.me/codeprogrammer✅
#MachineLearning #DeepLearning #BigData #Datascience #ML #Pandas #DataVisualization #ArtificialInteligence #SoftwareEngineering #GenAI #deeplearning #ChatGPT #OpenAI #python #AI #keras #SQL #Statistics #LLMs #AIagents
http://t.me/codeprogrammer
Please open Telegram to view this post
VIEW IN TELEGRAM
👍9
Best Data Analyst Online Certifications!
https://www.mltut.com/data-analyst-online-certification-to-become-a-successful-data-analyst/
#MachineLearning #DeepLearning #BigData #Datascience #ML #HealthTech #DataVisualization #ArtificialInteligence #SoftwareEngineering #GenAI #deeplearning #ChatGPT #OpenAI #python #AI #keras #SQL #Statistics
https://t.me/CodeProgrammer⭐️
https://www.mltut.com/data-analyst-online-certification-to-become-a-successful-data-analyst/
#MachineLearning #DeepLearning #BigData #Datascience #ML #HealthTech #DataVisualization #ArtificialInteligence #SoftwareEngineering #GenAI #deeplearning #ChatGPT #OpenAI #python #AI #keras #SQL #Statistics
https://t.me/CodeProgrammer
Please open Telegram to view this post
VIEW IN TELEGRAM
👍9
Forwarded from Data Science Jupyter Notebooks
🔥 Trending Repository: Prompt-Engineering-Guide
📝 Description: 🐙 Guides, papers, lecture, notebooks and resources for prompt engineering
🔗 Repository URL: https://github.com/dair-ai/Prompt-Engineering-Guide
🌐 Website: https://www.promptingguide.ai/
📖 Readme: https://github.com/dair-ai/Prompt-Engineering-Guide#readme
📊 Statistics:
🌟 Stars: 63K stars
👀 Watchers: 668
🍴 Forks: 6.6K forks
💻 Programming Languages: MDX - Jupyter Notebook
🏷️ Related Topics:
==================================
🧠 By: https://t.me/DataScienceM
📝 Description: 🐙 Guides, papers, lecture, notebooks and resources for prompt engineering
🔗 Repository URL: https://github.com/dair-ai/Prompt-Engineering-Guide
🌐 Website: https://www.promptingguide.ai/
📖 Readme: https://github.com/dair-ai/Prompt-Engineering-Guide#readme
📊 Statistics:
🌟 Stars: 63K stars
👀 Watchers: 668
🍴 Forks: 6.6K forks
💻 Programming Languages: MDX - Jupyter Notebook
🏷️ Related Topics:
#deep_learning #openai #language_model #prompt_engineering #generative_ai #chatgpt
==================================
🧠 By: https://t.me/DataScienceM
❤7👍1
This media is not supported in your browser
VIEW IN TELEGRAM
Do it in a couple of minutes: just install the python-telegram-bot library, add your #OpenAI #API key and bot token, and the bot will start replying to all messages using #ChatGPT.
from telegram import Update
from telegram.ext import ApplicationBuilder, MessageHandler, filters, ContextTypes
from openai import OpenAI
Specify your keys
OPENAI_API_KEY = "sk-..."
TELEGRAM_TOKEN = "123456789:ABC..."
client = OpenAI(api_key=OPENAI_API_KEY)
async def handle_message(update: Update, context: ContextTypes.DEFAULT_TYPE):
user_text = update.message.text
response = client.chat.completions.create(
model="gpt-4o-mini",
messages=[{"role": "user", "content": user_text}]
)
await update.message.reply_text(response.choices[0].message.content)
app = ApplicationBuilder().token(TELEGRAM_TOKEN).build()
app.add_handler(MessageHandler(filters.TEXT & ~filters.COMMAND, handle_message))
app.run_polling()
https://t.me/CodeProgrammer
Please open Telegram to view this post
VIEW IN TELEGRAM
❤2👍1