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 1 commit
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
31 changes: 24 additions & 7 deletions doc/changes/changes_1.0.0.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,30 @@
# Transformers Extension 1.0.0, T.B.D
# Transformers Extension 1.0.0, 2024-04-05

Code name: T.B.D
Code name: Local model loading


## Summary
T.B.D

In this Release we integrated new model load functionality which means downloaded models will now be saved
in the bucketFS, meaning you can now use pretrained models without connecting to the internet as
long as you have saved them previously. There are also documentation updates.

### Breaking API changes

The change in the model loading functionality means the API of calling a model 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 +37,5 @@ T.B.D

### Refactorings

- #147: Removed token_con from
Prediction UDFs

- #147: Removed token_con from Prediction UDFs

### Security
Loading