python4all_pro | Unsorted

Telegram-канал python4all_pro - پایتون ( Machine Learning | Data Science )

24693

◀️اینجا با تمرین و چالش با هم پایتون رو یاد می گیریم ⏮بانک اطلاعاتی پایتون پروژه / code/ cheat sheet +ویدیوهای آموزشی +کتابهای پایتون تبلیغات: @alloadv 🔁ادمین : @maryam3771

Subscribe to a channel

پایتون ( Machine Learning | Data Science )

#Python library for creating math animations

https://github.com/3b1b/manim

#پایتون
🆔 @Python4all_pro

Читать полностью…

پایتون ( Machine Learning | Data Science )

Visualizing Molecular Structures from SMILES Using RDKit

#پایتون
🆔 @Python4all_pro

Читать полностью…

پایتون ( Machine Learning | Data Science )

Cybersecurity using #Python

#پایتون
🆔 @Python4all_pro

Читать полностью…

پایتون ( Machine Learning | Data Science )

یک فانکشن کاربردی برای پاک‌سازی کامل RAM سیستم و GPU VRAM از آبجکت‌هایی که در ادامه‌ی کد بهشون نیازی ندارین و مشاهده‌ی فضای اشغال‌شده‌ی GPU.

import gc
import time


def clear_memory():
# Delete variables if they exist in the current global scope
if "inputs" in globals():
del globals()["inputs"]
if "model" in globals():
del globals()["model"]
if "processor" in globals():
del globals()["processor"]
if "trainer" in globals():
del globals()["trainer"]
if "peft_model" in globals():
del globals()["peft_model"]
if "bnb_config" in globals():
del globals()["bnb_config"]
time.sleep(2)

# Garbage collection and clearing CUDA memory
gc.collect()
time.sleep(2)
torch.cuda.empty_cache()
torch.cuda.synchronize()
time.sleep(2)
gc.collect()
time.sleep(2)

print(f"GPU allocated memory: {torch.cuda.memory_allocated() / 1024**3:.2f} GB")
print(f"GPU reserved memory: {torch.cuda.memory_reserved() / 1024**3:.2f} GB")


clear_memory()



🆔 @Python4all_pro

Читать полностью…

پایتون ( Machine Learning | Data Science )

Candlestick Chart Plot using #Python


🆔 @Python4all_pro

Читать полностью…

پایتون ( Machine Learning | Data Science )

A python tool that uses GPT-4, FFmpeg, and OpenCV to automatically analyze videos, extract the most interesting sections, and crop them for an improved viewing experience.

Helps you generate YouTube Shorts from long videos by leveraging Whisper for transcription and GPT-4 for highlight extraction and vertical cropping.

What it offers:

→ Downloads videos directly from YouTube URLs.

→ Transcribes video content using Whisper for accurate text representation.

→ Extracts engaging highlights from transcriptions using GPT-4, identifying key moments.

→ Detects speakers within the video content.

→ Crops video highlights vertically, optimizing them for YouTube Shorts format.

https://github. com/SamurAIGPT/AI-Youtube-Shorts-Generator



🆔 @Python4all_pro

Читать полностью…

پایتون ( Machine Learning | Data Science )

برای آشنایی با الگوریتم های ساده و پیچیده پایتون این ریپو را ببینید هر الگوریتمی بخواهید اینجا هست

https://github.com/TheAlgorithms/Python


#Python #DataScience
#MachineLearning #AI


🆔 @Python4all_pro

Читать полностью…

پایتون ( Machine Learning | Data Science )

Auto copy paste using Python

#Python #DataScience
#MachineLearning #AI


🆔 @Python4all_pro

Читать полностью…

پایتون ( Machine Learning | Data Science )

25 Github Repositories Every #Python Developer Should Know

https://www.clcoding.com/2025/02/25-github-repositories-every-python.html


🆔 @Python4all_pro

Читать полностью…

پایتون ( Machine Learning | Data Science )

100 Python Programs for Beginner with explanation

https://pythonclcoding.gumroad.com/l/qijrws


🆔 @Python4all_pro

Читать полностью…

پایتون ( Machine Learning | Data Science )

Learn how to secure your Wi-Fi like a pro with Python! This script helps you list connected devices, change your Wi-Fi password, and block unwanted devices using their MAC addresses.


#پایتون #python
🆔 @Python4all_pro

Читать полностью…

پایتون ( Machine Learning | Data Science )

🖥 DrawDB

DRAWDB is a database management system focused on visualization and data modeling!

🌟 It allows users to create databases using a graphic interface, which makes the design and interaction process more intuitively understandable. DRAWDB can be useful for developers who need to quickly create or visualize the structure of the database without in -depth knowledge #SQL.



🖥 Github




#پایتون #علم_داده
🆔 @Python4all_pro

Читать полностью…

پایتون ( Machine Learning | Data Science )

🖥 Ollama Python

Olma Python is a library designed to integrate projects on the Python version 3.8 and higher with the Ollama platform!

🌟 It provides a simple interface for interacting with language models, such as Llama 3.2, allowing developers to easily integrate the ability to process a natural language into their applications.

🔐 License: MIT


🖥 Github



#پایتون #python
🆔 @Python4all_pro

Читать полностью…

پایتون ( Machine Learning | Data Science )

4 Easy Methods for Multiplication Tables!

#پایتون #python
🆔 @Python4all_pro

Читать полностью…

پایتون ( Machine Learning | Data Science )

MicroPie

🖥 Micropie is an ultra-micro web frame in Python, designed to create web applications with minimal efforts!

🌟 He supports asynchronous web applications due to the implementation of the ASGI specification and provides high performance and flexibility. Among the key features of Micropie are an automatic comparison of the URL with functions, control sessions using cookies, support for templates via Jinja2 (if installed), as well as minimal dependencies, which simplifies the development and deployment of applications.

🔐 License: BSD-3-CLAUSE

🖥 Github


🆔 @Python4all_pro

Читать полностью…

پایتون ( Machine Learning | Data Science )

Online database design tool and SQL generator

https://github.com/drawdb-io/drawdb

#پایتون
🆔 @Python4all_pro

Читать полностью…

پایتون ( Machine Learning | Data Science )

Python library for data loading

🔗 https://github.com/dlt-hub/dlt


#python #library

🆔 @Python4all_pro

Читать полностью…

پایتون ( Machine Learning | Data Science )

Python Program to Check Whether a Given Number is Even or Odd using Recursion


🆔 @Python4all_pro

Читать полностью…

پایتون ( Machine Learning | Data Science )

Jupyter Notebooks to visualize various topics in Linear Algebra

https://github.com/fastai/numerical-linear-algebra?tab=readme-ov-file



🆔 @Python4all_pro

Читать полностью…

پایتون ( Machine Learning | Data Science )

Checking Stocks Price Using #Python


🆔 @Python4all_pro

Читать полностью…

پایتون ( Machine Learning | Data Science )

Automatically Generate Image CAPTCHAs with Python for Enhanced Security



#Python #DataScience
#MachineLearning #AI


🆔 @Python4all_pro

Читать полностью…

پایتون ( Machine Learning | Data Science )

Download a File


#Python #DataScience
#MachineLearning #AI


🆔 @Python4all_pro

Читать полностью…

پایتون ( Machine Learning | Data Science )

3D contour plot using #Python


🆔 @Python4all_pro

Читать полностью…

پایتون ( Machine Learning | Data Science )

Cartoonized Images using #Python


#پایتون
🆔 @Python4all_pro

Читать полностью…

پایتون ( Machine Learning | Data Science )

🖥 NocoDB

NoCodb is a database without an open source with an open source, which turns any relational database (MySQL, PostgreSQL, SQLITE, MSSQL, etc.) into a flexible table similar to airtable!

🌟 It allows users to manage data using a convenient web interface, create a REST API, configure representations (tables, calendars, kanban dosks) and integrate with external services.

🔐 License: AGPL-3.0


🖥 Github

#علم_داده
🆔 @Python4all_pro

Читать полностью…

پایتون ( Machine Learning | Data Science )

GPU-accelerated NumPy/SciPy library

🔗 https://github.com/cupy/cupy




#پایتون #علم_داده
🆔 @Python4all_pro

Читать полностью…

پایتون ( Machine Learning | Data Science )

Python data processing framework for analytics and AI pipelines

🔗 https://github.com/pathwaycom/pathway




#پایتون #هوش_مصنوعی #علم_داده

🆔 @Python4all_pro

Читать полностью…

پایتون ( Machine Learning | Data Science )

Trend chart plot using Python


#پایتون #python
🆔 @Python4all_pro

Читать полностью…

پایتون ( Machine Learning | Data Science )

draw a butterfly in a console using #Python



🆔 @Python4all_pro

Читать полностью…

پایتون ( Machine Learning | Data Science )

Free 100 Python Programs for Beginner with explanation


https://bit.ly/4gEE6gh


🆔 @Python4all_pro

Читать полностью…
Subscribe to a channel