Add model 03b17bd
Thomas De Decker commited on
How to use ml6team/keyphrase-extraction-kbir-kpcrowd with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="ml6team/keyphrase-extraction-kbir-kpcrowd") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("ml6team/keyphrase-extraction-kbir-kpcrowd")
model = AutoModelForTokenClassification.from_pretrained("ml6team/keyphrase-extraction-kbir-kpcrowd")