nowfound

Alternatives

Products that do what Skyrim – Open-source Large Weather Model (LWM) Zoo does

Hi HN, I'm Efe from Secondlaw AI. We are building physics-informed large AI models. Currently, we are focusing on weather modelling. To benchmark SOTA, we had to build a forecasting infra for all available large weather models and we could not find a solid tooling to do so, so we built Skyrim. Within <5 mins and <5 LOC you can run forecasts on par with global weather models that are run on 100K+ CPU HPCs! We are implementing more models & fine-tuning capabilities. Let us know if anything more we can add, also happy to answer any questions!

  1. 1GG

    A few days ago I found myself trying out GLM 5.2 and was really positively impressed. The capabilities and security I was getting from this LLM are similar to those I've gotten from models like Claude or GPT, and this really surprised me. But then I thought, "I wonder how it would work on a normal computer like mine," and above all, "I wonder if it would work without going into OOM on a computer like mine." So I started working with the help of agents to test this possibility. I started converting the model to int4, understanding MTP usage, and if possible implementing DSA for long context.…

    Jul 2026 · github.com

  2. 2IB

    Built a ~9M param LLM from scratch to understand how they actually work. Vanilla transformer, 60K synthetic conversations, ~130 lines of PyTorch. Trains in 5 min on a free Colab T4. The fish thinks the meaning of life is food. Fork it and swap the personality for your own character.

    Apr 2026 · github.com

  3. 3

    Predicting cyclone paths & intensity 15 days ahead

    2025

  4. 4
    Arkor142

    Fine-tune and Deploy Open-weight Models in TypeScript

    Jul 2026 · arkor.ai

  5. 5

    Calculate the GPU memory you need for LLM inference

    2025

  6. 6
    Ollama235

    The easiest way to run large language models locally

    2023

  7. 7OA

    Hi HN, we built world-model-optimizer, an open source tool to continually improve a specialized model for an agent. It does this by simulating production tool responses through text world modeling (similar to QwenAgentWorld, summary here https:&#x2F;&#x2F;x.com&#x2F;silennai&#x2F;status&#x2F;2073887455884058814). We can then use this to train a router for frontier, OS, and local models (use defaults or pick which ones to optimize against). wmo ingests agent traces, builds the simulation, embeds the traces, runs different models you choose against the simulation scenarios, and then uses a KNN…

    Jul 2026 · github.com

  8. 8

    Vibe-check many open-source and proprietary LLMs at once

    2024

  9. 9

    Google's most advanced and efficient forecasting model

    Nov 2025

  10. 10
    RunInfra156

    Describe the AI model you need and get an optimized AI

    Jul 2026 · runinfra.ai

  11. 11
    Dolly113

    Democratizing the magic of ChatGPT with open models

    2023

  12. 12
    Taylor AI118

    Fine-tune open source LLMs in minutes

    2023

  13. 13

    Connect AI agents to browser through raw CDP

    Apr 2026

  14. 14IR

    The Emotion Engine has 32 MB of RAM total, so the trick is streaming weights from CD-ROM one matrix at a time during the forward pass — only activations, KV cache and embeddings live in RAM. This means models bigger than the RAM can still run, they just read more from disc. Had to build a custom quantized format (PSNT), hack endianness, write a tokenizer pipeline, and most of the PS2 SDK from scratch (releasing that separately). The model itself is also custom — a 10M param Llama-style architecture I trained specifically for this. And it works. On real hardware.

    Mar 2026 · github.com

  15. 15RA

    Hi there, looking for feedback on my new project "Featherless.AI" The idea is to allow users to run all the models on hugging face instantly. Via the OpenAI API compatible endpoint. Why? Because its a real chore to download models and spin up GPUs, especially if you want to test multiple models. Not to mention GPUs cost multiple dollars an hour to rent. And if we want more people to use open source AI, we got to make it easier for them to try and play with all of them. So what if instead of spinning up dedicated GPUs per model (which is what every provider is doing) We can startup a LLM…

    2024 · featherless.ai

  16. 16HF

    We have a massive GPU cluster and developed our own infrastructure to manage the cluster and train massive models. There's how it works: 1. You upload the dataset with preconfigured format into HuggingFaсe [1]. 2. Choose your LLM (e.g. LLaMa 70B, Mistral 7B) 3. Place your submission into the queue 4. Wait for it to get trained. 5. Then you get your trained model there on HuggingFace. Essentially, why would we want to do it? 1. We already have an experience with training big LLMs. 2. We could achieve near-perfect infrastructure performance for training. 3. Sometimes GPUs have just nothing to…

    2023 · higgsfield.xyz

  17. 17IB

    I built a weather and hurricane tracking site for the Eastern Caribbean islands (https:&#x2F;&#x2F;dewedda.com). PHP, MySQL, Cloudflare, Visual Crossing API, Leaflet.js for maps. The interesting part wasn't the stack. It was realizing how much the interpretation layer matters when you're building for a specific region. Wind descriptions, "feels like" calculations, condition summaries, all tuned for temperate climates by default. I've been reworking them for the Eastern Caribbean audience. Wrote about what I learned: https:&#x2F;&#x2F;hydn.dev&#x2F;82-degrees-feels-like&#x2F;

    Apr 2026

  18. 18PT

    This was posted before but I'm quite pleased to share a major update for https:&#x2F;&#x2F;oikolab.com. We now have available seven decades of hourly weather data starting from 1950 for any location in the world, thanks to the recent publication of ERA5 reanalysis data from European Centre for Medium-Range Weather Forecasts (ECMWF). ERA5 is gap-free, gridded dataset generated using data assimilation method (https:&#x2F;&#x2F;en.wikipedia.org&#x2F;wiki&#x2F;Data_assimilation), similar to NWP models but with the benefit of hindsight. As far as we're aware of, we're the first weather data…

    2020

  19. 19BO

    Read the full blogpost at https:&#x2F;&#x2F;rach.codes&#x2F;blog&#x2F;Introducing-Bhumi (click on reader to see the technical breakdown!) AI inference should be fast, but in practice it’s painfully slow. Inference bottlenecks slow down LLM-powered chatbots and AI workflows everywhere. I built Bhumi to fix that. Bhumi is a Python library designed for developers, yet its performance-critical core is implemented in Rust (via PyO3) for near-native speed. This hybrid approach delivers up to 2.5x faster response times across providers like OpenAI, Anthropic, and Gemini—without changing the…

    2025 · bhumi.trilok.ai

  20. 20S1

    I wanted to build an inference provider for proprietary AI models, but I did not have a huge GPU farm. I started experimenting with Serverless AI inference, but found out that coldstarts were huge. I went deep into the research and put together an engine that loads large models from SSD to VRAM up to ten times faster than alternatives. It works with vLLM, and transformers, and more coming soon. With this project you can hot-swap entire large models (32B) on demand. Its great for: Serverless AI Inference Robotics On Prem deployments Local Agents And Its open source. Let me know if anyone…

    Nov 2025 · github.com

  21. 21LR

    I built localLLLM: a small community project for running local models. Live: https:&#x2F;&#x2F;locallllm.fly.dev The goal is simple: if someone has model + OS + GPU + RAM, they should get steps that actually work (ideally one liner) I need help populating and validating guides. If you run local models, please submit one working recipe (or report what failed). Would love to hear general feedback as well!

    Apr 2026 · locallllm.fly.dev

  22. 22CT

    I had been looking to try <500M parameter language models but you wouldn't find an API to try them anywhere, so I built this cloudflare hosted static website that hosts weights and built an inference runtime for these models that uses WebGPU and runs inference from your browser. These are only so useful in a multi-turn conversation but it's still interesting to see what you can pack in a <250mb model. I tried using ONNX versions earlier, but there were too many quirks of using them with language models and the TPS wasn't too impressive. Inspired by svenflow&#x2F;webgpu-gemma, I put my codex…

    May 2026 · chonklm.com

  23. 23

    Chat with 300+ AI models in one place with 20+ free

    Jul 2026 · chats-llm.com

  24. 24LS

    LLMStack is a low-code platform that can be used to build LLM apps, chatbots and integrate AI experiences into existing products&#x2F;workflows. It comes with everything out of the box that one needs to build LLM apps locally. It can also be used in a multi-tenant setting, making it available for everyone to use in an enterprise. Some highlights of the platform: - Chain multiple LLM models allowing for complex pipelines - Includes a vector database and necessary connectors to help enrich LLM responses with private data - App templates tailored to specific use cases to quickly build LLM apps…

    2023 · github.com

Ranked by how close each launch is in meaning, then by votes. Refine with a description →