Instructions to use klue/roberta-small with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use klue/roberta-small with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="klue/roberta-small")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("klue/roberta-small") model = AutoModelForMaskedLM.from_pretrained("klue/roberta-small") - Inference
- Notebooks
- Google Colab
- Kaggle
Question about the model license (commercial use & redistribution)
#3
by siklop - opened
Hello, and thank you for releasing and maintaining this model.
We are considering using klue/roberta-small (and a fine-tuned derivative of it) in a commercial product, but the model card does not specify a license.
Could you please clarify the licensing terms of this model? Specifically:
Is commercial use permitted?
Is redistribution (including redistribution of fine-tuned derivatives) permitted?
Are there any attribution or other conditions we should follow?
If possible, it would be very helpful if you could add a license tag to the model card so the terms are clear for everyone.
Thank you very much for your time and for this valuable contribution to Korean NLP.