Data Science Machine Learning Data Analysis
37.1K subscribers
1.27K photos
27 videos
39 files
1.24K links
This channel is for Programmers, Coders, Software Engineers.

1- Data Science
2- Machine Learning
3- Data Visualization
4- Artificial Intelligence
5- Data Analysis
6- Statistics
7- Deep Learning

Cross promotion and ads: @hussein_sheikho
Download Telegram
๐Ÿ”ฅ 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:
#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:
#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
โค1
๐Ÿ“Œ How to Create a Real-Time Gesture-to-Text Translator Using Python and Mediapipe

โœ๏ธ OMOTAYO OMOYEMI
๐Ÿท๏ธ #Computer_Vision
โค2
Cheat Sheet for Data Cleaning in Python Pandas

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:
#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:
#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:
#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:
#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:
#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
โค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:
#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:
#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:
#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
๐Ÿ”ฅ 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:
#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:
#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
๐Ÿ”ฅ 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:
#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:
#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