test-llm / main.py
Ahmed Mahdi Saleh
Upload folder using huggingface_hub
a53abed verified
raw
history blame
132 Bytes
from transformers import pipeline
classifier = pipeline("sentiment-analysis")
result = classifier("Hello, World!")
print(result)