• Joined on 2025-10-10

tabicl (2.1.1+tabaxiom.2)

Published 2026-07-11 09:02:27 +00:00 by olivier

Installation

pip install --index-url  tabicl

About this package

TabICL: A state-of-the-art tabular foundation model

test PyPI version Downloads

TabICLv2: A state-of-the-art tabular foundation model

This repository is the official implementation of TabICLv2 (ICML 2026) and TabICL (ICML 2025).

State-of-the-art accuracy even without hyperparameter tuning: TabICLv2 is the new state-of-the-art model for tabular classification and regression on the TabArena and TALENT benchmarks. It does not require hyperparameter tuning and still outperforms heavily tuned XGBoost, CatBoost, or LightGBM on TabArena on ~80% of datasets.

Easy to use: TabICL is pip-installable and scikit-learn compliant. It is also open source (including pre-training for v1), with a permissive license.

Speed: TabICL performs fit and predict jointly via a single forward pass through a pre-trained transformer model. For larger datasets, we recommend a GPU. On an H100 GPU, TabIClv2 can fit and predict a dataset with 50,000 samples and 100 features in under 10 seconds, which is 10x faster than TabPFN-2.5. Through KV caching, TabICL supports faster repeated inference on the same training data.

Scalability: TabICL shows excellent performance on benchmarks with 300 to 100,000 training samples and up to 2,000 features. It can scale to even larger datasets (e.g., 500K samples) through CPU and disk offloading, though its accuracy may degrade at some point.

Model comparison on TabArena

Installation

pip install tabicl

Optional dependencies can be installed as needed:

pip install tabicl[forecast]   # time series forecasting
pip install tabicl[shap]       # SHAP-based explainability
pip install tabicl[finetune]   # fine-tuning on a single dataset
pip install tabicl[pretrain]   # pre-training
pip install tabicl[all]        # everything

On Intel Macs, installing PyTorch via pip may fail. In that case, install it first with:

conda install pytorch -c pytorch

Then install tabicl as above.

Basic usage

from tabicl import TabICLClassifier, TabICLRegressor

clf = TabICLClassifier()
clf.fit(X_train, y_train)  # downloads checkpoint on first use, otherwise cheap
clf.predict(X_test)  # in-context learning happens here

reg = TabICLRegressor()
reg.fit(X_train, y_train)
reg.predict(X_test)

To speed up repeated inference on the same training data, enable KV caching. The cache is built during fit and reused across predict calls. Note that this consumes additional memory to store the cached projections, so consider the trade-off for your use case:

clf = TabICLClassifier(kv_cache=True)
clf.fit(X_train, y_train)  # caches key-value projections for training data
clf.predict(X_test)  # fast: only processes test data by reusing the cached context

Save and load a fitted classifier or regressor:

clf.save(
    "classifier.pkl",
    save_model_weights=False,  # if False, reload from checkpoint on load
    save_training_data=True,   # if True, include training data; if False, discard it (requires KV cache)
    save_kv_cache=True,        # if True and KV cache exists, save it
)
clf = TabICLClassifier.load("classifier.pkl")

When KV cache exists and is saved, you can set save_training_data=False to exclude cached training data, which may be useful for data privacy.

Advanced configuration

TabICL offers a set of parameters to customize its behavior. The following example shows all available parameters with their default values and brief descriptions:

from tabicl import TabICLClassifier

clf = TabICLClassifier(
    n_estimators=8,  # number of ensemble members, more = better but slower
    norm_methods=None,  # normalization methods to try
    feat_shuffle_method="latin",  # feature permutation strategy
    class_shuffle_method="shift",  # class permutation strategy
    outlier_threshold=4.0,  # z-score threshold for outlier detection and clipping
    softmax_temperature=0.9,  # temperature to control prediction confidence
    average_logits=True,  # average logits (True) or probabilities (False)
    support_many_classes=True,  # handle >10 classes automatically
    batch_size=8,  # ensemble members processed together, lower to save memory
    kv_cache=False,  # cache training data KV projections for faster repeated inference
    model_path=None,  # path to checkpoint, None downloads from Hugging Face
    allow_auto_download=True,  # auto-download checkpoint if not found locally
    checkpoint_version="tabicl-classifier-v2-20260212.ckpt",  # pretrained checkpoint version
    device=None,  # inference device, None auto-selects CUDA or CPU; specify "mps" for Apple Silicon
    use_amp="auto",  # automatic mixed precision for faster inference
    use_fa3="auto",  # Flash Attention 3 for Hopper GPUs (e.g. H100)
    offload_mode="auto",  # automatically decide when to use cpu/disk offloading
    disk_offload_dir=None,  # directory for disk offloading
    random_state=42,  # random seed for reproducibility
    n_jobs=None,  # number of PyTorch threads for CPU inference
    verbose=False,  # print detailed information during inference
    inference_config=None,  # fine-grained inference control for advanced users
)

TabICLRegressor accepts the same parameters except for the classification-specific ones: class_shuffle_method, softmax_temperature, average_logits, and support_many_classes.

Available models

Model Classification checkpoint Regression checkpoint
TabICLv2 (arXiv) tabicl-classifier-v2-20260212.ckpt (default) tabicl-regressor-v2-20260212.ckpt (default)
TabICLv1.1 (May 2025, no paper) tabicl-classifier-v1.1-20250506.ckpt
TabICLv1 (ICML 2025) tabicl-classifier-v1-20250208.ckpt
  • TabICLv2: Our state-of-the-art model, supporting both classification and regression. Strongly improved accuracy over v1 through better synthetic pre-training data, architectural improvements, and better pre-training, with comparable runtime.
  • TabICLv1.1: TabICLv1 post-trained on an early version of the v2 prior. Classification only.
  • TabICLv1: Original model. Classification only. TabICLv1 and v1.1 originally used n_estimators=32; we reduced the default to 8 afterwards.

Fine-tuning

Zero-shot in-context learning is TabICL's default, but when a single downstream dataset is important enough to spend a few minutes adapting to, FinetunedTabICLClassifier and FinetunedTabICLRegressor specialize the pretrained checkpoint with a full PyTorch training loop, including AdamW with a cosine-with-warmup schedule, gradient clipping, early stopping against a held-out split, and multi-GPU runs.

Install the fine-tune dependencies first:

pip install tabicl[finetune]

Usage

from tabicl import FinetunedTabICLClassifier

clf = FinetunedTabICLClassifier(
    epochs=50,                    # max passes over training data; early stopping may cut it short
    learning_rate=1e-5,           # AdamW LR
    n_estimators_finetune=2,      # ensemble members per training meta-batch
    n_estimators_validation=2,    # ensemble size for end-of-epoch validation
    n_estimators_inference=8,     # ensemble size of the fitted estimator used in predict()
    early_stopping=True,          # stop when val metric plateaus for `patience` epochs
    patience=10,                  # non-improving epochs tolerated before stopping
    eval_metric="roc_auc",        # classifier: "roc_auc" | "log_loss" | "accuracy"
    random_state=0,               # random seed
    verbose=True,                 # tqdm progress bar
)

clf.fit(X_train, y_train, X_val=X_val, y_val=y_val, output_dir="./ckpts")
y_pred = clf.predict(X_test)

FinetunedTabICLRegressor takes the same parameters (with eval_metric one of "mse" | "mae" | "r2"). See each class's docstring for the full surface.

The checkpoint file written to output_dir follows the pretraining checkpoint schema, so it loads directly back into the zero-shot estimators:

from tabicl import TabICLClassifier
clf = TabICLClassifier(model_path="ckpts/best.ckpt")
clf.fit(X_train, y_train)
clf.predict(X_test)

Multi-GPU fine-tuning is auto-detected under torchrun:

torchrun --nproc-per-node=2 finetune_script.py

The tutorial tutorials/finetune_classifier.py walks through the fine-tuning for a binary classification task.

Decision boundaries before and after fine-tuning

Time series forecasting

TabICL can be used for zero-shot time series forecasting via TabICLForecaster. Install the forecast dependencies first:

pip install tabicl[forecast]

TabICLForecaster accepts the following parameters:

from tabicl import TabICLForecaster

forecaster = TabICLForecaster(
    max_context_length=4096,  # max historical timesteps to use as context
    temporal_features=None,  # None = ["index", "datetime", "periodic"]; also accepts a list mixing string names and TimeTransform instances
    point_estimate="mean",  # point prediction method: "mean" or "median"
    tabicl_config=None,  # passed to TabICLRegressor; None uses default settings
)

The following example shows how it works for univariate forecasting:

import pandas as pd
from tabicl import TabICLForecaster
from tabicl.forecast import TimeSeriesDataFrame, plot_forecast

df = pd.read_csv(
    "https://autogluon.s3.amazonaws.com/datasets/timeseries/australian_electricity_subset/test.csv",
    parse_dates=["timestamp"],
)
data = TimeSeriesDataFrame.from_data_frame(df)

prediction_length = 96
selected_items = data.item_ids[:2]
train_data, test_data = data.train_test_split(prediction_length)

context_df = train_data.reset_index()
context_df = context_df[context_df["item_id"].isin(selected_items)]
test_df = test_data.reset_index()
test_df = test_df[test_df["item_id"].isin(selected_items)]
test_df = test_df.groupby("item_id").tail(prediction_length)

forecaster = TabICLForecaster(max_context_length=10240)
pred_df = forecaster.predict_df(context_df, prediction_length=prediction_length)
fig, axes = plot_forecast(context_df=context_df, pred_df=pred_df, test_df=test_df)
Runtimes for different hardware and sample sizes

TabICLForecaster is heavily inspired by TabPFN-TS. We may later improve it to enhance the ability of TabICL for time series forecasting.

Explainability

TabICL integrates with SHAP via tabicl.shap. It uses a single all-NaN row as the SHAP background, exploiting TabICL's native NaN handling so that masked features are genuinely removed from the model's perspective instead of being replaced by a reference value.

SHAP values

from sklearn.datasets import load_breast_cancer
from sklearn.model_selection import train_test_split
from tabicl import TabICLClassifier
from tabicl.shap import get_shap_values, plot_shap

X, y = load_breast_cancer(return_X_y=True)
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.8, random_state=42)

clf = TabICLClassifier()
clf.fit(X_train, y_train)

shap_values = get_shap_values(
    estimator=clf,                                       # fitted TabICLClassifier or TabICLRegressor
    X_test=X_test[:10],                                  # samples to explain
    attribute_names=load_breast_cancer().feature_names,  # feature names
)

plot_shap(shap_values)

get_shap_values also accepts any extra keyword arguments and forwards them to the underlying shap.Explainer.

Pre-training

Pre-training code (including synthetic data generation) is available for both TabICLv1 and TabICLv2.

Disclaimer: the TabICLv2 pre-training code has been vibe-migrated from the original (private) pre-training codebase into this repository. While the port has been carefully cross-checked against the original code and the released checkpoints, the training scripts have not yet been tested end-to-end to reproduce the original pre-training results.

The easiest way to pre-train is to run the stage scripts in the scripts folder, which contain the full recipes (they launch python -m tabicl.train under torchrun with all arguments set). Adjust the placeholder checkpoint paths, NUM_GPUS, and --n_jobs at the top of each script for your hardware, then run the three stages in order, e.g. for the TabICLv2 classifier:

bash scripts/train_v2_clf_stage1.sh
bash scripts/train_v2_clf_stage2.sh   # loads the stage-1 checkpoint
bash scripts/train_v2_clf_stage3.sh   # loads the stage-2 checkpoint

Available recipes:

By default, tabicl.train generates synthetic prior datasets on the fly in the DataLoader workers while training — this is how the TabICLv2 checkpoints were trained (and what the v2 scripts do). Alternatively, datasets can be pre-generated to disk with python -m tabicl.prior --save_dir /my/prior/dir --num_batches 100000 ... and loaded during training via --prior_dir, which is how TabICLv1 was trained (the v1 scripts show both variants).

Training supports classification (cross-entropy) and quantile regression (pinball loss, via --regression_method quantile), and both the AdamW (default) and Muon (--muon True) optimizers. See python -m tabicl.train --help for the full set of options.

A note on the v2 training entry point: the paper reports using cautious weight decay, which is available via --use_cautious_wd, but the released checkpoints were trained with it left False (it was not wired into Muon during the reference runs), so the v2 scripts keep it False to reproduce that behavior.

Nanotabicl: a minimal architecture implementation

We provide a minimal implementation of the TabICLv2 architecture here, for educational and experimental purposes.

FAQ

What is TabICL? TabICL is a tabular foundation model (like TabPFN). It uses in-context learning (ICL) to learn from new data in a single forward pass through a Transformer model: y_pred = model(X_train, y_train, X_test) (this is called inside predict()). It has acquired strong learning capabilities through pre-training on millions of synthetic datasets.

How fast is TabICL? On datasets with n training rows and m columns, the runtime complexity of TabICL (v1 and v2) is O(n^2 + nm^2). On datasets with many rows and columns, it can be 10x faster than TabPFN-2.5. On modern GPUs, TabICL can handle a million samples in a few minutes without RAM overflow thanks to CPU and disk offloading.

Runtimes for different hardware and sample sizes

What dataset sizes work well? TabICLv2 is pre-trained on datasets between 300 and 48K training samples. However, it can generalize to larger datasets to some extent, and we see good results even on some datasets with 600K samples. We have not tested if TabICL generalizes to datasets smaller than 300 samples.

Average rank vs. number of samples

What about the number of columns? TabICLv2 is pre-trained on datasets between 2 and 100 columns. We see good generalization to more columns and don't know where the limit is.

Average rank vs. number of features

Preprocessing

Simple built-in preprocessing

For X, TabICL accepts pandas dataframes or numpy arrays. It applies the following preprocessing:

  • Detect and ordinal encode categorical columns (including string, object, category, and boolean types). For numpy arrays, all columns have the same datatype (the one of the array). Columns with integers are detected as numerical.
  • Create a separate category for missing values in categorical features
  • Perform mean imputation for missing numerical values (encoded as NaN)
  • Outlier detection and removal
  • Feature scaling and normalization
  • Feature shuffling for ensemble diversity

Advanced data preprocessing with skrub skrub logo

Real-world datasets often contain complex heterogeneous data that benefits from more sophisticated preprocessing. For these scenarios, we recommend skrub, a powerful library designed specifically for advanced tabular data preparation.

Why use skrub?

  • Handles diverse data types (numerical, categorical, text, datetime, etc.)
  • Provides robust preprocessing for dirty data
  • Offers sophisticated feature engineering capabilities
  • Supports multi-table integration and joins

Installation

pip install skrub -U

Basic Integration

Use skrub's TableVectorizer to transform your raw data before passing it to TabICLClassifier:

from skrub import TableVectorizer
from tabicl import TabICLClassifier
from sklearn.pipeline import make_pipeline

pipeline = make_pipeline(
    TableVectorizer(low_cardinality="passthrough"),  # Automatically handles various data types
    TabICLClassifier()
)

pipeline.fit(X_train, y_train)  # X should be a DataFrame
predictions = pipeline.predict(X_test)

Citation

If you use TabICL for research purposes, please cite our papers for TabICL and TabICLv2:

@inproceedings{qu2025tabicl,
  title={Tab{ICL}: {A} Tabular Foundation Model for In-Context Learning on Large Data},
  author={Qu, Jingang and Holzm{\"u}ller, David and Varoquaux, Ga{\"e}l and Le Morvan, Marine},
  booktitle={International Conference on Machine Learning},
  year={2025}
}

@article{qu2026tabiclv2,
  title={{TabICLv2}: {A} better, faster, scalable, and open tabular foundation model},
  author={Qu, Jingang and Holzm{\"u}ller, David and Varoquaux, Ga{\"e}l and Le Morvan, Marine},
  booktitle={International Conference on Machine Learning},
  year={2026}
}

Contributors

Star history

Star History Chart

Requirements

Requires Python: >=3.10
Details
PyPI
2026-07-11 09:02:27 +00:00
4
Jingang Qu, David Holzmüller, Marine Le Morvan, Gaël Varoquaux
BSD 3-Clause License Copyright (c) 2025, Soda team @ Inria Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Code in the src/tabicl/forecast directory is currently derived work from TabPFN-TS https://github.com/PriorLabs/tabpfn-time-series As such it is under the following license: Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright 2025 Prior Labs GmbH Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
556 KiB
Assets (2)
Versions (4) View all
2.1.1+tabaxiom.4 2026-07-11
2.1.1+tabaxiom.3 2026-07-11
2.1.1+tabaxiom.2 2026-07-11
2.1.1+tabaxiom.1 2026-07-11