Time Series Forecasting
Transformers
Safetensors
Timer-S1
text-generation
time series
time-series
forecasting
foundation models
pretrained models
time series foundation models
quantized
4-bit precision
bitsandbytes
unofficial
custom_code
Instructions to use geetu040/Timer-S1-quantized-4bit with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use geetu040/Timer-S1-quantized-4bit with Transformers:
# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("geetu040/Timer-S1-quantized-4bit", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
| # Copyright (c) 2025 ByteDance Ltd. and/or its affiliates | |
| # 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. | |
| from typing import List | |
| from transformers import PretrainedConfig | |
| class TimerS1Config(PretrainedConfig): | |
| model_type = "Timer-S1" | |
| keys_to_ignore_at_inference = ["past_key_values"] | |
| def __init__( | |
| self, | |
| input_token_len: int = 16, | |
| hidden_size: int = 1024, | |
| intermediate_size: int = 4096, | |
| output_token_lens: List[int] = [16], | |
| num_hidden_layers: int = 24, | |
| num_attention_heads: int = 16, | |
| hidden_act: str = "silu", | |
| use_cache: bool = True, | |
| rope_theta: int = 10000, | |
| dropout_rate: float = 0.1, | |
| initializer_range: float = 0.02, | |
| max_position_embeddings: int = 12800, | |
| quantiles: List[float] = [0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9], | |
| num_experts: int = 32, | |
| num_experts_per_token: int = 2, | |
| # MTP configuration | |
| num_mtp_tokens: int = 16, | |
| **kwargs, | |
| ): | |
| self.input_token_len = input_token_len | |
| self.hidden_size = hidden_size | |
| self.intermediate_size = intermediate_size | |
| self.num_hidden_layers = num_hidden_layers | |
| self.num_attention_heads = num_attention_heads | |
| self.hidden_act = hidden_act | |
| self.output_token_lens = output_token_lens | |
| self.use_cache = use_cache | |
| self.rope_theta = rope_theta | |
| self.dropout_rate = dropout_rate | |
| self.initializer_range = initializer_range | |
| self.max_position_embeddings = max_position_embeddings | |
| self.quantiles = quantiles | |
| self.num_experts = num_experts | |
| self.num_experts_per_token = num_experts_per_token | |
| # MTP configuration | |
| self.num_mtp_tokens = num_mtp_tokens | |
| super().__init__(**kwargs) |