Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepared release 1.0.0 #206

Merged
merged 4 commits into from
Apr 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading