• bitcoinBitcoin(BTC)$83,959.00-0.33%
  • ethereumEthereum(ETH)$2,690.130.05%
  • tetherTether(USDT)$1.000.02%
  • binancecoinBNB(BNB)$774.47-0.55%
  • rippleXRP(XRP)$1.572.60%
  • usd-coinUSDC(USDC)$1.000.01%
  • solanaSolana(SOL)$121.533.95%
  • tronTRON(TRX)$0.337483-0.87%
  • zcashZcash(ZEC)$1,550.810.27%
  • Figure HelocFigure Heloc(FIGR_HELOC)$1.03-0.83%
  • HyperliquidHyperliquid(HYPE)$91.47-2.91%
  • dogecoinDogecoin(DOGE)$0.0981212.21%
  • moneroMonero(XMR)$559.681.07%
  • chainlinkChainlink(LINK)$13.885.35%
  • whitebitWhiteBIT Coin(WBT)$83.87-0.58%
  • USDSUSDS(USDS)$1.000.00%
  • cardanoCardano(ADA)$0.2550922.95%
  • RainRain(RAIN)$0.0121550.57%
  • leo-tokenLEO Token(LEO)$8.82-1.33%
  • stellarStellar(XLM)$0.2196853.48%
  • bitcoin-cashBitcoin Cash(BCH)$340.621.46%
  • nearNEAR Protocol(NEAR)$5.066.68%
  • uniswapUniswap(UNI)$9.613.45%
  • litecoinLitecoin(LTC)$71.04-0.31%
  • CantonCanton(CC)$0.12934013.41%
  • Ethena USDeEthena USDe(USDE)$1.000.01%
  • suiSui(SUI)$1.1512.49%
  • avalanche-2Avalanche(AVAX)$10.491.06%
  • daiDai(DAI)$1.000.01%
  • USD1USD1(USD1)$1.000.02%
  • hedera-hashgraphHedera(HBAR)$0.0945121.97%
  • the-open-networkGram (prev. Toncoin)(GRAM)$1.430.67%
  • BittensorBittensor(TAO)$308.473.92%
  • BitwayBitway(BTW)$1.2921.50%
  • shiba-inuShiba Inu(SHIB)$0.0000061.35%
  • crypto-com-chainCronos(CRO)$0.0656884.05%
  • Global DollarGlobal Dollar(USDG)$1.000.01%
  • MemeCoreMemeCore(M)$1.19-2.10%
  • paypal-usdPayPal USD(PYUSD)$1.000.01%
  • tether-goldTether Gold(XAUT)$4,290.460.59%
  • OndoOndo(ONDO)$0.556.60%
  • EthenaEthena(ENA)$0.26091717.08%
  • okbOKB(OKB)$120.570.91%
  • Ripple USDRipple USD(RLUSD)$1.000.00%
  • Circle USYCCircle USYC(USYC)$1.140.03%
  • aaveAave(AAVE)$152.894.90%
  • BlackRock USD Institutional Digital Liquidity FundBlackRock USD Institutional Digital Liquidity Fund(BUIDL)$1.000.00%
  • Ondo US Dollar YieldOndo US Dollar Yield(USDY)$1.15-0.05%
  • mantleMantle(MNT)$0.67-2.25%
  • polkadotPolkadot(DOT)$1.192.32%
TradePoint.io
  • Main
  • AI & Technology
  • Stock Charts
  • Market & News
  • Business
  • Finance Tips
  • Trade Tube
  • Blog
  • Shop
No Result
View All Result
TradePoint.io
No Result
View All Result

Thinking Machines Lab Makes Tinker Generally Available: Adds Kimi K2 Thinking And Qwen3-VL Vision Input

December 17, 2025
in AI & Technology
Reading Time: 6 mins read
A A
Thinking Machines Lab Makes Tinker Generally Available: Adds Kimi K2 Thinking And Qwen3-VL Vision Input
ShareShareShareShareShare

Thinking Machines Lab has moved its Tinker training API into general availability and added 3 major capabilities, support for the Kimi K2 Thinking reasoning model, OpenAI compatible sampling, and image input through Qwen3-VL vision language models. For AI engineers, this turns Tinker into a practical way to fine tune frontier models without building distributed training infrastructure.

What Tinker Actually Does?

Tinker is a training API that focuses on large language model fine tuning and hides the heavy lifting of distributed training. You write a simple Python loop that runs on a CPU only machine. You define the data or RL environment, the loss, and the training logic. The Tinker service maps that loop onto a cluster of GPUs and executes the exact computation you specify.

YOU MAY ALSO LIKE

Apple’s HomePod Mini 2 Will Reportedly Come In New Colors, But Feature A Similar Design

Aikido Security Releases Altar-1: An Open-Weight Security Model Pruned From GLM-5.3 to 328 GB

The API exposes a small set of primitives, such as forward_backward to compute gradients, optim_step to update weights, sample to generate outputs, and functions for saving and loading state. This keeps the training logic explicit for people who want to implement supervised learning, reinforcement learning, or preference optimization, but do not want to manage GPU failures and scheduling.

Tinker uses low rank adaptation, LoRA, rather than full fine tuning for all supported models. LoRA trains small adapter matrices on top of frozen base weights, which reduces memory and makes it practical to run repeated experiments on large mixture of experts models in the same cluster.

General Availability and Kimi K2 Thinking

The flagship change in the December 2025 update is that Tinker no longer has a waitlist. Anyone can sign up, see the current model lineup and pricing, and run cookbook examples directly.

On the model side, users can now fine tune moonshotai/Kimi-K2-Thinking on Tinker. Kimi K2 Thinking is a reasoning model with about 1 trillion total parameters in a mixture of experts architecture. It is designed for long chains of thought and heavy tool use, and it is currently the largest model in the Tinker catalog.

In the Tinker model lineup, Kimi K2 Thinking appears as a Reasoning MoE model, alongside Qwen3 dense and mixture of experts variants, Llama-3 generation models, and DeepSeek-V3.1. Reasoning models always produce internal chains of thought before the visible answer, while instruction models focus on latency and direct responses.

OpenAI Compatible Sampling While Training

Tinker already had a native sampling interface through its SamplingClient. The typical inference pattern builds a ModelInput from token ids, passes SamplingParams, and calls sample to get a future that resolves to outputs

The new release adds a second path that mirrors the OpenAI completions interface. A model checkpoint on Tinker can be referenced through a URI like:

Copy CodeCopiedUse a different Browser
response = openai_client.completions.create(
    model="tinker://0034d8c9-0a88-52a9-b2b7-bce7cb1e6fef:train:0/sampler_weights/000080",
    prompt="The capital of France is",
    max_tokens=20,
    temperature=0.0,
    stop=["\n"],
)

Vision Input With Qwen3-VL On Tinker

The second major capability is image input. Tinker now exposes 2 Qwen3-VL vision language models, Qwen/Qwen3-VL-30B-A3B-Instruct and Qwen/Qwen3-VL-235B-A22B-Instruct. They are listed in the Tinker model lineup as Vision MoE models and are available for training and sampling through the same API surface.

To send an image into a model, you construct a ModelInput that interleaves an ImageChunk with text chunks. The research blog uses the following minimal example:

Copy CodeCopiedUse a different Browser
model_input = tinker.ModelInput(chunks=[
    tinker.types.ImageChunk(data=image_data, format="png"),
    tinker.types.EncodedTextChunk(tokens=tokenizer.encode("What is this?")),
])

Here image_data is raw bytes and format identifies the encoding, for example png or jpeg. You can use the same representation for supervised learning and for RL fine tuning, which keeps multimodal pipelines consistent at the API level. Vision inputs are fully supported in Tinker’s LoRA training setup.

https://thinkingmachines.ai/blog/tinker-general-availability/

Qwen3-VL Versus DINOv2 On Image Classification

To show what the new vision path can do, the Tinker team fine tuned Qwen3-VL-235B-A22B-Instruct as an image classifier. They used 4 standard datasets:

  • Caltech 101
  • Stanford Cars
  • Oxford Flowers
  • Oxford Pets

Because Qwen3-VL is a language model with visual input, classification is framed as text generation. The model receives an image and generates the class name as a text sequence.

As a baseline, they fine tuned a DINOv2 base model. DINOv2 is a self supervised vision transformer that encodes images into embeddings and is often used as a backbone for vision tasks. For this experiment, a classification head is attached on top of DINOv2 to predict a distribution over the N labels in each dataset.

Both Qwen3-VL-235B-A22B-Instruct and DINOv2 base are trained using LoRA adapters within Tinker. The focus is data efficiency. The experiment sweeps the number of labeled examples per class, starting from only 1 sample per class and increasing. For each setting, the team measures classification accuracy.

Key Takeaways

  1. Tinker is now generally available, so anyone can sign up and fine tune open weight LLMs through a Python training loop while Tinker handles the distributed training backend.
  2. The platform supports Kimi K2 Thinking, a 1 trillion parameter mixture of experts reasoning model from Moonshot AI, and exposes it as a fine tunable reasoning model in the Tinker lineup.
  3. Tinker adds an OpenAI compatible inference interface, which lets you sample from in training checkpoints using a tinker://… model URI through standard OpenAI style clients and tooling.
  4. Vision input is enabled through Qwen3-VL models, Qwen3-VL 30B and Qwen3-VL 235B, so developers can build multimodal training pipelines that combine ImageChunk inputs with text using the same LoRA based API.
  5. Thinking Machines demonstrates that Qwen3-VL 235B, fine tuned on Tinker, achieves stronger few shot image classification performance than a DINOv2 base baseline on datasets such as Caltech 101, Stanford Cars, Oxford Flowers, and Oxford Pets, highlighting the data efficiency of large vision language models.

The post Thinking Machines Lab Makes Tinker Generally Available: Adds Kimi K2 Thinking And Qwen3-VL Vision Input appeared first on MarkTechPost.

Credit: Source link

ShareTweetSendSharePin

Related Posts

Apple’s HomePod Mini 2 Will Reportedly Come In New Colors, But Feature A Similar Design
AI & Technology

Apple’s HomePod Mini 2 Will Reportedly Come In New Colors, But Feature A Similar Design

September 25, 2026
Aikido Security Releases Altar-1: An Open-Weight Security Model Pruned From GLM-5.3 to 328 GB
AI & Technology

Aikido Security Releases Altar-1: An Open-Weight Security Model Pruned From GLM-5.3 to 328 GB

September 25, 2026
Perplexity Trains Its Computer Agent on Real Mistakes With Hint-Guided Self-Distillation
AI & Technology

Perplexity Trains Its Computer Agent on Real Mistakes With Hint-Guided Self-Distillation

September 25, 2026
Microsoft’s Copilot App Adds Office, Natural Coding And Automation
AI & Technology

Microsoft’s Copilot App Adds Office, Natural Coding And Automation

September 25, 2026
Next Post
New photos released showing Jeffrey Epstein with powerful men

New photos released showing Jeffrey Epstein with powerful men

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Search

No Result
View All Result
Family First credit union CEO out after ‘Lake America’ AI photo

Family First credit union CEO out after ‘Lake America’ AI photo

September 25, 2026
Sen. Ted Cruz comments on possible 2028 presidential run

Sen. Ted Cruz comments on possible 2028 presidential run

September 21, 2026
NBC Nightly News with Tom Llamas Full Episode – Aug. 27

NBC Nightly News with Tom Llamas Full Episode – Aug. 27

September 22, 2026

About

Learn more

Our Services

Legal

Privacy Policy

Terms of Use

Bloggers

Learn more

Article Links

Contact

Advertise

Ask us anything

©2020- TradePoint.io - All rights reserved!

Tradepoint.io, being just a publishing and technology platform, is not a registered broker-dealer or investment adviser. So we do not provide investment advice. Rather, brokerage services are provided to clients of Tradepoint.io by independent SEC-registered broker-dealers and members of FINRA/SIPC. Every form of investing carries some risk and past performance is not a guarantee of future results. “Tradepoint.io“, “Instant Investing” and “My Trading Tools” are registered trademarks of Apperbuild, LLC.

This website is operated by Apperbuild, LLC. We have no link to any brokerage firm and we do not provide investment advice. Every information and resource we provide is solely for the education of our readers. © 2020 Apperbuild, LLC. All rights reserved.

No Result
View All Result
  • Main
  • AI & Technology
  • Stock Charts
  • Market & News
  • Business
  • Finance Tips
  • Trade Tube
  • Blog
  • Shop

© 2023 - TradePoint.io - All Rights Reserved!