Skip to content

Commit abd1239

Browse files
authored
release: v0.0.25 (#333)
* chore: bump version 0.0.25 * docs: release changelog * fix: sort uv lock * fix: nb
1 parent 5e1510b commit abd1239

5 files changed

Lines changed: 724 additions & 685 deletions

File tree

docs/changelogs/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
Welcome to the TimeCopilot Changelog. Here, you will find a comprehensive list of all the changes, updates, and improvements made to the TimeCopilot project. This section is designed to keep you informed about the latest features, bug fixes, and enhancements as we continue to develop and refine the TimeCopilot experience. Stay tuned for regular updates and feel free to explore the details of each release below.
44

55

6+
- [v0.0.25](v0.0.25.md)
67
- [v0.0.24](v0.0.24.md)
78
- [v0.0.23](v0.0.23.md)
89
- [v0.0.22](v0.0.22.md)

docs/changelogs/v0.0.25.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
### Features
2+
3+
* **TimeGPT finetuning**: Finetuning is now supported for TimeGPT. You can adapt the pre-trained model to your data before forecasting via `TimeGPTFinetuningConfig`, with options for loss function and finetuning depth. See [#332](https://github.com/TimeCopilot/timecopilot/pull/332) and the [Finetuning Foundation Models](https://timecopilot.dev/examples/finetuning/) example for a full walkthrough.
4+
5+
```python
6+
import pandas as pd
7+
from timecopilot.models.foundation.timegpt import TimeGPT, TimeGPTFinetuningConfig
8+
9+
df = pd.read_csv(
10+
"https://timecopilot.s3.amazonaws.com/public/data/events_pageviews.csv",
11+
parse_dates=["ds"],
12+
)
13+
14+
model = TimeGPT(
15+
finetuning_config=TimeGPTFinetuningConfig(
16+
finetune_steps=10,
17+
finetune_loss="mse",
18+
),
19+
alias="TimeGPT-finetuned",
20+
)
21+
```
22+
23+
### Documentation
24+
25+
* **Finetuning evaluation example**: Added a finetuning evaluation section to the [Finetuning Foundation Models](https://timecopilot.dev/examples/finetuning/) notebook, comparing MAPE across different `finetune_steps` values via cross-validation. See [#326](https://github.com/TimeCopilot/timecopilot/pull/326).
26+
27+
---
28+
29+
**Full Changelog**: https://github.com/TimeCopilot/timecopilot/compare/v0.0.24...v0.0.25

0 commit comments

Comments
 (0)