From 4552008b7d75971f90835810a54f02c99461797f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marlene=20Kre=C3=9F?= Date: Thu, 11 Apr 2024 11:24:19 +0200 Subject: [PATCH] Prepared release 1.0.0 (#206) * updated changelog Co-authored-by: Torsten Kilias --- doc/changes/changes_1.0.0.md | 30 +++++++++++++++++++++++------- 1 file changed, 23 insertions(+), 7 deletions(-) diff --git a/doc/changes/changes_1.0.0.md b/doc/changes/changes_1.0.0.md index 5a20bfba..1d8fde5d 100644 --- a/doc/changes/changes_1.0.0.md +++ b/doc/changes/changes_1.0.0.md @@ -1,10 +1,29 @@ -# Transformers Extension 1.0.0, T.B.D +# Transformers Extension 1.0.0, 2024-04-11 -Code name: T.B.D +Code name: Local model loading ## Summary -T.B.D + +In this release, we integrated a new model loading functionality which means downloaded models will now be saved +in the BucketFS. This means, the Prediction UDFs do not connect to the internet to look for model updates. There are also documentation updates. + +### Breaking API changes + +The change in the model loading functionality means the API for the Prediction UDFs has changed. +The 'token_conn' parameter was removed from the UDF calls. You can now call the UDFs +as follows (Example case for the filling mask udf): + +```sql +SELECT TE_FILLING_MASK_UDF( + device_id, + bucketfs_conn, + sub_dir, + model_name, + text_data, + top_k +) +``` ### Features @@ -17,8 +36,5 @@ T.B.D ### Refactorings -- #147: Removed token_con from - Prediction UDFs - +- #147: Removed token_con from Prediction UDFs -### Security