-
Notifications
You must be signed in to change notification settings - Fork 21
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
Automatically provision models when accessing URL first time #27
Comments
That would work quite nicely with the huggingface transformers library. modelname = 'bert-base-cased' |
We already use adapter for your transformer needs. I am currently working on v2 of this project, so I do not want to implement this and then archive the project. |
No problem, what's adapter? Is that something I can use now to implement external recommenders or is it a work in progress? |
Adapters are a way to efficiently finetune transformers. You do not fine tune the whole thing, but insert a small layer and finetune that. https://adapterhub.ml/ |
Thanks! |
It would be cool to add a function to ariadne so that you can just do something like this:
http://localhost:5000/ariadne/flair/sequencetagger/<modelname>
and then it just fetches the right model and that's it
The text was updated successfully, but these errors were encountered: