VibeBuilders.ai Logo
VibeBuilders.ai

All Resources

My Building Of Trading Order Management System Using AI Agents
reddit
LLM Vibe Score0
Human Vibe Score0
AniketWorkThis week

My Building Of Trading Order Management System Using AI Agents

Practical Guide : Automating Business Transactions with AI-Powered Workflows Full Article | Code https://preview.redd.it/hrkeo00yz4ie1.jpg?width=1911&format=pjpg&auto=webp&s=5bcb6f02c72bbce22fb691e4d8b799c414fed2a7 https://preview.redd.it/1cp0izzxz4ie1.png?width=1899&format=png&auto=webp&s=2598e25e17ab03a95f3009f5333f02b077ce30ca https://preview.redd.it/cjp1640yz4ie1.png?width=1899&format=png&auto=webp&s=13dad0ee8e0b1b22415a60a57b571058f0bdef33 TL;DR A practical implementation of an AI-powered B2B order management system using LangChain and LLM, demonstrating automated order processing, inventory management, and real-time communication between trading partners. https://i.redd.it/kxe4l69105ie1.gif Introduction In today’s fast-paced business environment, efficient order management is crucial for B2B operations. GlobalTrade Nexus AI showcases how artificial intelligence can streamline complex business transactions, reduce errors, and enhance communication between trading partners. What’s This Article About? This article presents a comprehensive B2B trading platform that leverages AI to automate order processing workflows. The system handles everything from order placement to fulfillment, featuring: Real-time inventory verification Automated shipping cost calculations Instant order validation Secure transaction processing Smart order cancellation capabilities State management across the entire order lifecycle The platform demonstrates how modern AI technologies can be integrated into traditional business processes to create a seamless, efficient trading environment. Tech stack Why Read It? As businesses increasingly embrace digital transformation, AI-powered solutions are becoming essential for maintaining competitive advantage. This article provides: A practical example of AI implementation in B2B commerce Insights into modern system architecture for business applications Real-world application of language models in business logic Demonstration of secure and scalable state management Blueprint for building similar AI-enhanced business systems Through our fictional companies’ implementation, readers can understand how AI can transform their business operations and prepare for the future of B2B commerce.

Browser Agents Real Example
reddit
LLM Vibe Score0
Human Vibe Score1
No_Information6299This week

Browser Agents Real Example

I made a Browser Price Matching Tool that uses browser automation and some clever skills to adjust your product prices based on real-time web searches data. If you're into scraping, automation, or just love playing with the latest in ML-powered tools like OpenAI's GPT-4, this one's for you. What My Project Does The tool takes your current product prices (think CSV) and finds similar products online (targeting Amazon for demo purposes). It then compares prices, allowing you to adjust your prices competitively. The magic happens in a multi-step pipeline: Generate Clean Search Queries: Uses a learned skill to convert messy product names (like "Apple iPhone14!<" or "Dyson! V11!!// VacuumCleaner") into clean, Google-like search queries. Browser Data Extraction: Launches asynchronous browser agents (leveraging Playwright) to search for those queries on Amazon, retrieves the relevant data, and scrapes the page text. Parse & Structure Results: Another custom skill parses the browser output to output structured info: product name, price, and a short description. Enrich Your Data: Finally, the tool combines everything to enrich your original data with live market insights! Full code link: Full code File Rundown learn\skill.py Learns how to generate polished search queries from your product names with GPT-4o-mini. It outputs a JSON file: makequery.json. learn\skill\select\best\product.py Trains another skill to parse web-scraped data and select the best matching product details. Outputs select_product.json. make\query.json The skill definition file for generating search queries (produced by learnskill.py). select\product.json The skill definition file for extracting product details from scraped results (produced by learnskillselectbest_product.py). product\price\matching.py The main pipeline script that orchestrates the entire process—from loading product data, running browser agents, to enriching your CSV. Setup & Installation Install Dependencies: pip install python-dotenv openai langchain\_openai flashlearn requests pytest-playwright Install Playwright Browsers: playwright install Configure OpenAI API: Create a .env file in your project directory with:OPENAI\API\KEY="sk-your\api\key\_here" Running the Tool Train the Query Skill: Run learnskill.py to generate makequery.json. Train the Product Extraction Skill: Run learnskillselectbestproduct.py to generate select_product.json. Execute the Pipeline: Kick off the whole process by running productpricematching.py. The script will load your product data (sample data is included for demo, but easy to swap with your CSV), generate search queries, run browser agents asynchronously, scrape and parse the data, then output the enriched product listings. Target Audience I built this project to automate price matching—a huge pain point for anyone running an e-commerce business. The idea was to minimize the manual labor of checking competitor prices while integrating up-to-date market insights. Plus, it was a fun way to combine automation,skill training, and browser automation! Customization Tweak the concurrency in productpricematching.py to manage browser agent load. Replace the sample product list with your own CSV for a real-world scenario. Extend the skills if you need more data points or different parsing logic. Ajudst skill definitions as needed Comparison With existing approaches you need to manually write parsing loginc and data transformation logic - here ai does it for you. If you like the tutorial - leave a star github

How I Built A Simple ‘BPO’ Company, All AI Employees (All Local)
reddit
LLM Vibe Score0
Human Vibe Score1
AssistanceOk2217This week

How I Built A Simple ‘BPO’ Company, All AI Employees (All Local)

Disrupting the BPO Industry: My Journey Building a Fully Automated Company with AI Employees Full Article : https://medium.com/@learn-simplified/how-i-built-a-simple-bpo-company-all-ai-employees-all-local-631e48fa908a &#x200B; https://preview.redd.it/htjo1mancl2d1.png?width=1586&format=png&auto=webp&s=7e77f4c66e5ca55a8b0ea6969c43a458503ad921 ● What Are We Doing Today? We are building a BPO (Business Process Outsourcing) call center for an imaginary electric company called "Aniket Very General Electric Company". We will create different departments staffed by AI agents who can chat (and eventually speak in next part) with customers to answer questions, handle complaints, or provide services. ● Why Should You Read This Article? Learning how to build AI agents that can do tasks in real setting, co ordinate w/ human, AI, providing technical support will be a highly valuable skill. ● How Are We Going to Build Our All AI Employees Company? ○ We will explain what BPO and call centers are. ○ Our AI company will have departments like Customer Service, Tech Support, Billing & Payments, Outage Management, and Onboarding Customers. ○ We will use Docker containers to run the Dify AI platform as the base. ○ The AI agents will use the LLaMA-3 language model from Meta AI. ○ We may use Groq's AI accelerator chip to make LLaMA-3 faster. ○ Each department will have a knowledge base of text files that the AI agents can reference. ● Let's Get Cooking! This section provides setup instructions for installing Docker, Ollama (for running LLaMA-3), and the Dify AI platform. It also outlines the different AI agents we will create for departments like Reception, Customer Service, Billing, Tech Support, etc. ● Let's Design our Organization ○ We explain how each department's AI agents will have their own knowledge base, like an employee handbook. ○ The knowledge bases will contain policies, procedures, and other key information. ○ The AI agents can quickly reference this information to provide accurate and knowledgeable responses. ● Let's Meet Our AI Employees ○ We chose the LLaMA-3 70B model as the base for all AI agents across departments. ○ We give the AI agents customized prompts to define their personalities and roles. ○ The knowledge bases act as training materials tailored to each department. ○ In the future, AI agents could have additional tools like ticket systems and integrations. ● Let's Run Our BPO Organization Now that the AI workforce and knowledge bases are ready, we can open our BPO company and have the AI agents start handling customer inquiries across different departments like billing, tech support, outages, and new connections. ● Debugging This section highlights the importance of debugging, showing traces of how the language model understands customer queries and retrieves relevant context from knowledge bases to provide good responses. ● Future Work ○ Scale up to handle more customers using cloud services or distributed computing. ○ Move AI agents and knowledge bases to the cloud for accessibility and maintenance. ○ Fine-tune language models for better performance in each department. ○ Use scalable vector databases for faster knowledge retrieval. ○ Enable voice interfaces and computer vision for more natural interactions. ○ Implement continuous learning so AI agents can expand their knowledge over time. The article demonstrates the potential of building an actual AI-powered company and raises thought-provoking questions about the role of humans, ethics, and using AI to create a better world. &#x200B;

Seeking Guidance to Transition from SRE to Quant Developer/HFT
reddit
LLM Vibe Score0
Human Vibe Score1
Horror_Brief5524This week

Seeking Guidance to Transition from SRE to Quant Developer/HFT

Hey Reddit! Let me introduce myself: I’m a 2024 B.Tech (IT) graduate from a state-level college in India. Currently, I’m working as an SRE (Site Reliability Engineer) at one of the world’s largest custodian banks (not naming the company). I’ve been with the organization for about a year now, combining my internship and full-time role. During this time, I’ve developed a strong foundation in AI/ML and have primarily been working on projects to automate BAU (Business-As-Usual) activities using these technologies. Outside of work, I have a deep interest in trading and stock markets—something that runs in the family, as my father has been trading for over 40 years. My ultimate goal is to transition into the field of quantitative development or high-frequency trading (HFT) and work for top-tier firms like HRT, Optiver, or Tower Research. To make this dream a reality, I’ve started preparing in the following ways: Learning the basics of stock markets and financial instruments. Studying statistics and experimenting with different algorithms to analyze stocks (mainly on a fundamental level for now). Getting back to practicing DSA (Data Structures and Algorithms). I’ll admit I’m rusty here since I haven’t been consistent with it for a while. I’m aware that transitioning from SRE to Quant Developer/HFT is ambitious and might seem like a pipe dream, but it’s a challenge I’m willing to take on. I’d love to hear from people in the quant field or those who’ve made similar career transitions. What should I focus on? Any recommended resources, books, or courses? Are there any specific skill sets or certifications that could make me stand out? Any guidance, advice, or encouragement would mean a lot. Thank you!

Let’s Build One Person Business Using 100% AI
reddit
LLM Vibe Score0
Human Vibe Score1
AssistanceOk2217This week

Let’s Build One Person Business Using 100% AI

AI made it possible for 9-to-5 workers to start a one-person business without quitting their jobs. Full Article https://preview.redd.it/tynb9y6z695d1.png?width=1309&format=png&auto=webp&s=b490d3676a63adcc01faff8c476056cb7d420022 https://i.redd.it/9x3okti0795d1.gif The Opportunities for Starting a Business ○ There are huge opportunities to start your own business by leveraging valuable skills to attract paying audiences. ○ New software and AI platforms make it easier to distribute products/services and automate tasks that were previously time-consuming. Our One Person Book Publication House ○ This article explores building a one-person AI-powered business focused on publishing books. ○ Users input data on a topic, and AI generates a comprehensive book structure and content based on that. ○ The generated content can be formatted, designed, and published digitally or in print easily. Why Read This Article? ○ It presents an innovative AI-powered approach to streamline the book publishing process. ○ It provides technical implementation details using LLM, Python and the Streamlit library as a reference. ○ It highlights AI's potential in automating creative tasks like writing and content creation. Approaching the One Person Business ○ Reflect on areas where you overcame personal struggles and gained valuable skills. ○ Leverage that expertise to build an AI business serving others facing similar obstacles. ○ Use AI tools to create content, automate processes, and efficiently scale your offerings. The Publication Business Idea ○ Focus on writing and publishing small books using AI writing assistants. ○ AI can streamline research, writing drafts, outlines, and ideas across genres. ○ Concentrate efforts on editing, formatting, and marketing while AI handles writing. The Book Generation Process ○ Users input structured topic data like outlines, key points, and references. ○ Advanced AI language models generate flowing book content from that data. ○ Minimal human effort is needed beyond initial inputs and refinement. ○ AI systems automatically handle formatting, design, and publishing. Technical Implementation ○ Includes a Book class to represent a book's hierarchical structure in Python. ○ Functions to generate book structures and section content using AI models. ○ Integrates with a Streamlit app for user input and output. ○ Allows downloading the final book in Markdown format. Closing Thoughts ○ This AI-powered approach makes book writing and publishing more accessible to individuals. ○ AI handles the heavy lifting, with humans providing quality control through editing. ○ It opens up possibilities for innovative knowledge sharing as technology evolves.

My Building Of Trading Order Management System Using AI Agents
reddit
LLM Vibe Score0
Human Vibe Score0
AniketWorkThis week

My Building Of Trading Order Management System Using AI Agents

Practical Guide : Automating Business Transactions with AI-Powered Workflows Full Article | Code https://preview.redd.it/hrkeo00yz4ie1.jpg?width=1911&format=pjpg&auto=webp&s=5bcb6f02c72bbce22fb691e4d8b799c414fed2a7 https://preview.redd.it/1cp0izzxz4ie1.png?width=1899&format=png&auto=webp&s=2598e25e17ab03a95f3009f5333f02b077ce30ca https://preview.redd.it/cjp1640yz4ie1.png?width=1899&format=png&auto=webp&s=13dad0ee8e0b1b22415a60a57b571058f0bdef33 TL;DR A practical implementation of an AI-powered B2B order management system using LangChain and LLM, demonstrating automated order processing, inventory management, and real-time communication between trading partners. https://i.redd.it/kxe4l69105ie1.gif Introduction In today’s fast-paced business environment, efficient order management is crucial for B2B operations. GlobalTrade Nexus AI showcases how artificial intelligence can streamline complex business transactions, reduce errors, and enhance communication between trading partners. What’s This Article About? This article presents a comprehensive B2B trading platform that leverages AI to automate order processing workflows. The system handles everything from order placement to fulfillment, featuring: Real-time inventory verification Automated shipping cost calculations Instant order validation Secure transaction processing Smart order cancellation capabilities State management across the entire order lifecycle The platform demonstrates how modern AI technologies can be integrated into traditional business processes to create a seamless, efficient trading environment. Tech stack Why Read It? As businesses increasingly embrace digital transformation, AI-powered solutions are becoming essential for maintaining competitive advantage. This article provides: A practical example of AI implementation in B2B commerce Insights into modern system architecture for business applications Real-world application of language models in business logic Demonstration of secure and scalable state management Blueprint for building similar AI-enhanced business systems Through our fictional companies’ implementation, readers can understand how AI can transform their business operations and prepare for the future of B2B commerce.

How I Built an Agentic Marketing Campaign Strategist
reddit
LLM Vibe Score0
Human Vibe Score1
AniketWorkThis week

How I Built an Agentic Marketing Campaign Strategist

Marketing at Scale: How One AI System Replaces Hundreds of Strategy Hours Article https://i.redd.it/uekqj3zmerme1.gif https://i.redd.it/30rk23zmerme1.gif https://preview.redd.it/fk1t53zmerme1.png?width=797&format=png&auto=webp&s=d07f473a9556fbd38885b3a2f862101d9b25424e https://preview.redd.it/n84113zmerme1.jpg?width=1914&format=pjpg&auto=webp&s=f42679269a1003e1c8d6501dd2d53e10db745bba https://preview.redd.it/l13ae3zmerme1.jpg?width=791&format=pjpg&auto=webp&s=ecab3c295c2a416bc0fed8c62fecbe3321e37093 TL;DR This article guides you through building an AI-powered marketing strategist using Python. It combines vector databases, language models, and PDF generation to create customized marketing strategies automatically. I’ll show you the complete system architecture, from storing marketing knowledge to generating professional strategy documents, with practical code examples you can implement today. Perfect for marketers and developers looking to leverage AI for business growth. Introduction Welcome to the exciting intersection of marketing and artificial intelligence! In today’s digital world, creating effective marketing campaigns requires deep expertise, market research, and creative thinking. But what if you could automate parts of this process? That’s exactly what I set out to build: an AI system that generates comprehensive marketing strategies tailored to specific products, audiences, and budgets. What’s This Article About? This article walks you through the creation of an AI-powered marketing strategist that combines the retrieval of relevant marketing knowledge with advanced language generation to produce detailed campaign strategies. The system I built uses Retrieval-Augmented Generation (RAG), which enhances AI outputs by grounding them in specific knowledge sources. Here’s how it works: You provide a simple campaign description (like “a new eco-friendly water bottle targeting millennials with a budget of $50,000”) The system searches a knowledge base of marketing principles and best practices It then uses a language model to craft a comprehensive strategy that includes campaign objectives, target audience analysis, channel selection, content ideas, budget allocation, and measurement KPIs Finally, it generates a professional PDF document with your complete marketing strategy The beauty of this approach is that it combines the creativity and adaptability of AI with established marketing frameworks, ensuring the strategies are both innovative and grounded in proven principles. Why Read It? AI is rapidly transforming how businesses operate, and marketing is at the forefront of this revolution. According to recent studies, companies that effectively leverage AI in their marketing efforts see significant improvements in customer engagement, conversion rates, and ROI. Even if you’re not building a system for a real company right now, understanding how to implement AI in marketing processes gives you valuable skills and insights. This article provides a practical example of how AI can: Save marketers countless hours of research and strategy development Ensure consistency in marketing approaches across different campaigns Generate creative ideas that might not have been considered otherwise Scale marketing expertise across an organization By following along, you’ll gain hands-on experience with technologies like vector databases, language models, and automated document generation — all skills that are increasingly valuable in today’s business environment.

Randomly asked ChatGPT and Claude for a 4 year roadmap for an ML Engineer
reddit
LLM Vibe Score0
Human Vibe Score1
Brilliant_Fishing110This week

Randomly asked ChatGPT and Claude for a 4 year roadmap for an ML Engineer

Title, Is it actually a good plan ?? If no, why not ?? \\🚀 4-Year Roadmap to Becoming a High-Earning ML Engineer & Entrepreneur\\ \\(With Smartwork & Realistic 60-70% Execution Feasibility)\\ \\🟢 Year 1: Strong Foundation & Initial Projects (0-12 Months)\\ 🎯 \\Goal: Master Python & ML Fundamentals\\ \\🔹 1-4 Months (Python & Math Strengthening)\\ ✅ Python Mastery \- Daily LeetCode Easy problems (minimum 2) \- Build automation projects \- NumPy & Pandas mastery \- DSA fundamentals ✅ Mathematics Foundation \- Linear Algebra basics \- Statistics fundamentals \- Basic calculus concepts ✅ First Mini-Hackathon Participation \- Join beginner-friendly hackathons \- Focus on Python-based challenges \- Team up with other beginners 💡 \\Smart Move:\\ \- Join Discord/Slack hackathon communities \- Practice collaborative coding \- Build network with fellow participants \\🔹 5-8 Months (ML Foundations)\\ ✅ Machine Learning Basics \- Supervised Learning \- Model evaluation \- Feature engineering \- scikit-learn projects ✅ Participate in 2-3 ML Hackathons \- Kaggle Getting Started competitions \- Local ML hackathons \- University hackathons ✅ Start LinkedIn & GitHub Portfolio 💡 \\Smart Move:\\ \- Document hackathon experiences \- Share learnings on LinkedIn \- Focus on completion over winning \\🔹 9-12 Months (Deep Learning Introduction)\\ ✅ Basic Deep Learning \- Neural network fundamentals \- PyTorch basics \- Computer vision tasks \- Basic NLP ✅ Advanced Hackathon Participation \- AI/ML specific hackathons \- Team lead in 1-2 hackathons \- Start mentoring beginners \\🔵 Year 1 Expected Outcome (60-70% Execution)\\ ✔ \\Strong Python & ML foundations\\ ✔ \\5-6 hackathon participations\\ ✔ \\Active GitHub (100+ commits)\\ ✔ \\Growing LinkedIn (300+ connections)\\ 💰 \\Earning Expectation → ₹8K-₹20K per month (Projects/Internship)\\ \\🟢 Year 2: Professional Growth & Specialization (12-24 Months)\\ 🎯 \\Goal: Build Professional Experience & Recognition\\ \\🔹 1-6 Months (Technical Depth)\\ ✅ Advanced ML Topics \- Deep Learning architectures \- Computer Vision OR NLP \- MLOps basics (Docker, FastAPI) \- Cloud fundamentals (AWS/GCP) ✅ Hackathon Achievements \- Win minor prizes in 2-3 hackathons \- Lead teams in major hackathons \- Network with sponsors ✅ Start Technical Blogging 💡 \\Smart Move:\\ \- Focus on hackathon projects that align with career goals \- Build relationships with companies at hackathons \- Create detailed project documentation \\🔹 7-12 Months (Professional Experience)\\ ✅ Secure ML Role/Internship ✅ Advanced Project Building ✅ Open Source Contributions ✅ Organize Small Hackathons 💡 \\Smart Move:\\ \- Use hackathon network for job referrals \- Convert hackathon projects into full products \- Build mentor reputation \\🔵 Year 2 Expected Outcome (60-70% Execution)\\ ✔ \\Professional ML experience\\ ✔ \\10+ hackathon participations\\ ✔ \\1-2 hackathon wins\\ ✔ \\Strong industry network\\ 💰 \\Earning Expectation → ₹40K-₹70K per month (Job/Freelancing)\\ \\🟢 Year 3: Scaling & Business Foundation (24-36 Months)\\ 🎯 \\Goal: Establish Multiple Income Streams\\ \\🔹 1-4 Months (Expertise Building)\\ ✅ Choose Specialization \- MLOps \- Computer Vision \- NLP/LLMs \- Generative AI ✅ Advanced Competitions \- International hackathons \- High-prize competitions \- Corporate ML challenges ✅ Start Consulting Services 💡 \\Smart Move:\\ \- Use hackathon wins for marketing \- Build service packages around expertise \- Network with corporate sponsors \\🔹 5-8 Months (Business Development)\\ ✅ Scale Services ✅ Build Client Network ✅ Create Training Programs ✅ Hackathon Mentorship Program 💡 \\Smart Move:\\ \- Convert hackathon projects to products \- Use event networks for client acquisition \- Build authority through speaking \\🔹 9-12 Months (Growth & Innovation)\\ ✅ Product Development ✅ Team Building ✅ Innovation Focus ✅ Hackathon Organization \\🔵 Year 3 Expected Outcome (60-70% Execution)\\ ✔ \\Established ML business/career\\ ✔ \\Known in hackathon community\\ ✔ \\Multiple income streams\\ ✔ \\Strong industry presence\\ 💰 \\Earning Expectation → ₹1L-₹2L per month (Multiple Streams)\\ \\🟢 Year 4: Scale & Leadership (36-48 Months)\\ 🎯 \\Goal: Build AI Company & Achieve Financial Freedom\\ \\🔹 1-4 Months (Business Scaling)\\ ✅ Company Formation \- AI consulting firm \- Product development \- Training programs ✅ Hackathon Innovation \- Launch own hackathon series \- Corporate partnerships \- Prize sponsorships ✅ Team Expansion 💡 \\Smart Move:\\ \- Use hackathon network for hiring \- Create unique event formats \- Build corporate relationships \\🔹 5-8 Months (Market Leadership)\\ ✅ Product Launch ✅ Service Expansion ✅ International Presence ✅ Innovation Hub Creation 💡 \\Smart Move:\\ \- Create hackathon-to-hiring pipeline \- Build educational programs \- Establish thought leadership \\🔹 9-12 Months (Empire Building)\\ ✅ Multiple Revenue Streams \- AI products \- Consulting services \- Educational programs \- Event organization \- Investment returns ✅ Industry Leadership \- Conference speaking \- Published content \- Community leadership \\🔵 Year 4 Expected Outcome (60-70% Execution)\\ ✔ \\Established AI company\\ ✔ \\Major hackathon organizer\\ ✔ \\Multiple product lines\\ ✔ \\Industry authority status\\ 💰 \\Earning Expectation → ₹3L-₹5L+ per month (Business Income)\\ \\📊 FINAL RATING\\ ✅ \\Comprehensive growth plan\\ ✅ \\Strong community focus\\ ✅ \\Multiple income pathways\\ 💡 \\If 100% Execution → 8.5/10 Feasibility\\ 💡 \\If 50% Execution → 6/10 Feasibility\\ 🔥 \\Conclusion: A balanced path to ML mastery and entrepreneurship, built through consistent growth and community engagement!\\ 🚀 \\Key Success Factors:\\ Regular hackathon participation Strong community involvement Consistent skill development Strategic network building Focus on both technical and business growth

I'm Building an "AiExecutiveSuperAgent_Systems_Interface" between humanity and the Ai world, as well as each other... Let's Talk?
reddit
LLM Vibe Score0
Human Vibe Score1
Prudent_Ad_3114This week

I'm Building an "AiExecutiveSuperAgent_Systems_Interface" between humanity and the Ai world, as well as each other... Let's Talk?

Ok... So look... This one is pretty crazy... I'm building an Ai Interface that knows me better than I know myself - Check, lots of people have this, either in reality with employees and family members, or with ai intelligence. But it doesn't just know Me... It knows how to talk with Me. It understands my language, because I've trained it to. I've also trained it to translate that to all my clients and HumanAgents, soon to become RobotAgents... The RESULT: I can literally just spend 1-18 hours talking to it, and things get DONE. Most of that time, I just say EXECUTE, or ENGAGE, or DRAFT, or DISPATCH. I feel like a secret agent communicating in codes with his agency 😂 Not great for the paranoiac in me, but it's easy to get that part under control, ya'll. It's like having a team of 10,000 people, all available 24/7, all perfectly synchronised to each other's communication styles, preferences and ultimately: WHAT DO YOU NEED ME TO DO. At the end of the it all, having run my single COMMAND through a thousand of those people, a Document is prepared that outlines the next 3 stages of the plan, along with instructions to the whole team for how to ENACT it. Sounds rather grand and wonderful... Even when I simply use it to help me come up with a filing system for my creative work... \\\\\\\\\\\\\\\\\\\\\\ Here's my current VISION, why I'm doing this AND why I'm doing it publicly despite it being top secret. VISION To create an army of User-Owned and Operated "AiSuperAgencies" which gather intelligence on the user, securely file and analyse it, and then construct a sub-army of agents and tools that work together to produce the desired output, for any Function in the Personal and Professional Lives of EVERYONE, EVERYWHERE, in 3-5 Years. To start, I'm building it for me and the 5-10 cleaners who've made it to Level 1 in my access system. They were sick of toxic employers, tyrannical agencies and greedy customers. They gathered around us (many came in, many went out, few stayed, took about a year for our core team of 3 Level 2 Cleaners. My goal has always been to never employ anyone. Just me, my Partner and the Cleaners. All Shared Owners in the system for delivering the right cleaner to the right house in our town, at the right time and without any dramas or arguments... I have a personal talent for resolving disputes, which has made working for and buying from my business a mostly enjoyable and upbeat experience, with a touch of mystery and a feeling that you're part of something big! It is a business that ran on Me. I put in my time, every day, building automated tool after automated tool. Hiring a contractor to do a job, scratching my head when it didn't add enough value to pay for itself, then just doing it myself again. I wanted to solve that problem. I'm trusting that the few who hear about it who actually see the potential, will just come join us, no dramas, just cool people partnering up! And those that don't, won't. No one could steal it, because it's Mine, and I'll just change the keys anyway loser! Enjoy digging through my past, you lunatic! I'm out here living Now. Anyways... It's lonely around here. I have a cleaning business that I run from my laptop, which means I can live anywhere, but I still had this big problem of time... NOT ENOUGH Oh Wait. It's Here.

Is it too late for me to do a PhD in the US?
reddit
LLM Vibe Score0
Human Vibe Score0.333
StarxelThis week

Is it too late for me to do a PhD in the US?

In 2019 I started an integrated Masters of Physics at Oxford. Graduated summer of 2023. During that time I first authored an AI research paper with the Oxford AI Society. We tried to get it into ICLR but it got rejected. Managed to get it into a NeurIPS workshop though, however I'm unsure if that holds much weight. The paper also got 21 citations on arxiv which is nice. After graduating, my gf and I broke up (mutually, long distance was too much) and life after university made me quite down. Bad market and struggled to get a job. A friend reached out to me about doing a startup in San Francisco. Did that startup until January 2024 when I quit because I had no money left. Through the connections I made out there I landed a gig at Chroma DB. Did a research contract with them. We didn't make a paper but instead made a technical report. The GitHub repo for the project has gained over 200 stars. However, since I was remote and US visas are a pain, my contract wasn't renewed. I tried starting my own business from July 2024 till December. I managed to secure a long term contract with a US construction company building them software that automates admin via GPT. Still doing this contract now and they've said they're happy to keep me for as long as I want. That's the context. During the winter of 2024 I thought heavily about applying for a PhD in the US. At: CMU, Stanford, Berkeley, MIT, CalTech, etc. However, I knew my profile wasn't strong enough. So I want to apply the winter of 2025. I'm in talks with a few institutions and research groups about doing projects. But is it possible that, starting in February 2025, I can co-author, submit and have accepted a paper into a top conference by December 2025? I feel like I'm too late to this decision and should have skipped that San Francisco startup to just do research projects from the start.

I’m AI/ML product manager. What I would have done differently on Day 1 if I knew what I know today
reddit
LLM Vibe Score0
Human Vibe Score0
bendee983This week

I’m AI/ML product manager. What I would have done differently on Day 1 if I knew what I know today

I’m a software engineer and product manager, and I’ve working with and studying machine learning models for several years. But nothing has taught me more than applying ML in real-world projects. Here are some of top product management lessons I learned from applying ML: Work backwards: In essence, creating ML products and features is no different than other products. Don’t jump into Jupyter notebooks and data analysis before you talk to the key stakeholders. Establish deployment goals (how ML will affect your operations), prediction goals (what exactly the model should predict), and evaluation metrics (metrics that matter and required level of accuracy) before gathering data and exploring models.  Bridge the tech/business gap in your organization: Business professionals don’t know enough about the intricacies of machine learning, and ML professionals don’t know about the practical needs of businesses. Educate your business team on the basics of ML and create joint teams of data scientists and business analysts to define and measure goals and progress of ML projects. ML projects are more likely to fail when business and data science teams work in silos. Adjust your priorities at different stages of the project: In the early stages of your ML project, aim for speed. Choose the solution that validates/rejects your hypotheses the fastest, whether it’s an API, a pre-trained model, or even a non-ML solution (always consider non-ML solutions). In the more advanced stages of the project, look for ways to optimize your solution (increase accuracy and speed, reduce costs, increase flexibility). There is a lot more to share, but these are some of the top experiences that would have made my life a lot easier if I had known them before diving into applied ML.  What is your experience?

How I landed an internship in AI
reddit
LLM Vibe Score0
Human Vibe Score1
Any-Reserve-4403This week

How I landed an internship in AI

For motivational purposes only! I see a lot of posts on here from people without “traditional” machine learning, data science, etc.. backgrounds asking how they can break into the field, so I wanted to share my experience. EDIT Learning Resources and Side Project Ideas * My background: I graduated from a decent undergraduate school with a degree in Political Science several years ago. Following school I worked in both a client services role at a market research company and an account management role at a pretty notable fintech start-up. Both of these roles exposed me to ML, AI and more sophisticated software concepts in general, and I didn’t really care for the sales side of things, so I decided to make an attempt at switching careers into something more technical. While working full time I began taking night classes at a local community college, starting with pre calculus all the way up to Calc 2 and eventually more advanced classes like linear algebra and applied probability. I also took some programming courses including DSA. I took these classes for about two years while working, and on the side had been working through various ML books and videos on YouTube. What worked the best for me was Hands-on Machine Learning with Scikit Learn, Keara’s and Tensorflow. I eventually had enough credits where I was able to begin applying to MS in Data Science programs and was fortunate enough to get accepted into one and also get a position in their Robotics Lab doing Computer Vision work. When it came time to apply for internships, it was a BLOODBATH. I must have applied to over 100 roles with my only responses being video interviews and OA’s. Finally I got an interview for an AI Model Validation internship with a large insurance company and after completing the interviews was told I performed well but they were still interviewing several candidates. I ended up getting the offer and accepting the role where I’ll be working on a Computer Vision model and some LLM related tasks this summer and could not be more fortunate / excited. A couple things stood out to them during the interview process. 1, the fact that I was working and taking night classes with the intent to break into the field. It showed a genuine passion as opposed to someone who watched a YouTube video and claims they are now an expert. 2, side projects. I not only had several projects, but I had some that were relevant to the work I’d be doing this summer from the computer vision standpoint. 3, business sense. I emphasized during my interviews how working in a business role prior to beginning my masters would give me a leg up as intern because I would be able to apply the work of a data scientist to solving actual business challenges. For those of you trying to break into the field, keep pushing, keep building, and focus on what makes you unique and able to help a company! Please feel free to contact me if you would like any tips I can share, examples of projects, or anything that would be helpful to your journey.

Showing 481-504 of 1340 resources in category: reddit