4 comments

  • A4ET8a8uTh0_v26 minutes ago
    Looking at the table, I will admit that I don&#x27;t get most of the use cases ( maybe with exception of comparison shopping ( gather info ), but are people really &#x27;outsourcing&#x27; shopping? Am I really that much outside what &#x27;normal&#x27; consumers do these days?<p>Task Segment Tasks SoM GPT-4o-0513 SoM o3-mini SoM GPT-4o GLM-4.1V-9B OAI Comp-Use UI-TARS-1.5 Fara-7B Single-Site Tasks Shopping 56 62.5 71.4 38.1 31.0 42.3 41.1 52.4 Flights 51 60.1 39.2 11.1 10.5 17.6 10.5 37.9 Hotels 52 68.6 56.4 31.4 19.9 26.9 35.3 53.8 Restaurants 52 67.9 59.6 47.4 32.1 35.9 22.4 47.4 Activities 80 70.4 62.9 41.7 26.3 30.4 9.6 36.3 Ticketing 57 58.5 56.7 37.4 35.7 49.7 30.4 38.6 Real Estate 48 34.0 17.4 20.1 16.0 9.0 9.7 23.6 Jobs&#x2F;Careers 50 49.3 44.0 32.7 22.7 20.7 20.7 28.0 Multi-Step Tasks Shopping List (2 items) 51 66.0 62.7 17.0 7.8 34.0 20.9 49.0 Comparison Shopping 57 67.3 59.1 27.5 22.8 1.2 8.8 32.7 Compositional Tasks 55 51.5 39.4 26.7 17.0 10.3 9.1 23.0 Overall
  • stan_kirdey1 hour ago
    * fine tuned Qwen-7B
    • donbox1 hour ago
      So.. the tables are really turning?
  • codezero1 hour ago
    Are there any agentic models like this that would work for controlling input in arbitrary video games? I&#x27;ve been wanting to have an AI play Kerbal Space Program because I think it would just be pretty hilarious.
    • wmf48 minutes ago
      <a href="https:&#x2F;&#x2F;deepmind.google&#x2F;blog&#x2F;sima-2-an-agent-that-plays-reasons-and-learns-with-you-in-virtual-3d-worlds&#x2F;" rel="nofollow">https:&#x2F;&#x2F;deepmind.google&#x2F;blog&#x2F;sima-2-an-agent-that-plays-reas...</a><p>(not a local model)
    • lawlessone30 minutes ago
      i&#x27;m curious what would happen if you got it to play online poker...
    • jauntywundrkind52 minutes ago
      I might suggest looking at Alibaba&#x27;s open source AgentEvolver. It doesn&#x27;t specifically target video games, but it&#x27;s an agentic system designed around a more OODA loop evolutionary system than the kind of train&#x2F;inference system, has potential, could be exciting to see.<p>I like how they classifythr sub problems of their work. Environment&#x2F; self questioning -&gt; task &#x2F; self questioning -&gt; trajectory &#x2F; self evaluation. OODA-esque.<p><a href="https:&#x2F;&#x2F;arxiv.org&#x2F;abs&#x2F;2511.10395" rel="nofollow">https:&#x2F;&#x2F;arxiv.org&#x2F;abs&#x2F;2511.10395</a> <a href="https:&#x2F;&#x2F;github.com&#x2F;modelscope&#x2F;AgentEvolver" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;modelscope&#x2F;AgentEvolver</a> with thanks to Sung Kim who has been a great feed <a href="https:&#x2F;&#x2F;bsky.app&#x2F;profile&#x2F;sungkim.bsky.social&#x2F;post&#x2F;3m5xkgttk3k2b" rel="nofollow">https:&#x2F;&#x2F;bsky.app&#x2F;profile&#x2F;sungkim.bsky.social&#x2F;post&#x2F;3m5xkgttk3...</a>
  • maartenh1 hour ago
    How much VRAM would this require, if I would want to run this locally?<p>I bought a 12GB Nvidia card a year ago. In general I&#x27;m having a hard time to find the actual required hardware specs for any self hosted AI model. Any tips&#x2F;suggestions&#x2F;recommended resources for that?
    • daemonologist27 minutes ago
      12GB will be sufficient to run a quantized version, provided you&#x27;re not running anything else memory-hungry on the GPU.<p>You&#x27;re not finding hardware specs because there are a lot of variables at play - the degree to which the weights are quantized, how much space you want to set aside for the KV cache, extra memory needed for multimodal features, etc.<p>My rule of thumb is 1 byte per parameter to be comfortable (running a quantization with somewhere between 4.5 and 6 bits per parameter and leaving some room for the cache and extras), so 7 GB for 7 billion parameters. If you need a really large context you&#x27;ll need more; if you want to push it you can get away with a little less.
    • nsingh21 hour ago
      One quick way to estimate a lower bound is to take the number of parameters and multiply it with the bits per parameter. So a model with 7 billion parameters running with float8 types would be ~7 GB to load at a <i>minimum</i>. The attention mechanism would require more on top of that, and depends on the size of the context window.<p>You&#x27;ll also need to load inputs (images in this case) onto the GPU memory, and that depends on the image resolution and batch size.
    • selcuka28 minutes ago
      I use LMStudio for running models locally (macOS) and it tries to estimate whether the model would fit in my GPU memory (which is the same thing as main memory for Macs).<p>The Q4_K_S quantized version of Microsoft Fara 7B is a 5.8GB download. I&#x27;m pretty sure it would work on a 12GB Nvidia card. Even the Q8 one (9.5GB) could work.