Initial commit 0b3976d
KornWtp commited on
How to use kornwtp/sup-consert-large with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("feature-extraction", model="kornwtp/sup-consert-large") # Load model directly
from transformers import AutoTokenizer, AutoModel
tokenizer = AutoTokenizer.from_pretrained("kornwtp/sup-consert-large")
model = AutoModel.from_pretrained("kornwtp/sup-consert-large")