Data Science Jupyter Notebooks
12.5K subscribers
313 photos
48 videos
9 files
1.05K links
Explore the world of Data Science through Jupyter Notebooksβ€”insights, tutorials, and tools to boost your data journey. Code, analyze, and visualize smarter with every post.
Download Telegram
πŸ”₯ Trending Repository: superset

πŸ“ Description: Apache Superset is a Data Visualization and Data Exploration Platform

πŸ”— Repository URL: https://github.com/apache/superset

🌐 Website: https://superset.apache.org/

πŸ“– Readme: https://github.com/apache/superset#readme

πŸ“Š Statistics:
🌟 Stars: 69.7K stars
πŸ‘€ Watchers: 1.5k
🍴 Forks: 16.4K forks

πŸ’» Programming Languages: TypeScript - Python - Jupyter Notebook - JavaScript - HTML - Shell

🏷️ Related Topics:
#react #python #flask #data_science #bi #analytics #superset #apache #data_visualization #data_engineering #business_intelligence #data_viz #data_analytics #data_analysis #sql_editor #asf #business_analytics #apache_superset


==================================
🧠 By: https://t.iss.one/DataScienceM
πŸ”₯ Trending Repository: memU

πŸ“ Description: Memory infrastructure for LLMs and AI agents

πŸ”— Repository URL: https://github.com/NevaMind-AI/memU

🌐 Website: https://memu.pro

πŸ“– Readme: https://github.com/NevaMind-AI/memU#readme

πŸ“Š Statistics:
🌟 Stars: 3.6K stars
πŸ‘€ Watchers: 28
🍴 Forks: 241 forks

πŸ’» Programming Languages: Python

🏷️ Related Topics:
#python #agent #open_source #benchmark #framework #ai #memory #mcp #sandbox #ai_agents #llm #agentic_framework #agentic_workflow #ai_companion #agentic_ai #ai_roleplay


==================================
🧠 By: https://t.iss.one/DataScienceM
πŸ‘©β€πŸ’» FREE 2026 IT Learning Kits Giveaway

πŸ”₯Whether you're preparing for #Cisco #AWS #PMP #Python #Excel #Google #Microsoft #AI or any other in-demand certification – SPOTO has got you covered!

🎁 Explore Our FREE Study Resources
Β·IT Certs E-book : https://bit.ly/3YvSMHL
Β·IT exams skill Test : https://bit.ly/4r4VHnd
Β·Python, ITIL, PMP, Excel, Cyber Security, cloud, SQL Courses : https://bit.ly/4qNWl8r
Β·Free AI online preparation material and support tools : https://bit.ly/4qKiKTN

πŸ”— Need IT Certs Exam Help? contact: wa.link/dm4kyz
πŸ“² Join IT Study Group for insider tips & expert support:
https://chat.whatsapp.com/BEQ9WrfLnpg1SgzGQw69oM
❀3
πŸ“Ή Video downloader from YouTube and other platforms

tuitube is a text-based interface for downloading videos from YouTube, 𝕏, Twitch, Instagram, and Bilibili using yt-dlp. A convenient tool for those who prefer the command line.

πŸš€ Key features:
- Support for multiple video platforms
- Uses yt-dlp for downloading
- Simple text interface
- Easily configurable and command-line driven

πŸ“Œ GitHub: https://github.com/remorses/tuitube

#python #YouTube

https://t.iss.one/DataScienceN βœ…
Please open Telegram to view this post
VIEW IN TELEGRAM
❀2
⚑️ Running DeepSeek on our computer using Python

Do you want an LLM on your computer: to work offline, not leak data, and seamlessly integrate into a bot? Then let's take DeepSeek Coder and get started!

βš™οΈ Installing dependencies:
pip install -U transformers accelerate torch


▢️ Example code:
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch

model_name = "deepseek-ai/deepseek-coder-6.7b-base"

tokenizer = AutoTokenizer.from_pretrained(model_name, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
    model_name,
    trust_remote_code=True,
    torch_dtype=torch.float16,   # if the GPU supports fp16
    device_map="auto"            # if there's a GPU β€” it will use it
)
model.eval()

prompt = "Write a Telegram feedback bot on aiogram"

inputs = tokenizer(prompt, return_tensors="pt")
device = next(model.parameters()).device
inputs = {k: v.to(device) for k, v in inputs.items()}

with torch.inference_mode():
    outputs = model.generate(
        **inputs,
        max_new_tokens=180,
        do_sample=True,      # IMPORTANT: otherwise the temperature doesn't affect
        temperature=0.7,
        top_p=0.9
    )

print(tokenizer.decode(outputs[0], skip_special_tokens=True))


βž• Advantages:
β€” works locally (after downloading the weights);
β€” easily integrates into Telegram/Discord/CLI;
β€” can be accelerated on the GPU via device_map="auto".

If memory is limited β€” there are quantized versions (4bit/8bit) and GGUF.

πŸ‘ Saving

#python #soft #code
Please open Telegram to view this post
VIEW IN TELEGRAM
❀1
πŸ”₯ Trending Repository: nautilus_trader

πŸ“ Description: A high-performance algorithmic trading platform and event-driven backtester

πŸ”— Repository URL: https://github.com/nautechsystems/nautilus_trader

🌐 Website: https://nautilustrader.io

πŸ“– Readme: https://github.com/nautechsystems/nautilus_trader#readme

πŸ“Š Statistics:
🌟 Stars: 17.7K stars
πŸ‘€ Watchers: 172
🍴 Forks: 2.1K forks

πŸ’» Programming Languages: Rust - Python - Cython - Shell - C - Cap'n Proto

🏷️ Related Topics:
#python #rust #machine_learning #trading #forex #artificial_intelligence #trading_platform #algorithmic_trading_engine #sports_betting #options_trading #crypto_trading #equity_trading #futures_trading


==================================
🧠 By: https://t.iss.one/DataScienceM
❀1
πŸ”₯ Trending Repository: VoxCPM

πŸ“ Description: VoxCPM: Tokenizer-Free TTS for Context-Aware Speech Generation and True-to-Life Voice Cloning

πŸ”— Repository URL: https://github.com/OpenBMB/VoxCPM

πŸ“– Readme: https://github.com/OpenBMB/VoxCPM#readme

πŸ“Š Statistics:
🌟 Stars: 4.4K stars
πŸ‘€ Watchers: 41
🍴 Forks: 529 forks

πŸ’» Programming Languages: Python

🏷️ Related Topics:
#audio #python #text_to_speech #speech #pytorch #tts #speech_synthesis #deeplearning #voice_cloning #tts_model #minicpm


==================================
🧠 By: https://t.iss.one/DataScienceM
❀1
πŸ”₯ Trending Repository: Data-Science-For-Beginners

πŸ“ Description: 10 Weeks, 20 Lessons, Data Science for All!

πŸ”— Repository URL: https://github.com/microsoft/Data-Science-For-Beginners

πŸ“– Readme: https://github.com/microsoft/Data-Science-For-Beginners#readme

πŸ“Š Statistics:
🌟 Stars: 31.9K stars
πŸ‘€ Watchers: 513
🍴 Forks: 6.8K forks

πŸ’» Programming Languages: Jupyter Notebook

🏷️ Related Topics:
#python #data_science #pandas #data_visualization #data_analysis #microsoft_for_beginners


==================================
🧠 By: https://t.iss.one/DataScienceM
❀1
πŸ”₯ Trending Repository: browser-use

πŸ“ Description: 🌐 Make websites accessible for AI agents. Automate tasks online with ease.

πŸ”— Repository URL: https://github.com/browser-use/browser-use

🌐 Website: https://browser-use.com

πŸ“– Readme: https://github.com/browser-use/browser-use#readme

πŸ“Š Statistics:
🌟 Stars: 76.2K stars
πŸ‘€ Watchers: 404
🍴 Forks: 9.1K forks

πŸ’» Programming Languages: Python

🏷️ Related Topics:
#python #browser_automation #ai_agents #playwright #ai_tools #llm #browser_use


==================================
🧠 By: https://t.iss.one/DataScienceM
❀1
πŸ”₯ Trending Repository: flowsint

πŸ“ Description: A modern platform for visual, flexible, and extensible graph-based investigations. For cybersecurity analysts and investigators.

πŸ”— Repository URL: https://github.com/reconurge/flowsint

🌐 Website: https://flowsint.io

πŸ“– Readme: https://github.com/reconurge/flowsint#readme

πŸ“Š Statistics:
🌟 Stars: 2K stars
πŸ‘€ Watchers: 25
🍴 Forks: 257 forks

πŸ’» Programming Languages: TypeScript - Python - CSS - JavaScript - Makefile - Dockerfile

🏷️ Related Topics:
#python #osint #recon #investigation


==================================
🧠 By: https://t.iss.one/DataScienceM
πŸ”₯ Trending Repository: calibre

πŸ“ Description: The official source code repository for the calibre ebook manager

πŸ”— Repository URL: https://github.com/kovidgoyal/calibre

🌐 Website: https://calibre-ebook.com

πŸ“– Readme: https://github.com/kovidgoyal/calibre#readme

πŸ“Š Statistics:
🌟 Stars: 23.5K stars
πŸ‘€ Watchers: 385
🍴 Forks: 2.5K forks

πŸ’» Programming Languages: Python - C - C++ - HTML - Shell - XSLT

🏷️ Related Topics:
#python #ebook #epub #kindle #ebook_manager #calibre #ebook_reader #ebooks #ebook_formats #epub_generation


==================================
🧠 By: https://t.iss.one/DataScienceM
🎯 Want to Upskill in IT? Try Our FREE 2026 Learning Kits!

SPOTO gives you free, instant access to high-quality, updated resources that help you study smarter and pass exams faster.
βœ… Latest Exam Materials:
Covering #Python, #Cisco, #PMI, #Fortinet, #AWS, #Azure, #AI, #Excel, #comptia, #ITIL, #cloud & more!
βœ… 100% Free, No Sign-up:
All materials are instantly downloadable

βœ… What’s Inside:
γƒ»πŸ“˜IT Certs E-book: https://bit.ly/3Mlu5ez
γƒ»πŸ“IT Exams Skill Test: https://bit.ly/3NVrgRU
γƒ»πŸŽ“Free IT courses: https://bit.ly/3M9h5su
γƒ»πŸ€–Free PMP Study Guide: https://bit.ly/4te3EIn
γƒ»β˜οΈFree Cloud Study Guide: https://bit.ly/4kgFVDs

πŸ‘‰ Become Part of Our IT Learning Circle! resources and support:
https://chat.whatsapp.com/FlG2rOYVySLEHLKXF3nKGB

πŸ’¬ Want exam help? Chat with an admin now!
wa.link/8fy3x4
❀2