Skip to content

Commit

Permalink
Prepared release 1.0.0 (#206)
Browse files Browse the repository at this point in the history
* updated changelog

Co-authored-by: Torsten Kilias <[email protected]>
  • Loading branch information
MarleneKress79789 and tkilias committed Apr 12, 2024
1 parent a7b100a commit 021d0cb
Showing 1 changed file with 23 additions and 7 deletions.
30 changes: 23 additions & 7 deletions doc/changes/changes_1.0.0.md
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -17,8 +36,5 @@ T.B.D

### Refactorings

- #147: Removed token_con from
Prediction UDFs

- #147: Removed token_con from Prediction UDFs

### Security

0 comments on commit 021d0cb

Please sign in to comment.