initial commit 85808b8 verified
Anoymous commited on
How to use OkayestProgrammer/ChatQA-ModernBert-base with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("feature-extraction", model="OkayestProgrammer/ChatQA-ModernBert-base") # Load model directly
from transformers import AutoTokenizer, AutoModel
tokenizer = AutoTokenizer.from_pretrained("OkayestProgrammer/ChatQA-ModernBert-base")
model = AutoModel.from_pretrained("OkayestProgrammer/ChatQA-ModernBert-base")