Register and share your invite link to earn from video plays and referrals.

Collov Labs
@CollovLabs
Creator of @collov_ai ( and Cozy AI One agentic diffusion engine that powers multiple real-world applications
4.6K Following    1.5K Followers
AI agents are moving fast, and SF is still where many of the best conversations happen. On May 8, we co-hosted an AI Agent Builders event in San Francisco — bringing together founders, builders, and investors across the agent stack for real conversations and high-signal networking. Our head of growth @laura_llin also provided a talk about our fresh progress Some of the sharpest discussions of the night centered on where the agent stack goes next: orchestration, memory, evals, and what "production-ready" actually means for agents in the wild. Huge thanks to our co-hosts @CreaoAI, @GoKiteAI, @YottaLabs, and @kuseHQ, and to our event partners @gptdaoglobal and everyone who showed up. More conversations, collaborations, and builder energy ahead. 🚀
Show more
AI Agent is moving fast, and SF is still where many of the best conversations happen. On May 8, we organized an AI Agent Builders event in San Francisco 🌉 The evening brought together founders, builders, and investors across the agent stack for real conversations and high-signal networking. There were lots of insightful discussions around where the agent stack was heading next. Always exciting to see so many talented people building in the space 🤝 Big thanks to co-hosts @CreaoAI @GoKiteAI @YottaLabs @kuseHQ , fellow event partners @CollovLabs @gptdaoglobal , and everyone who joined us that night. More conversations, collaborations, and builder energy ahead.
Show more
AI Agent is moving fast, and SF is still where many of the best conversations happen. On May 8, we organized an AI Agent Builders event in San Francisco 🌉 The evening brought together founders, builders, and investors across the agent stack for real conversations and high-signal networking. There were lots of insightful discussions around where the agent stack was heading next. Always exciting to see so many talented people building in the space 🤝 Big thanks to co-hosts @CreaoAI @GoKiteAI @YottaLabs @kuseHQ , fellow event partners @CollovLabs @gptdaoglobal , and everyone who joined us that night. More conversations, collaborations, and builder energy ahead.
Show more
We are co-hosting ai agent builder event this Friday, come and stop by!
⭐️We’re co-hosting an AI Agent Builders event on May 8th in San Francisco! We welcome AI Agent builders, founders, and investors across the stack to explore what’s next. Don't miss: - Real conversations - High-signal networking - Fresh perspectives on the agent stack Co-hosts @CreaoAI @GoKiteAI @YottaLabs @kuseHQ Event partners @JELabs2024 @CollovLabs @gptdaoglobal Spots are limited See you there 👉
Show more
We are happy to announce $23M Series A. Collov Labs is betting on Visual AI as the next interface — for the 6.8 billion people who've never used AI because text was never the answer. The lab came out of what we saw building our products. People who struggled to write prompts would point their phone at a room and just get it. Real estate agents. Small business owners. First-time AI users. Visual removed friction that text never could. The milestones so far: → 1M+ users worldwide → ~1,000 five-star App Store ratings → Covered the same day by @FortuneMagazine , @axios , @theinformation , @pulse2news, and @UniteAi Led by @MindWorksCap , Taihill Ventures, Brightway Future Capital, and others. The next interface will be the camera. This is just the beginning. — Collov Labs, San Francisco #fundingannouncement# #silliconvalley# #collovlabs#
Show more
Last night felt special. 🧧✨ @CollovLabs hosted another intimate founder & exec gathering — co-hosted by our Head of Growth @laura_llin and Gavin (@N) Llama Venture In the middle of AI agent chaos, model launches, and nonstop hype… we chose to sit down and talk long-term. Thank you @cmigos , Jinjin, @ZiqiPeng Kelly, Qinming, @4lili_lili4 Chris, @jayfunggy for making the room sharp, honest, and generous. 🤝 We talked about: • Real AI agent progress (not Twitter demos 🚀) • What OpenClaw changes in the ecosystem • How founders stay grounded while everything accelerates ⚡ #ChineseNewYear# is about reunion and momentum reset. 🏮 AI is competitive. Brutal sometimes. But nights like this remind me — we’re building an ecosystem, not just products. Wishing everyone clarity, courage, and compounding breakthroughs this year. 🥂
Show more
This framing — optimizing for a family of models rather than a single checkpoint — feels underappreciated. The fact that nanochat recovers clean Chinchilla-style exponents (≈0.5 / 0.5) at such small scale is especially encouraging. It suggests scaling laws are structural, not an artifact of massive budgets.
Show more
New post: nanochat miniseries v1 The correct way to think about LLMs is that you are not optimizing for a single specific model but for a family models controlled by a single dial (the compute you wish to spend) to achieve monotonically better results. This allows you to do careful science of scaling laws and ultimately this is what gives you the confidence that when you pay for "the big run", the extrapolation will work and your money will be well spent. For the first public release of nanochat my focus was on end-to-end pipeline that runs the whole LLM pipeline with all of its stages. Now after YOLOing a few runs earlier, I'm coming back around to flesh out some of the parts that I sped through, starting of course with pretraining, which is both computationally heavy and critical as the foundation of intelligence and knowledge in these models. After locally tuning some of the hyperparameters, I swept out a number of models fixing the FLOPs budget. (For every FLOPs target you can train a small model a long time, or a big model for a short time.) It turns out that nanochat obeys very nice scaling laws, basically reproducing the Chinchilla paper plots: Which is just a baby version of this plot from Chinchilla: Very importantly and encouragingly, the exponent on N (parameters) and D (tokens) is equal at ~=0.5, so just like Chinchilla we get a single (compute-independent) constant that relates the model size to token training horizons. In Chinchilla, this was measured to be 20. In nanochat it seems to be 8! Once we can train compute optimal models, I swept out a miniseries from d10 to d20, which are nanochat sizes that can do 2**19 ~= 0.5M batch sizes on 8XH100 node without gradient accumulation. We get pretty, non-itersecting training plots for each model size. Then the fun part is relating this miniseries v1 to the GPT-2 and GPT-3 miniseries so that we know we're on the right track. Validation loss has many issues and is not comparable, so instead I use the CORE score (from DCLM paper). I calculated it for GPT-2 and estimated it for GPT-3, which allows us to finally put nanochat nicely and on the same scale: The total cost of this miniseries is only ~$100 (~4 hours on 8XH100). These experiments give us confidence that everything is working fairly nicely and that if we pay more (turn the dial), we get increasingly better models. TLDR: we can train compute optimal miniseries and relate them to GPT-2/3 via objective CORE scores, but further improvements are desirable and needed. E.g., matching GPT-2 currently needs ~$500, but imo should be possible to do <$100 with more work. Full post with a lot more detail is here: And all of the tuning and code is pushed to master and people can reproduce these with scaling_laws .sh and miniseries .sh bash scripts.
Show more
New post: nanochat miniseries v1 The correct way to think about LLMs is that you are not optimizing for a single specific model but for a family models controlled by a single dial (the compute you wish to spend) to achieve monotonically better results. This allows you to do careful science of scaling laws and ultimately this is what gives you the confidence that when you pay for "the big run", the extrapolation will work and your money will be well spent. For the first public release of nanochat my focus was on end-to-end pipeline that runs the whole LLM pipeline with all of its stages. Now after YOLOing a few runs earlier, I'm coming back around to flesh out some of the parts that I sped through, starting of course with pretraining, which is both computationally heavy and critical as the foundation of intelligence and knowledge in these models. After locally tuning some of the hyperparameters, I swept out a number of models fixing the FLOPs budget. (For every FLOPs target you can train a small model a long time, or a big model for a short time.) It turns out that nanochat obeys very nice scaling laws, basically reproducing the Chinchilla paper plots: Which is just a baby version of this plot from Chinchilla: Very importantly and encouragingly, the exponent on N (parameters) and D (tokens) is equal at ~=0.5, so just like Chinchilla we get a single (compute-independent) constant that relates the model size to token training horizons. In Chinchilla, this was measured to be 20. In nanochat it seems to be 8! Once we can train compute optimal models, I swept out a miniseries from d10 to d20, which are nanochat sizes that can do 2**19 ~= 0.5M batch sizes on 8XH100 node without gradient accumulation. We get pretty, non-itersecting training plots for each model size. Then the fun part is relating this miniseries v1 to the GPT-2 and GPT-3 miniseries so that we know we're on the right track. Validation loss has many issues and is not comparable, so instead I use the CORE score (from DCLM paper). I calculated it for GPT-2 and estimated it for GPT-3, which allows us to finally put nanochat nicely and on the same scale: The total cost of this miniseries is only ~$100 (~4 hours on 8XH100). These experiments give us confidence that everything is working fairly nicely and that if we pay more (turn the dial), we get increasingly better models. TLDR: we can train compute optimal miniseries and relate them to GPT-2/3 via objective CORE scores, but further improvements are desirable and needed. E.g., matching GPT-2 currently needs ~$500, but imo should be possible to do <$100 with more work. Full post with a lot more detail is here: And all of the tuning and code is pushed to master and people can reproduce these with scaling_laws .sh and miniseries .sh bash scripts.
Show more
0
227
5.4K
675
Forward to community
#CREtech2024# in New York City was successfully completed last week! The event was a remarkable gathering of thought leaders, innovators, and industry professionals dedicated to revolutionizing the real estate and construction sectors with cutting-edge technology. #CollovAI# was honored to showcase how our advanced #spatialdesignintelligence# is transforming workflows across real estate and interior design. From enabling dynamic, real-time spatial reasoning to streamlining design proposals for clients, our solutions sparked significant interest and enthusiasm among attendees. Our keynote speech was incredibly inspiring, highlighting the immense potential of AI-driven innovation to reshape the future of spaces. We were excited to see the industry’s strong recognition of our vision and technology. We are eager to expand our network of partners and collaborate with forward-thinking companies ready to embrace the future of spatial design and real estate technology. 🫶Let’s work together to bring smarter, more efficient, and visually stunning solutions to the market!If you’re interested in partnering with us, reach out—we’d love to explore opportunities to drive innovation together! #NYC# #RealEstate# #CollovAI#
Show more
👋Introducing the #Meissonic# & #Menotico# model series, a collaborative pre-trained image generation model by Collov Labs! This marks another step forward in our research journey, following our work on #3D# Prior Image Synthesis and D-edit. In collaboration with University of California, Berkeley AI Research and Stanford University , this series features highly efficient image generation models based on the MIM (Masked Image Modeling) architecture. Designed to surpass traditional diffusion models (such as SDXL), these models enable efficient generation of 1024x1024 and 512x512 images even at the edge. The #Meissonic# & #Menotico# series represents a milestone for Collov Labs as we pursue advancements in hashtag#spatialdesignintelligence#. Our goal is to create stunning, efficient text-to-image models trained with minimal data and parameters, paving the way for cost-effective pre-training that delivers enterprise-grade solutions. By collaborating with clients in real estate and home decor, Collov offers customizable, compliant, and cost-controlled pre-training solutions. Through our post-training pipeline, MIM models excel in downstream tasks, including: 🖼 Precision: Perfectly scaled image generation 💡 Visual Memory: Retaining 3D and 2D concepts with fidelity, like furniture, cabinetry, and flooring textures 🚀 Spatial Reasoning: Intelligent spatial arrangement and drag-and-drop editing capabilities We’re thrilled to contribute to the open-source community, sparking discussions on YouTube and Reddit from Japan, Korea, the U.S., India, the Middle East, and the U.K. Check out this YouTube tutorial on deploying these models efficiently at the edge: We invite you to explore and discuss our work! Our code and full paper are now available: 💻 Hugging Face: 📄 Full Paper:
Show more
Thanks to #SiliconValley101# for the invitation. Our CEO, @xiaozhg23 had a great discussion on the AI monetization and challenges with Queena Qiu , @0xPolyverse AI , and Keith Zhai, where we discussed that we have developed a unique pre-training and post-training system to streamline operations. Our fine-tuned training boxes for vendors allow for enhanced customization and training, helping us deliver tailored solutions that meet the unique needs of each client. 🏢 Key partners, including some biggest industry giants trust us to deliver innovative solutions that revolutionize how customers interact with design proposals in real-time. We are looking forward to pushing the boundaries of what hashtag#spaticlalintelligence# can achieve! #silliconvalley# #AI# #3D# #Spatialintelligence#
Show more
Thrilled to have been a part of the insightful discussions at GenAI in the Valley! 🎤💡 Sharing the stage with industry leaders like Queena Qiu, Keith Zhai and Jane to dive deep into AI commercialization and its future was a fantastic experience. 🚀
Show more