"ilovetools v0.1.2: Python Utilities for ML Developers"

🚀 NEW RELEASE: ilovetools v0.1.2 - Python Utilities for ML Developers! Excited to announce the latest update to my open-source Python package, now available on PyPI! 🎉 📦 Install anywhere, anytime: pip install ilovetools ✨ What's New in v0.1.2: 🧠 AI MODULE: 1️⃣ similarity_search() - Find similar documents instantly - TF-IDF, Jaccard, Levenshtein, N-gram algorithms - No external APIs or dependencies - Perfect for search engines, FAQ matching, content recommendations - Works 100% offline 2️⃣ cosine_similarity() - Vector similarity calculations - Fast and accurate - Essential for embeddings and semantic search 📊 DATA MODULE: 3️⃣ train_test_split() - ML data splitting made easy - Stratified splitting for balanced classes - Random seed for reproducibility - Supports 70-30, 80-20, 60-20-20 splits - No scikit-learn required! 4️⃣ normalize_data() - Min-max scaling [0, 1] 5️⃣ standardize_data() - Z-score normalization 💻 Quick Examples: # Find similar documents from ilovetools.ai import similarity_search docs = ["Python ML tutorial", "Java basics", "Python AI guide"] results = similarity_search("Python", docs, top_k=2) print(results) # Split data for ML from ilovetools.data import train_test_split X_train, X_test, y_train, y_test = train_test_split( X, y, test_size=0.2, random_state=42 ) # Count tokens for LLM from ilovetools.ai import token_counter tokens = token_counter("Your text", model="gpt-4") print(f"Tokens: {tokens}") 🎯 Why ilovetools? ✅ Zero external dependencies for core functions ✅ Works 100% offline ✅ Lightweight and fast ✅ Comprehensive documentation ✅ MIT License - completely free ✅ Daily updates with new features ✅ Built for real-world ML workflows 🔗 Links: 📦 PyPI: https://lnkd.in/d4UPW4-M 👨💻 GitHub: https://lnkd.in/dz9SZSmK 📚 Docs: Full examples in README 💡 Coming Soon: - Feature scaling utilities - Cross-validation helpers - Confusion matrix tools - Model evaluation metrics - And much more! 👥 For Developers: This package is built with daily updates, adding practical ML utilities that solve real problems. No bloat, just useful functions you'll actually use. 🚀 Try it now: pip install ilovetools Star the repo if you find it useful! Contributions welcome! ⭐ What ML utility would you like to see next? Drop your suggestions below! 👇 #Python #MachineLearning #OpenSource #PyPI #DataScience #AI #MLOps #Developers #Programming #PythonPackage

  • New release announcement for ilovetools Python package with ML utilities

To view or add a comment, sign in

Explore content categories