Transformers How to use alexchen4ai/moe_expert with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("feature-extraction", model="alexchen4ai/moe_expert") # Load model directly
from transformers import AutoTokenizer, AutoModel
tokenizer = AutoTokenizer.from_pretrained("alexchen4ai/moe_expert")
model = AutoModel.from_pretrained("alexchen4ai/moe_expert")