Github Top Repositories
12.9K subscribers
374 photos
57 videos
9 files
1.32K links
Top GitHub repositories in one place πŸš€
Explore the best projects in programming, AI, data science, and more.
Download Telegram
Media is too big
VIEW IN TELEGRAM
πŸš€ AutoPilot β€” a free automation suite that replaces a dozen services at once

If you love tools that save time, money, and nerves β€” this is 100% for you.

This is an open-source panel on Python + Streamlit, packed with a whole arsenal of useful automations.

You open it β€” and it’s like gaining a superpower: doing everything faster.

What it can do:
πŸ–Ό Background Remover β€” removes photo backgrounds in a second.
🧾 QR Generator β€” creates QR codes for anything.
πŸ’» Fake Data Generator β€” generates realistic test data.
🎧 Audiobook Converter β€” turns PDFs into audiobooks.
πŸ“₯ YouTube Downloader β€” downloads video and audio.
πŸ’¬ Bulk Email Sender β€” mass email sending.
πŸ“Έ Image Downloader β€” searches and downloads images by keywords.
πŸ“ Article Summarizer β€” creates well-written concise summaries.
πŸ“Š Resource Monitor β€” monitors your system resources.
πŸ” Code Analyzer β€” checks code with Pylint and Flake8.
🧹 Clipboard Manager β€” stores clipboard history.
πŸ”— Link Checker β€” checks which links are alive.
πŸ“· Image Editor β€” a mini-Photoshop: crop, blur, resize, watermark, formatting, and lots of effects.
πŸ—ž News Reader β€” reads out current news.

And that’s just part of the list.

Why do you need this?
🟒 a ready set of utilities for developers, marketers, designers, or SMM;
🟒 huge time savings;
🟒 local, free, and without limits;
🟒 can be integrated into your projects, bots, or workflow.

⚑️ How to run (quickly)

git clone https://github.com/Ai-Quill/automated.git
cd automated
pip install -r requirements.txt
streamlit run app.py


πŸ–₯Open in your browser: http://localhost:8501

And enjoy the panel where all tools are just one click away.

β™ŽοΈ GitHub/Instructions

#python #soft #github

https://t.me/DataScienceN 🌟
Please open Telegram to view this post
VIEW IN TELEGRAM
❀4
⚑️ 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
⚑️ Colorizing old black-and-white videos and "bringing faces to life" for FREE

SVFR β€” a full-fledged framework for restoring faces in videos.

It can:
πŸ’¬ BFR β€” improve blurry faces.
πŸ’¬ Colorization β€” colorize black-and-white videos.
πŸ’¬ Inpainting β€” redraw damaged areas.
πŸ’¬ and combine all of this in one pass.

Essentially, the model takes old or damaged videos and makes them "as if they were shot yesterday". And it's free and open-source.

βš™οΈ Installation locally:

1. Create an environment

conda create -n svfr python=3.9 -y
conda activate svfr


2. Install PyTorch (for your CUDA)

pip install torch==2.2.2 torchvision==0.17.2 torchaudio==2.2.2


3. Install dependencies

pip install -r requirements.txt


4. Download models

conda install git-lfs
git lfs install
git clone https://huggingface.co/stabilityai/stable-video-diffusion-img2vid-xt models/stable-video-diffusion-img2vid-xt


5. Start processing videos

python infer.py \
--config config/infer.yaml \
--task_ids 0 \
--input_path input.mp4 \
--output_dir results/ \
--crop_face_region


Where task_ids:

* 0 β€” face enhancement
* 1 β€” colorization
* 2 β€” redrawing damage

An ideal tool if:
🟒you're restoring archival videos;
🟒you're creating historical content;
🟒you're working with neural networks and video effects;
🟒you want a wow result without paid services.

▢️ Demo on Hugging Face

β™ŽοΈ GitHub/Instructions

#python #soft #github

https://t.me/CodeProgrammer
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
❀1