Transformers How to use LHRS-UM-FERI/MENTHOS-logparse with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="LHRS-UM-FERI/MENTHOS-logparse") # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("LHRS-UM-FERI/MENTHOS-logparse", dtype="auto")