Metadata-Version: 2.4
Name: adi-ml-toolkit
Version: 0.1.2
Summary: A handy metapackage installing common ML/AI libraries and tools I use for hackathons.
Project-URL: Homepage, https://github.com/adityashirsatrao007/adi-ml-toolkit
Project-URL: Repository, https://github.com/adityashirsatrao007/adi-ml-toolkit.git
Author-email: Aditya <adityashirsatrao007@gmail.com>
License: MIT
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.9
Requires-Dist: accelerate>=0.25.0
Requires-Dist: anthropic>=0.12.0
Requires-Dist: autogen-agentchat>=0.2.0
Requires-Dist: autogluon>=1.0.0; python_version < '3.14'
Requires-Dist: beautifulsoup4>=4.12.0
Requires-Dist: catboost>=1.2.0
Requires-Dist: celery>=5.3.0
Requires-Dist: chromadb>=0.4.22
Requires-Dist: crewai>=0.11.0
Requires-Dist: datasets>=2.15.0
Requires-Dist: fastai>=2.7.0
Requires-Dist: fastapi>=0.104.0
Requires-Dist: flask>=3.0.0
Requires-Dist: gensim>=4.3.0
Requires-Dist: google-generativeai>=0.3.0
Requires-Dist: gradio>=4.0.0
Requires-Dist: huggingface-hub>=0.19.0
Requires-Dist: ipywidgets>=8.1.0
Requires-Dist: jax[cpu]>=0.4.0
Requires-Dist: jupyterlab>=4.0.0
Requires-Dist: keras>=3.0.0
Requires-Dist: langchain-openai>=0.0.2
Requires-Dist: langchain>=0.1.0
Requires-Dist: langgraph>=0.0.1
Requires-Dist: librosa>=0.10.0
Requires-Dist: lightgbm>=4.0.0
Requires-Dist: llama-index>=0.9.0
Requires-Dist: matplotlib>=3.8.0
Requires-Dist: mlflow>=2.9.0
Requires-Dist: monai>=1.3.0
Requires-Dist: nltk>=3.8.0
Requires-Dist: notebook>=7.0.0
Requires-Dist: numpy>=1.24.0
Requires-Dist: openai>=1.10.0
Requires-Dist: opencv-python-headless>=4.8.0
Requires-Dist: optuna>=3.4.0
Requires-Dist: pandas>=2.0.0
Requires-Dist: pillow>=10.0.0
Requires-Dist: pinecone-client>=3.0.0
Requires-Dist: plotly>=5.18.0
Requires-Dist: prophet>=1.1.4
Requires-Dist: pyautogen>=0.2.0
Requires-Dist: pycaret>=3.2.0
Requires-Dist: pydantic>=2.4.0
Requires-Dist: pymongo>=4.6.0
Requires-Dist: python-dotenv>=1.0.0
Requires-Dist: python-multipart>=0.0.6
Requires-Dist: pytorch-lightning>=2.1.0
Requires-Dist: qdrant-client>=1.7.0
Requires-Dist: redis>=5.0.0
Requires-Dist: requests>=2.31.0
Requires-Dist: scikit-image>=0.21.0
Requires-Dist: scikit-learn>=1.3.0
Requires-Dist: scipy>=1.10.0
Requires-Dist: seaborn>=0.13.0
Requires-Dist: semantic-kernel>=0.5.0
Requires-Dist: sentence-transformers>=2.2.0
Requires-Dist: spacy>=3.7.0
Requires-Dist: sqlalchemy>=2.0.0
Requires-Dist: statsmodels>=0.14.0
Requires-Dist: streamlit>=1.29.0
Requires-Dist: tensorflow-decision-forests>=1.8.0
Requires-Dist: tensorflow>=2.15.0
Requires-Dist: tiktoken>=0.5.0
Requires-Dist: torch>=2.1.0
Requires-Dist: torchaudio>=2.1.0
Requires-Dist: torchvision>=0.16.0
Requires-Dist: transformers>=4.35.0
Requires-Dist: uvicorn>=0.24.0
Requires-Dist: wandb>=0.16.0
Requires-Dist: xgboost>=2.0.0
Description-Content-Type: text/markdown

# adi-ml-toolkit

Just a handy Python metapackage I put together to save time during hackathons. It installs all the common AI, ML, NLP, and web deployment libraries at once (with compatible minimum versions), so you don't have to keep running `pip install` for an hour during competitions.

## Quick Start

```bash
pip install adi-ml-toolkit
```

## What it installs (The Complete Arsenal)

Here is a detailed breakdown of every single library this toolkit instantly configures for your environment:

### Core Data Science & ML
*   **numpy:** High-performance numerical computing and array manipulation.
*   **pandas:** Essential tabular data manipulation and analysis structure.
*   **scipy:** Advanced scientific computing algorithms (integrations, solvers).
*   **scikit-learn:** Core foundational ML algorithms (classification, clustering, regression).
*   **xgboost:** Highly optimized gradient boosting library.
*   **lightgbm:** Microsoft's fast and highly efficient gradient boosting.
*   **catboost:** Yandex's gradient boosting specially tuned for categorical features.

### Deep Learning Frameworks
*   **torch:** PyTorch's core tensor and autograd deep learning framework.
*   **torchvision:** standard PyTorch image transformations and pre-trained CV models.
*   **torchaudio:** standard PyTorch tools for audio processing.
*   **pytorch-lightning:** High-level PyTorch wrapper to simplify training loops and make them robust.
*   **fastai:** High-level PyTorch wrapper optimized for incredibly rapid prototyping.
*   **tensorflow:** Google's enterprise deep learning framework.
*   **tensorflow-decision-forests:** Specialized TensorFlow models for structured data.
*   **keras:** Simple, high-level neural network API.
*   **jax[cpu]:** Google's super high-performance array computing and autograd framework.

### NLP & Foundation Models (HuggingFace)
*   **transformers:** Hugging Face's flagship LLM and foundation model repository.
*   **datasets:** One-line access to thousands of audio, vision, and text training datasets.
*   **accelerate:** PyTorch wrapper for seamless multi-GPU hardware acceleration.
*   **huggingface-hub:** Official client to download models from the Hugging Face Hub.
*   **sentence-transformers:** Create fast, state-of-the-art text and image embeddings.
*   **spacy:** Industrial-strength, production-ready NLP pipelines.
*   **nltk:** Traditional, academic natural language processing toolkit.
*   **gensim:** Unsupervised topic modeling and text similarity calculations.

### Generative AI, Agents & Vector DBs
*   **langchain:** The leading framework for chaining and building LLM applications.
*   **langchain-openai:** Official LangChain integrations for OpenAI models.
*   **langgraph:** Build complex, stateful agentic workflows and cycles with LLMs.
*   **openai:** Official GPT-4 and embeddings API client.
*   **anthropic:** Official Claude API client.
*   **google-generativeai:** Official Google Gemini API client.
*   **chromadb:** Simple, local, open-source vector database.
*   **pinecone-client:** Official client for Pinecone's cloud vector database.
*   **qdrant-client:** Fast vector search engine client.
*   **tiktoken:** OpenAI's hyper-fast byte pair encoding tokenizer.
*   **llama-index:** Data framework for securely connecting custom data to LLMs.
*   **crewai:** Framework for orchestrating autonomous, role-playing AI agents.
*   **autogen-agentchat & pyautogen:** Conversational framework for multi-agent systems.
*   **semantic-kernel:** Microsoft's enterprise-grade AI agent orchestration framework.

### Computer Vision & Healthcare
*   **opencv-python-headless:** Essential open-source computer vision processing (headless for server compatibility).
*   **pillow:** Standard Python imaging library (PIL) for basic image ops.
*   **scikit-image:** Advanced mathematical image processing linked with SciPy.
*   **monai:** Medical deep learning framework (the global standard for healthcare hackathons).

### Time Series, Audio, & Visualization
*   **librosa:** Extensive music and audio analysis feature extraction.
*   **statsmodels:** Traditional statistical modeling and hypothesis testing.
*   **prophet:** Robust time-series forecasting algorithm developed by Meta.
*   **matplotlib:** Foundational Python plotting library.
*   **seaborn:** Beautiful, high-level statistical data visualization.
*   **plotly:** Interactive, web-based, stunning graphical plots.

### Jupyter & MLOps (AutoML & Tracking)
*   **jupyterlab & notebook:** Classic web-based interactive coding environments.
*   **ipywidgets:** Interactive HTML widgets for dynamic notebooks.
*   **mlflow:** Manage the ML lifecycle and meticulously track experiments.
*   **wandb:** Weights & Biases for beautifully visualizing model training runs in the cloud.
*   **optuna:** Automated and hyper-efficient hyperparameter optimization.
*   **pycaret:** Low-code library for end-to-end rapid ML model deployment.
*   **autogluon:** Automates completely the process of model selection and ensembling.

### Web Apps & Server APIs
*   **fastapi:** Ultra-fast, modern web framework for Python APIs.
*   **uvicorn:** Lightning-fast ASGI server required for running FastAPI.
*   **flask:** Classic, extremely lightweight web application framework.
*   **streamlit:** Turn python data scripts into interactive shareable web apps in literally minutes.
*   **gradio:** Build quick, shareable web UIs specifically for machine learning models.
*   **pydantic:** Robust data validation parsing using Python type hints.
*   **python-multipart:** Support for parsing form data uploads (crucial for FastAPI file uploads).

### General Utilities & Databases
*   **requests:** The standard library to make HTTP requests easily.
*   **beautifulsoup4:** Parse HTML and XML documents effortlessly (web scraping standard).
*   **python-dotenv:** Read variables securely from `.env` files.
*   **sqlalchemy:** Powerful SQL toolkit and Object-Relational Mapper.
*   **pymongo:** Official driver for MongoDB NoSQL databases.
*   **redis:** High-performance Redis key-value store client.
*   **celery:** Distributed task queue processing mechanism.

## Setup Tools (Optional)

It also includes a small python script that helps you globally install common CLIs (like Vercel, Heroku, AWS CLI, Netlify) so your deployment environment is ready to go. Run:

```bash
ml-setup-clis
```

## Contributing

Feel free to open a PR if you think I missed a useful library or CLI tool.

