Publish champion checkpoint step_1000 (eval_accuracy 0.710) with benchmark results eb9cdf0
SentinelLM-Deploy commited on
How to use qf-iquest/SentinelLM-ProdDeploy with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("feature-extraction", model="qf-iquest/SentinelLM-ProdDeploy") # Load model directly
from transformers import AutoTokenizer, AutoModel
tokenizer = AutoTokenizer.from_pretrained("qf-iquest/SentinelLM-ProdDeploy")
model = AutoModel.from_pretrained("qf-iquest/SentinelLM-ProdDeploy", device_map="auto")