tabpfn-time-series 1.0.4__tar.gz → 1.0.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {tabpfn_time_series-1.0.4 → tabpfn_time_series-1.0.5}/PKG-INFO +32 -1
- {tabpfn_time_series-1.0.4 → tabpfn_time_series-1.0.5}/README.md +30 -0
- {tabpfn_time_series-1.0.4 → tabpfn_time_series-1.0.5}/pyproject.toml +1 -0
- {tabpfn_time_series-1.0.4 → tabpfn_time_series-1.0.5}/tabpfn_time_series/predictor.py +2 -0
- {tabpfn_time_series-1.0.4 → tabpfn_time_series-1.0.5}/uv.lock +10 -12
- {tabpfn_time_series-1.0.4 → tabpfn_time_series-1.0.5}/.github/workflows/publish-release.yml +0 -0
- {tabpfn_time_series-1.0.4 → tabpfn_time_series-1.0.5}/.github/workflows/publish-test.yml +0 -0
- {tabpfn_time_series-1.0.4 → tabpfn_time_series-1.0.5}/.github/workflows/pull_request.yml +0 -0
- {tabpfn_time_series-1.0.4 → tabpfn_time_series-1.0.5}/.gitignore +0 -0
- {tabpfn_time_series-1.0.4 → tabpfn_time_series-1.0.5}/.pre-commit-config.yaml +0 -0
- {tabpfn_time_series-1.0.4 → tabpfn_time_series-1.0.5}/LICENSE.txt +0 -0
- {tabpfn_time_series-1.0.4 → tabpfn_time_series-1.0.5}/demo.ipynb +0 -0
- {tabpfn_time_series-1.0.4 → tabpfn_time_series-1.0.5}/ruff.toml +0 -0
- {tabpfn_time_series-1.0.4 → tabpfn_time_series-1.0.5}/tabpfn_time_series/__init__.py +0 -0
- {tabpfn_time_series-1.0.4 → tabpfn_time_series-1.0.5}/tabpfn_time_series/data_preparation.py +0 -0
- {tabpfn_time_series-1.0.4 → tabpfn_time_series-1.0.5}/tabpfn_time_series/defaults.py +0 -0
- {tabpfn_time_series-1.0.4 → tabpfn_time_series-1.0.5}/tabpfn_time_series/features/__init__.py +0 -0
- {tabpfn_time_series-1.0.4 → tabpfn_time_series-1.0.5}/tabpfn_time_series/features/auto_features.py +0 -0
- {tabpfn_time_series-1.0.4 → tabpfn_time_series-1.0.5}/tabpfn_time_series/features/basic_features.py +0 -0
- {tabpfn_time_series-1.0.4 → tabpfn_time_series-1.0.5}/tabpfn_time_series/features/feature_generator_base.py +0 -0
- {tabpfn_time_series-1.0.4 → tabpfn_time_series-1.0.5}/tabpfn_time_series/features/feature_transformer.py +0 -0
- {tabpfn_time_series-1.0.4 → tabpfn_time_series-1.0.5}/tabpfn_time_series/plot.py +0 -0
- {tabpfn_time_series-1.0.4 → tabpfn_time_series-1.0.5}/tabpfn_time_series/tabpfn_worker.py +0 -0
- {tabpfn_time_series-1.0.4 → tabpfn_time_series-1.0.5}/tabpfn_time_series/ts_dataframe.py +0 -0
- {tabpfn_time_series-1.0.4 → tabpfn_time_series-1.0.5}/tests/test_predictor.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: tabpfn_time_series
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.5
|
4
4
|
Summary: Zero-shot time series forecasting with TabPFNv2
|
5
5
|
Project-URL: Homepage, https://github.com/liam-sbhoo/tabpfn-time-series
|
6
6
|
Project-URL: Bug Tracker, https://github.com/liam-sbhoo/tabpfn-time-series/issues
|
@@ -18,6 +18,7 @@ Requires-Dist: python-dotenv>=1.1.0
|
|
18
18
|
Requires-Dist: pyyaml>=6.0.1
|
19
19
|
Requires-Dist: statsmodels>=0.14.5
|
20
20
|
Requires-Dist: tabpfn-client>=0.1.7
|
21
|
+
Requires-Dist: tabpfn-common-utils[telemetry-interactive]>=0.2.2
|
21
22
|
Requires-Dist: tabpfn>=2.0.9
|
22
23
|
Requires-Dist: tqdm
|
23
24
|
Provides-Extra: dev
|
@@ -98,3 +99,33 @@ uv pip install -e ".[dev]"
|
|
98
99
|
[](https://colab.research.google.com/github/PriorLabs/tabpfn-time-series/blob/main/demo.ipynb)
|
99
100
|
|
100
101
|
The demo should explain it all. 😉
|
102
|
+
|
103
|
+
## 📊 Anonymous Telemetry
|
104
|
+
|
105
|
+
This project collects **anonymous usage telemetry** by default.
|
106
|
+
|
107
|
+
The data is used exclusively to help us understand how the library is being used and to guide future improvements.
|
108
|
+
|
109
|
+
- **No personal data is collected**
|
110
|
+
- **No code, model inputs, or outputs are ever sent**
|
111
|
+
- **Data is strictly anonymous and cannot be linked to individuals**
|
112
|
+
|
113
|
+
### What we collect
|
114
|
+
We only collect high-level, non-identifying information such as:
|
115
|
+
- Package version
|
116
|
+
- Python version
|
117
|
+
- How often fit and inference are called, including simple metadata like the dimensionality of the input and the type of task (e.g., classification vs. regression) (:warning: never the data itself)
|
118
|
+
|
119
|
+
See the [Telemetry documentation](https://github.com/priorlabs/tabpfn/blob/main/TELEMETRY.md) for the full details of events and metadata.
|
120
|
+
|
121
|
+
This data is processed in compliance with the **General Data Protection Regulation (GDPR)** principles of data minimization and purpose limitation.
|
122
|
+
|
123
|
+
For more details, please see our [Privacy Policy](https://priorlabs.ai/privacy_policy/).
|
124
|
+
|
125
|
+
### How to opt out
|
126
|
+
If you prefer not to send telemetry, you can disable it by setting the following environment variable:
|
127
|
+
|
128
|
+
```bash
|
129
|
+
export TABPFN_DISABLE_TELEMETRY=1
|
130
|
+
```
|
131
|
+
---
|
@@ -62,3 +62,33 @@ uv pip install -e ".[dev]"
|
|
62
62
|
[](https://colab.research.google.com/github/PriorLabs/tabpfn-time-series/blob/main/demo.ipynb)
|
63
63
|
|
64
64
|
The demo should explain it all. 😉
|
65
|
+
|
66
|
+
## 📊 Anonymous Telemetry
|
67
|
+
|
68
|
+
This project collects **anonymous usage telemetry** by default.
|
69
|
+
|
70
|
+
The data is used exclusively to help us understand how the library is being used and to guide future improvements.
|
71
|
+
|
72
|
+
- **No personal data is collected**
|
73
|
+
- **No code, model inputs, or outputs are ever sent**
|
74
|
+
- **Data is strictly anonymous and cannot be linked to individuals**
|
75
|
+
|
76
|
+
### What we collect
|
77
|
+
We only collect high-level, non-identifying information such as:
|
78
|
+
- Package version
|
79
|
+
- Python version
|
80
|
+
- How often fit and inference are called, including simple metadata like the dimensionality of the input and the type of task (e.g., classification vs. regression) (:warning: never the data itself)
|
81
|
+
|
82
|
+
See the [Telemetry documentation](https://github.com/priorlabs/tabpfn/blob/main/TELEMETRY.md) for the full details of events and metadata.
|
83
|
+
|
84
|
+
This data is processed in compliance with the **General Data Protection Regulation (GDPR)** principles of data minimization and purpose limitation.
|
85
|
+
|
86
|
+
For more details, please see our [Privacy Policy](https://priorlabs.ai/privacy_policy/).
|
87
|
+
|
88
|
+
### How to opt out
|
89
|
+
If you prefer not to send telemetry, you can disable it by setting the following environment variable:
|
90
|
+
|
91
|
+
```bash
|
92
|
+
export TABPFN_DISABLE_TELEMETRY=1
|
93
|
+
```
|
94
|
+
---
|
@@ -8,6 +8,7 @@ from tabpfn_time_series.tabpfn_worker import (
|
|
8
8
|
MockTabPFN,
|
9
9
|
)
|
10
10
|
from tabpfn_time_series.defaults import TABPFN_TS_DEFAULT_CONFIG
|
11
|
+
from tabpfn_common_utils.telemetry import set_extension
|
11
12
|
|
12
13
|
logger = logging.getLogger(__name__)
|
13
14
|
|
@@ -18,6 +19,7 @@ class TabPFNMode(Enum):
|
|
18
19
|
MOCK = "tabpfn-mock"
|
19
20
|
|
20
21
|
|
22
|
+
@set_extension("time-series")
|
21
23
|
class TabPFNTimeSeriesPredictor:
|
22
24
|
"""
|
23
25
|
Given a TimeSeriesDataFrame (multiple time series), perform prediction on each time series individually.
|
@@ -2864,7 +2864,7 @@ wheels = [
|
|
2864
2864
|
|
2865
2865
|
[[package]]
|
2866
2866
|
name = "requests"
|
2867
|
-
version = "2.32.
|
2867
|
+
version = "2.32.5"
|
2868
2868
|
source = { registry = "https://pypi.org/simple" }
|
2869
2869
|
dependencies = [
|
2870
2870
|
{ name = "certifi" },
|
@@ -2872,9 +2872,9 @@ dependencies = [
|
|
2872
2872
|
{ name = "idna" },
|
2873
2873
|
{ name = "urllib3" },
|
2874
2874
|
]
|
2875
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
2875
|
+
sdist = { url = "https://files.pythonhosted.org/packages/c9/74/b3ff8e6c8446842c3f5c837e9c3dfcfe2018ea6ecef224c710c85ef728f4/requests-2.32.5.tar.gz", hash = "sha256:dbba0bac56e100853db0ea71b82b4dfd5fe2bf6d3754a8893c3af500cec7d7cf", size = 134517, upload-time = "2025-08-18T20:46:02.573Z" }
|
2876
2876
|
wheels = [
|
2877
|
-
{ url = "https://files.pythonhosted.org/packages/
|
2877
|
+
{ url = "https://files.pythonhosted.org/packages/1e/db/4254e3eabe8020b458f1a747140d32277ec7a271daf1d235b70dc0b4e6e3/requests-2.32.5-py3-none-any.whl", hash = "sha256:2462f94637a34fd532264295e186976db0f5d453d1cdd31473c85a6a161affb6", size = 64738, upload-time = "2025-08-18T20:46:00.542Z" },
|
2878
2878
|
]
|
2879
2879
|
|
2880
2880
|
[[package]]
|
@@ -3427,7 +3427,7 @@ dependencies = [
|
|
3427
3427
|
{ name = "pydantic-settings" },
|
3428
3428
|
{ name = "scikit-learn" },
|
3429
3429
|
{ name = "scipy" },
|
3430
|
-
{ name = "tabpfn-common-utils"
|
3430
|
+
{ name = "tabpfn-common-utils" },
|
3431
3431
|
{ name = "torch" },
|
3432
3432
|
{ name = "typing-extensions" },
|
3433
3433
|
]
|
@@ -3458,7 +3458,7 @@ wheels = [
|
|
3458
3458
|
|
3459
3459
|
[[package]]
|
3460
3460
|
name = "tabpfn-common-utils"
|
3461
|
-
version = "0.
|
3461
|
+
version = "0.2.2"
|
3462
3462
|
source = { registry = "https://pypi.org/simple" }
|
3463
3463
|
dependencies = [
|
3464
3464
|
{ name = "filelock" },
|
@@ -3466,17 +3466,13 @@ dependencies = [
|
|
3466
3466
|
{ name = "pandas" },
|
3467
3467
|
{ name = "platformdirs" },
|
3468
3468
|
{ name = "posthog" },
|
3469
|
+
{ name = "requests" },
|
3469
3470
|
{ name = "scikit-learn" },
|
3470
3471
|
{ name = "typing-extensions" },
|
3471
3472
|
]
|
3472
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
3473
|
+
sdist = { url = "https://files.pythonhosted.org/packages/cf/0a/dae8031fd9a478c0b6b682f1585d2e4e288727f569eb3316af3b981d1ec0/tabpfn_common_utils-0.2.2.tar.gz", hash = "sha256:d4a3b9acd7d36502ac75bfce549acda26aafbe9c1e7617052fbe1932c211d174", size = 1927582, upload-time = "2025-10-02T11:54:59.704Z" }
|
3473
3474
|
wheels = [
|
3474
|
-
{ url = "https://files.pythonhosted.org/packages/
|
3475
|
-
]
|
3476
|
-
|
3477
|
-
[package.optional-dependencies]
|
3478
|
-
telemetry-interactive = [
|
3479
|
-
{ name = "requests" },
|
3475
|
+
{ url = "https://files.pythonhosted.org/packages/7a/be/6307e7f8c55963aa74c72dbbe0e360b62a688a484f73227adf7cc1ddde02/tabpfn_common_utils-0.2.2-py3-none-any.whl", hash = "sha256:9ac650c252be49c34d12d210eceeeb3d9cdc7ac5396df7426e5b86b93ae5429e", size = 32104, upload-time = "2025-10-02T11:54:57.702Z" },
|
3480
3476
|
]
|
3481
3477
|
|
3482
3478
|
[[package]]
|
@@ -3492,6 +3488,7 @@ dependencies = [
|
|
3492
3488
|
{ name = "statsmodels" },
|
3493
3489
|
{ name = "tabpfn" },
|
3494
3490
|
{ name = "tabpfn-client" },
|
3491
|
+
{ name = "tabpfn-common-utils" },
|
3495
3492
|
{ name = "tqdm" },
|
3496
3493
|
]
|
3497
3494
|
|
@@ -3530,6 +3527,7 @@ requires-dist = [
|
|
3530
3527
|
{ name = "submitit", marker = "extra == 'dev'", specifier = ">=1.5.2" },
|
3531
3528
|
{ name = "tabpfn", specifier = ">=2.0.9" },
|
3532
3529
|
{ name = "tabpfn-client", specifier = ">=0.1.7" },
|
3530
|
+
{ name = "tabpfn-common-utils", extras = ["telemetry-interactive"], specifier = ">=0.2.2" },
|
3533
3531
|
{ name = "tqdm" },
|
3534
3532
|
{ name = "twine", marker = "extra == 'dev'" },
|
3535
3533
|
{ name = "wandb", marker = "extra == 'dev'", specifier = ">=0.19.8" },
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{tabpfn_time_series-1.0.4 → tabpfn_time_series-1.0.5}/tabpfn_time_series/data_preparation.py
RENAMED
File without changes
|
File without changes
|
{tabpfn_time_series-1.0.4 → tabpfn_time_series-1.0.5}/tabpfn_time_series/features/__init__.py
RENAMED
File without changes
|
{tabpfn_time_series-1.0.4 → tabpfn_time_series-1.0.5}/tabpfn_time_series/features/auto_features.py
RENAMED
File without changes
|
{tabpfn_time_series-1.0.4 → tabpfn_time_series-1.0.5}/tabpfn_time_series/features/basic_features.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|