๐ฅ Trending Repository: SQLBot
๐ Description: ๅบไบๅคงๆจกๅๅ RAG ็ๆบ่ฝ้ฎๆฐ็ณป็ปใText-to-SQL Generation via LLMs using RAG.
๐ Repository URL: https://github.com/dataease/SQLBot
๐ Website: https://dataease.cn/sqlbot/
๐ Readme: https://github.com/dataease/SQLBot#readme
๐ Statistics:
๐ Stars: 968 stars
๐ Watchers: 13
๐ด Forks: 113 forks
๐ป Programming Languages: Python - CSS - TypeScript - JavaScript - Shell - HTML
๐ท๏ธ Related Topics:
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ Description: ๅบไบๅคงๆจกๅๅ RAG ็ๆบ่ฝ้ฎๆฐ็ณป็ปใText-to-SQL Generation via LLMs using RAG.
๐ Repository URL: https://github.com/dataease/SQLBot
๐ Website: https://dataease.cn/sqlbot/
๐ Readme: https://github.com/dataease/SQLBot#readme
๐ Statistics:
๐ Stars: 968 stars
๐ Watchers: 13
๐ด Forks: 113 forks
๐ป Programming Languages: Python - CSS - TypeScript - JavaScript - Shell - HTML
๐ท๏ธ Related Topics:
#text_to_sql #rag #nl2sql #text2sql #llm #sqlbot #deepseek #chatbi
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ฅ Trending Repository: pest
๐ Description: Pest is an elegant PHP testing Framework with a focus on simplicity, meticulously designed to bring back the joy of testing in PHP.
๐ Repository URL: https://github.com/pestphp/pest
๐ Website: https://pestphp.com
๐ Readme: https://github.com/pestphp/pest#readme
๐ Statistics:
๐ Stars: 10.7K stars
๐ Watchers: 55
๐ด Forks: 404 forks
๐ป Programming Languages: PHP
๐ท๏ธ Related Topics:
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ Description: Pest is an elegant PHP testing Framework with a focus on simplicity, meticulously designed to bring back the joy of testing in PHP.
๐ Repository URL: https://github.com/pestphp/pest
๐ Website: https://pestphp.com
๐ Readme: https://github.com/pestphp/pest#readme
๐ Statistics:
๐ Stars: 10.7K stars
๐ Watchers: 55
๐ด Forks: 404 forks
๐ป Programming Languages: PHP
๐ท๏ธ Related Topics:
#testing #php #framework #pest
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ฅ Trending Repository: RL
๐ Description: Scalable toolkit for efficient model reinforcement
๐ Repository URL: https://github.com/NVIDIA-NeMo/RL
๐ Website: https://docs.nvidia.com/nemo/rl/latest/index.html
๐ Readme: https://github.com/NVIDIA-NeMo/RL#readme
๐ Statistics:
๐ Stars: 715 stars
๐ Watchers: 51
๐ด Forks: 109 forks
๐ป Programming Languages: Python - Shell - Dockerfile
๐ท๏ธ Related Topics: Not available
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ Description: Scalable toolkit for efficient model reinforcement
๐ Repository URL: https://github.com/NVIDIA-NeMo/RL
๐ Website: https://docs.nvidia.com/nemo/rl/latest/index.html
๐ Readme: https://github.com/NVIDIA-NeMo/RL#readme
๐ Statistics:
๐ Stars: 715 stars
๐ Watchers: 51
๐ด Forks: 109 forks
๐ป Programming Languages: Python - Shell - Dockerfile
๐ท๏ธ Related Topics: Not available
==================================
๐ง By: https://t.iss.one/DataScienceM
โค1
๐ How to Create a Real-Time Gesture-to-Text Translator Using Python and Mediapipe
โ๏ธ OMOTAYO OMOYEMI
๐ท๏ธ #Computer_Vision
โ๏ธ OMOTAYO OMOYEMI
๐ท๏ธ #Computer_Vision
โค2
Cheat Sheet for Data Cleaning in Python Pandas
1. Data Overview
2. Handling Missing Values and Duplicates
3. Renaming and Type Conversion
4. Filtering and Selection
5. Sorting and Grouping
6. Column Operations
7. Saving Cleaned Data
1. Data Overview
import pandas as pd
df = pd.read_csv('data.csv') # Load CSV
df.head(5) # First 5 rows
df.info() # Data types and null counts
df.describe() # Summary statistics
2. Handling Missing Values and Duplicates
df.isnull().sum() # Count missing values
df.dropna() # Remove rows with nulls
df.fillna(0) # Fill missing values with zeros
df.duplicated().sum() # Count duplicates
df.drop_duplicates() # Remove duplicates
3. Renaming and Type Conversion
df.rename(columns={'old': 'new'}) # Rename column
df.astype({'col': 'int'}) # Change data type
df.columns.str.strip() # Remove spaces
4. Filtering and Selection
df.loc[df['col'] > 100] # Filter by condition
df.iloc[0:5] # Select by row index
df['col'].isin(['A', 'B']) # Filter by values
5. Sorting and Grouping
df.sort_values('col') # Sort ascending
df.groupby('group')['val'].mean() # Group and aggregate
df['col'].value_counts() # Count unique values
6. Column Operations
df['new'] = df['col1'] + df['col2'] # New column
df['col'] = df['col'].apply(lambda x: x*2) # Apply function
df.drop('col', axis=1) # Drop column
7. Saving Cleaned Data
df.to_csv('cleaned.csv', index=False) # Export to CSV
โค6
๐ฅ Trending Repository: free-programming-books
๐ Description: ๐ Freely available programming books
๐ Repository URL: https://github.com/EbookFoundation/free-programming-books
๐ Website: https://ebookfoundation.github.io/free-programming-books/
๐ Readme: https://github.com/EbookFoundation/free-programming-books#readme
๐ Statistics:
๐ Stars: 366K stars
๐ Watchers:
๐ด Forks: 63.9K forks
๐ป Programming Languages: Python - HTML
๐ท๏ธ Related Topics:
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ Description: ๐ Freely available programming books
๐ Repository URL: https://github.com/EbookFoundation/free-programming-books
๐ Website: https://ebookfoundation.github.io/free-programming-books/
๐ Readme: https://github.com/EbookFoundation/free-programming-books#readme
๐ Statistics:
๐ Stars: 366K stars
๐ Watchers:
๐ด Forks: 63.9K forks
๐ป Programming Languages: Python - HTML
๐ท๏ธ Related Topics:
#education #list #books #resource #hacktoberfest
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ฅ Trending Repository: midday
๐ Description: Invoicing, Time tracking, File reconciliation, Storage, Financial Overview & your own Assistant made for Freelancers
๐ Repository URL: https://github.com/midday-ai/midday
๐ Website: https://midday.ai
๐ Readme: https://github.com/midday-ai/midday#readme
๐ Statistics:
๐ Stars: 11.1K stars
๐ Watchers: 68
๐ด Forks: 1K forks
๐ป Programming Languages: TypeScript - MDX - Rust - CSS - JavaScript - Dockerfile
๐ท๏ธ Related Topics:
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ Description: Invoicing, Time tracking, File reconciliation, Storage, Financial Overview & your own Assistant made for Freelancers
๐ Repository URL: https://github.com/midday-ai/midday
๐ Website: https://midday.ai
๐ Readme: https://github.com/midday-ai/midday#readme
๐ Statistics:
๐ Stars: 11.1K stars
๐ Watchers: 68
๐ด Forks: 1K forks
๐ป Programming Languages: TypeScript - MDX - Rust - CSS - JavaScript - Dockerfile
๐ท๏ธ Related Topics:
#finance #typescript #nextjs #tailwind #supabase
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ฅ1
๐ฅ Trending Repository: yt-dlp
๐ Description: A feature-rich command-line audio/video downloader
๐ Repository URL: https://github.com/yt-dlp/yt-dlp
๐ Website: https://discord.gg/H5MNcFW63r
๐ Readme: https://github.com/yt-dlp/yt-dlp#readme
๐ Statistics:
๐ Stars: 124K stars
๐ Watchers: 640
๐ด Forks: 9.9K forks
๐ป Programming Languages: Python
๐ท๏ธ Related Topics:
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ Description: A feature-rich command-line audio/video downloader
๐ Repository URL: https://github.com/yt-dlp/yt-dlp
๐ Website: https://discord.gg/H5MNcFW63r
๐ Readme: https://github.com/yt-dlp/yt-dlp#readme
๐ Statistics:
๐ Stars: 124K stars
๐ Watchers: 640
๐ด Forks: 9.9K forks
๐ป Programming Languages: Python
๐ท๏ธ Related Topics:
#python #cli #downloader #youtube_dl #youtube_downloader #sponsorblock #yt_dlp
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ฅ Trending Repository: django
๐ Description: The Web framework for perfectionists with deadlines.
๐ Repository URL: https://github.com/django/django
๐ Website: https://www.djangoproject.com/
๐ Readme: https://github.com/django/django#readme
๐ Statistics:
๐ Stars: 84.7K stars
๐ Watchers: 2.3k
๐ด Forks: 32.8K forks
๐ป Programming Languages: Python - Jinja
๐ท๏ธ Related Topics:
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ Description: The Web framework for perfectionists with deadlines.
๐ Repository URL: https://github.com/django/django
๐ Website: https://www.djangoproject.com/
๐ Readme: https://github.com/django/django#readme
๐ Statistics:
๐ Stars: 84.7K stars
๐ Watchers: 2.3k
๐ด Forks: 32.8K forks
๐ป Programming Languages: Python - Jinja
๐ท๏ธ Related Topics:
#python #django #views #framework #orm #web #apps #templates #models
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ฅ Trending Repository: ComfyUI-nunchaku
๐ Description: ComfyUI Plugin of Nunchaku
๐ Repository URL: https://github.com/nunchaku-tech/ComfyUI-nunchaku
๐ Website: https://nunchaku.tech/docs/ComfyUI-nunchaku/
๐ Readme: https://github.com/nunchaku-tech/ComfyUI-nunchaku#readme
๐ Statistics:
๐ Stars: 1.9K stars
๐ Watchers: 21
๐ด Forks: 68 forks
๐ป Programming Languages: Python
๐ท๏ธ Related Topics:
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ Description: ComfyUI Plugin of Nunchaku
๐ Repository URL: https://github.com/nunchaku-tech/ComfyUI-nunchaku
๐ Website: https://nunchaku.tech/docs/ComfyUI-nunchaku/
๐ Readme: https://github.com/nunchaku-tech/ComfyUI-nunchaku#readme
๐ Statistics:
๐ Stars: 1.9K stars
๐ Watchers: 21
๐ด Forks: 68 forks
๐ป Programming Languages: Python
๐ท๏ธ Related Topics:
#flux #quantization #diffusion #mlsys #comfyui #genai
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ฅ Trending Repository: klipper
๐ Description: Klipper is a 3d-printer firmware
๐ Repository URL: https://github.com/Klipper3d/klipper
๐ Readme: https://github.com/Klipper3d/klipper#readme
๐ Statistics:
๐ Stars: 10.7K stars
๐ Watchers: 368
๐ด Forks: 5.6K forks
๐ป Programming Languages: C - Python - Jupyter Notebook - C++ - Assembly - Makefile
๐ท๏ธ Related Topics: Not available
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ Description: Klipper is a 3d-printer firmware
๐ Repository URL: https://github.com/Klipper3d/klipper
๐ Readme: https://github.com/Klipper3d/klipper#readme
๐ Statistics:
๐ Stars: 10.7K stars
๐ Watchers: 368
๐ด Forks: 5.6K forks
๐ป Programming Languages: C - Python - Jupyter Notebook - C++ - Assembly - Makefile
๐ท๏ธ Related Topics: Not available
==================================
๐ง By: https://t.iss.one/DataScienceM
โค1
๐ฅ Trending Repository: Java
๐ Description: All Algorithms implemented in Java
๐ Repository URL: https://github.com/TheAlgorithms/Java
๐ Readme: https://github.com/TheAlgorithms/Java#readme
๐ Statistics:
๐ Stars: 62.8K stars
๐ Watchers: 2.2k
๐ด Forks: 20.2K forks
๐ป Programming Languages: Java - Dockerfile
๐ท๏ธ Related Topics:
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ Description: All Algorithms implemented in Java
๐ Repository URL: https://github.com/TheAlgorithms/Java
๐ Readme: https://github.com/TheAlgorithms/Java#readme
๐ Statistics:
๐ Stars: 62.8K stars
๐ Watchers: 2.2k
๐ด Forks: 20.2K forks
๐ป Programming Languages: Java - Dockerfile
๐ท๏ธ Related Topics:
#search #java #algorithm #algorithms #sort #data_structures #sorting_algorithms #algorithm_challenges #hacktoberfest #algorithms_datastructures
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ฅ Trending Repository: Folo
๐ Description: ๐งก Follow everything in one place
๐ Repository URL: https://github.com/RSSNext/Folo
๐ Website: https://folo.is
๐ Readme: https://github.com/RSSNext/Folo#readme
๐ Statistics:
๐ Stars: 32K stars
๐ Watchers: 119
๐ด Forks: 1.5K forks
๐ป Programming Languages: TypeScript - Swift - JavaScript - CSS - Kotlin - HTML
๐ท๏ธ Related Topics:
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ Description: ๐งก Follow everything in one place
๐ Repository URL: https://github.com/RSSNext/Folo
๐ Website: https://folo.is
๐ Readme: https://github.com/RSSNext/Folo#readme
๐ Statistics:
๐ Stars: 32K stars
๐ Watchers: 119
๐ด Forks: 1.5K forks
๐ป Programming Languages: TypeScript - Swift - JavaScript - CSS - Kotlin - HTML
๐ท๏ธ Related Topics:
#rss #ai #rss_reader #blockchain #reader
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ฅ Trending Repository: ai-agents-for-beginners
๐ Description: 11 Lessons to Get Started Building AI Agents
๐ Repository URL: https://github.com/microsoft/ai-agents-for-beginners
๐ Website: https://microsoft.github.io/ai-agents-for-beginners/
๐ Readme: https://github.com/microsoft/ai-agents-for-beginners#readme
๐ Statistics:
๐ Stars: 34.9K stars
๐ Watchers: 328
๐ด Forks: 11.1K forks
๐ป Programming Languages: Jupyter Notebook - Python - Dockerfile
๐ท๏ธ Related Topics:
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ Description: 11 Lessons to Get Started Building AI Agents
๐ Repository URL: https://github.com/microsoft/ai-agents-for-beginners
๐ Website: https://microsoft.github.io/ai-agents-for-beginners/
๐ Readme: https://github.com/microsoft/ai-agents-for-beginners#readme
๐ Statistics:
๐ Stars: 34.9K stars
๐ Watchers: 328
๐ด Forks: 11.1K forks
๐ป Programming Languages: Jupyter Notebook - Python - Dockerfile
๐ท๏ธ Related Topics:
#ai_agents #autogen #generative_ai #semantic_kernel #ai_agents_framework #agentic_framework #agentic_rag #agentic_ai
==================================
๐ง By: https://t.iss.one/DataScienceM
โค1
๐ฅ Trending Repository: verifiers
๐ Description: Verifiers for LLM Reinforcement Learning
๐ Repository URL: https://github.com/willccbb/verifiers
๐ Readme: https://github.com/willccbb/verifiers#readme
๐ Statistics:
๐ Stars: 2.1K stars
๐ Watchers: 26
๐ด Forks: 267 forks
๐ป Programming Languages: Python
๐ท๏ธ Related Topics: Not available
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ Description: Verifiers for LLM Reinforcement Learning
๐ Repository URL: https://github.com/willccbb/verifiers
๐ Readme: https://github.com/willccbb/verifiers#readme
๐ Statistics:
๐ Stars: 2.1K stars
๐ Watchers: 26
๐ด Forks: 267 forks
๐ป Programming Languages: Python
๐ท๏ธ Related Topics: Not available
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ฅ Trending Repository: spotify-downloader
๐ Description: Download your Spotify playlists and songs along with album art and metadata (from YouTube if a match is found).
๐ Repository URL: https://github.com/spotDL/spotify-downloader
๐ Website: https://spotdl.readthedocs.io/en/latest/
๐ Readme: https://github.com/spotDL/spotify-downloader#readme
๐ Statistics:
๐ Stars: 21.3K stars
๐ Watchers: 197
๐ด Forks: 1.9K forks
๐ป Programming Languages: Python
๐ท๏ธ Related Topics:
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ Description: Download your Spotify playlists and songs along with album art and metadata (from YouTube if a match is found).
๐ Repository URL: https://github.com/spotDL/spotify-downloader
๐ Website: https://spotdl.readthedocs.io/en/latest/
๐ Readme: https://github.com/spotDL/spotify-downloader#readme
๐ Statistics:
๐ Stars: 21.3K stars
๐ Watchers: 197
๐ด Forks: 1.9K forks
๐ป Programming Languages: Python
๐ท๏ธ Related Topics:
#python #music #playlists #spotify #mp3 #song #hacktoberfest #youtube_music #song_lyrics #download_music #spotdl #spotdl_cli
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ฅ Trending Repository: github-readme-stats
๐ Description: โก Dynamically generated stats for your github readmes
๐ Repository URL: https://github.com/anuraghazra/github-readme-stats
๐ Website: https://github-readme-stats.vercel.app
๐ Readme: https://github.com/anuraghazra/github-readme-stats#readme
๐ Statistics:
๐ Stars: 75.3K stars
๐ Watchers: 291
๐ด Forks: 25.7K forks
๐ป Programming Languages: JavaScript - Shell
๐ท๏ธ Related Topics:
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ Description: โก Dynamically generated stats for your github readmes
๐ Repository URL: https://github.com/anuraghazra/github-readme-stats
๐ Website: https://github-readme-stats.vercel.app
๐ Readme: https://github.com/anuraghazra/github-readme-stats#readme
๐ Statistics:
๐ Stars: 75.3K stars
๐ Watchers: 291
๐ด Forks: 25.7K forks
๐ป Programming Languages: JavaScript - Shell
๐ท๏ธ Related Topics:
#serverless #dynamic #hacktoberfest #readme_generator #profile_readme #readme_stats
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ฅ Trending Repository: nn-zero-to-hero
๐ Description: Neural Networks: Zero to Hero
๐ Repository URL: https://github.com/karpathy/nn-zero-to-hero
๐ Readme: https://github.com/karpathy/nn-zero-to-hero#readme
๐ Statistics:
๐ Stars: 15.5K stars
๐ Watchers: 319
๐ด Forks: 2.2K forks
๐ป Programming Languages: Jupyter Notebook
๐ท๏ธ Related Topics: Not available
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ Description: Neural Networks: Zero to Hero
๐ Repository URL: https://github.com/karpathy/nn-zero-to-hero
๐ Readme: https://github.com/karpathy/nn-zero-to-hero#readme
๐ Statistics:
๐ Stars: 15.5K stars
๐ Watchers: 319
๐ด Forks: 2.2K forks
๐ป Programming Languages: Jupyter Notebook
๐ท๏ธ Related Topics: Not available
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ฅ Trending Repository: system_prompts_leaks
๐ Description: Collection of extracted System Prompts from popular chatbots like ChatGPT, Claude & Gemini
๐ Repository URL: https://github.com/asgeirtj/system_prompts_leaks
๐ Readme: https://github.com/asgeirtj/system_prompts_leaks#readme
๐ Statistics:
๐ Stars: 9.2K stars
๐ Watchers: 200
๐ด Forks: 2K forks
๐ป Programming Languages: JavaScript
๐ท๏ธ Related Topics:
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ Description: Collection of extracted System Prompts from popular chatbots like ChatGPT, Claude & Gemini
๐ Repository URL: https://github.com/asgeirtj/system_prompts_leaks
๐ Readme: https://github.com/asgeirtj/system_prompts_leaks#readme
๐ Statistics:
๐ Stars: 9.2K stars
๐ Watchers: 200
๐ด Forks: 2K forks
๐ป Programming Languages: JavaScript
๐ท๏ธ Related Topics:
#ai #gemini #openai #chatbots #prompts #claude #google_deepmind #large_language_models #llm #prompt_engineering #generative_ai #chatgpt #prompt_injection #anthropic
==================================
๐ง By: https://t.iss.one/DataScienceM
โค1
๐ฅ Trending Repository: generative-ai-for-beginners
๐ Description: 21 Lessons, Get Started Building with Generative AI
๐ Repository URL: https://github.com/microsoft/generative-ai-for-beginners
๐ Readme: https://github.com/microsoft/generative-ai-for-beginners#readme
๐ Statistics:
๐ Stars: 95.7K stars
๐ Watchers: 827
๐ด Forks: 50.1K forks
๐ป Programming Languages: Jupyter Notebook - Python - JavaScript - TypeScript - Shell - PowerShell
๐ท๏ธ Related Topics:
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ Description: 21 Lessons, Get Started Building with Generative AI
๐ Repository URL: https://github.com/microsoft/generative-ai-for-beginners
๐ Readme: https://github.com/microsoft/generative-ai-for-beginners#readme
๐ Statistics:
๐ Stars: 95.7K stars
๐ Watchers: 827
๐ด Forks: 50.1K forks
๐ป Programming Languages: Jupyter Notebook - Python - JavaScript - TypeScript - Shell - PowerShell
๐ท๏ธ Related Topics:
#ai #azure #transformers #openai #gpt #language_model #semantic_search #dall_e #prompt_engineering #llms #generative_ai #generativeai #chatgpt #microsoft_for_beginners
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ฅ Trending Repository: awesome-tuis
๐ Description: List of projects that provide terminal user interfaces
๐ Repository URL: https://github.com/rothgar/awesome-tuis
๐ Readme: https://github.com/rothgar/awesome-tuis#readme
๐ Statistics:
๐ Stars: 11.1K stars
๐ Watchers: 155
๐ด Forks: 430 forks
๐ป Programming Languages: Not available
๐ท๏ธ Related Topics: Not available
==================================
๐ง By: https://t.iss.one/DataScienceM
๐ Description: List of projects that provide terminal user interfaces
๐ Repository URL: https://github.com/rothgar/awesome-tuis
๐ Readme: https://github.com/rothgar/awesome-tuis#readme
๐ Statistics:
๐ Stars: 11.1K stars
๐ Watchers: 155
๐ด Forks: 430 forks
๐ป Programming Languages: Not available
๐ท๏ธ Related Topics: Not available
==================================
๐ง By: https://t.iss.one/DataScienceM