Kronos.Forecasting 0.1.0

Suggested Alternatives

Tsfm.Forecasting.Kronos

Additional Details

Renamed to Tsfm.Forecasting.Kronos. Identical code at the same version — the library now sits in a family covering several time-series foundation models, so each model's licence can differ. Update the namespace from Kronos.Forecasting to Tsfm.Forecasting.Kronos.

dotnet add package Kronos.Forecasting --version 0.1.0
                    
NuGet\Install-Package Kronos.Forecasting -Version 0.1.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Kronos.Forecasting" Version="0.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Kronos.Forecasting" Version="0.1.0" />
                    
Directory.Packages.props
<PackageReference Include="Kronos.Forecasting" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Kronos.Forecasting --version 0.1.0
                    
#r "nuget: Kronos.Forecasting, 0.1.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Kronos.Forecasting@0.1.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Kronos.Forecasting&version=0.1.0
                    
Install as a Cake Addin
#tool nuget:?package=Kronos.Forecasting&version=0.1.0
                    
Install as a Cake Tool

Kronos.Forecasting

Native .NET inference for Kronos, a pre-trained autoregressive model over K-line (OHLCVA) sequences. Runs on CPU or Apple GPU via TorchSharp.

ci

Targets .NET 10

NuGet packages:

  • Kronos.Forecasting NuGet
  • Kronos.Forecasting.Weights.Small NuGet
  • Kronos.Forecasting.Weights.Mini NuGet

Why this exists

Kronos is not a text LLM, so the existing .NET inference runtimes cannot load it. It pairs a Binary Spherical Quantization autoencoder with a decoder that has a hierarchical two-subtoken embedding, a dependency-aware cross-attention layer and two conditional heads. GGUF has no representation for any of that, which rules out llama.cpp-based runtimes; and the alternatives that do reach Apple's GPU only load GGUF. The architecture had to be ported.

Install

dotnet add package Kronos.Forecasting
dotnet add package Kronos.Forecasting.Weights.Small     # or .Mini
dotnet add package TorchSharp-cpu               # or a CUDA backend

The weights ship separately so that choosing a model is a package reference rather than a rebuild, and so this package stays small enough to be a reasonable dependency.

Choose your own backend. This package depends on TorchSharp but does not propagate a native runtime, which is platform- and accelerator-specific. TorchSharp-cpu resolves the right one per RID; see TorchSharp's download guidance for CUDA.

Use

using Kronos.Forecasting;
using Kronos.Forecasting.Weights;
using static TorchSharp.torch;

using var forecaster = KronosForecaster.Load(KronosSmall.Instance, new Device("mps"));
// Hosts typically probe: try "cuda", then "mps", then fall back to "cpu". Probe by
// placing a tensor and catching — the package name does not tell you what is available.

var rows = KronosForecaster.OutputCount(barCount, contextBars: 384);
Span<float> lean = new float[rows];
Span<int>   upCount = new int[rows];

forecaster.Infer(
    ohlcva,          // row-major [L x 6]: open, high, low, close, volume, amount
    barTimeMs,       // [L] Unix ms, one per bar
    lean, upCount, dispersion: default,
    contextBars: 384, horizon: 1, rollouts: 30,
    greedy: false, temperature: 1f, topP: 1f);

Buffers are caller-supplied and sized from OutputCount; a mismatch throws with the expected count rather than silently misaligning every row. dispersion may be empty, in which case the per-window standard deviation is not computed at all.

IKronosCheckpoint is the weights abstraction. EmbeddedCheckpoint (used by the weights packages) reads from assembly resources, so nothing resolves through configuration or the filesystem — which is what lets this sit behind a consumer forbidden from reading its environment. DirectoryCheckpoint loads a published snapshot layout for development.

Performance

Parity with PyTorch when using CPU and GPU (on Apple Silicon).

Things that will bite you

DisposeScope is mandatory. TorchSharp has no refcounting. Every forward pass this library performs is scoped; if you write your own, wrap it in using var _ = torch.NewDisposeScope(). Without it the Metal allocator thrashes and you will measure roughly a 10x slowdown that looks like a backend problem and is not.

Cached tensors need DetachFromDisposeScope(), not MoveToOuterDisposeScope(). The latter hands ownership to the caller's scope, which frees it on exit — so a cache is released after its first use.

Metal is present in the "cpu" backend. On Apple Silicon "cpu" means not CUDA. Probe by placing a tensor rather than trusting the name.

No key-value cache. Attention is recomputed over the whole context at every decode step, matching the reference implementation. A cache would change the arithmetic and forfeit checkable parity; it costs horizon full passes per rollout, which is affordable only for short horizons.

Parity

Verified stage by stage against the reference implementation on CPU and Metal. The tokenizer's embedding and first norm are bit-exact; relative error thereafter is 1e-7 to 1e-6, ordinary float32 accumulation.

It is not bit-identical, and does not claim to be: cross-implementation token disagreement extrapolates to near 1 in 15,000. Within one implementation the result is deterministic, which is usually the property that matters.

Sampling differs deliberately: this library draws per-bar uniforms from a SplitMix64 stream seeded by the bar's own timestamp and samples by inverse CDF, so a draw does not depend on how bars were grouped into batches. The reference seeds one stream per batch and is therefore not batch-invariant. Distributionally identical; the stream is not.

Attribution

The model architecture, tokenizer and reference implementation are the work of ShiYu (MIT). Published checkpoints are by NeoQuasar (MIT) and are redistributed unmodified in the Kronos.Forecasting.Weights.* packages, which record the revision each was built from. This project is an independent port and is not affiliated with or endorsed by either.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Kronos.Forecasting:

Package Downloads
Kronos.Forecasting.Weights.Small

Kronos-small (24.7M) weights with Kronos-Tokenizer-base for Kronos.Forecasting, embedded as assembly resources (~110 MB). Checkpoints redistributed unmodified from NeoQuasar (MIT) at the revision recorded in LICENSE.

Kronos.Forecasting.Weights.Mini

Kronos-mini (4.1M) weights with Kronos-Tokenizer-2k for Kronos.Forecasting, embedded as assembly resources (~31 MB). Checkpoints redistributed unmodified from NeoQuasar (MIT) at the revision recorded in LICENSE.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.1.0 154 8/29/2026 0.1.0 is deprecated.