Spaces:
Sleeping
Sleeping
File size: 691 Bytes
b560784 a97191b 7850de7 e43a9a5 00956db e43a9a5 bf71f96 b560784 bf71f96 0fd3349 e543504 bf71f96 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import streamlit as st
from transformers.pipelines import pipeline
# Use a pipeline as a high-level helper
classifier = pipeline("zero-shot-classification", model="knowledgator/comprehend_it-base")
candidate_labels = ['Lecture quality','Positive lecture quality','Negative lecture quality', 'lecturer teaching strength', 'assignments not given', 'assignments given',' positve comments on lecturers teaching venue','negative comments on lecturers teaching venue',' Lecturers test and exam grading']
sequence_to_classify = "I hate Mr Thomas class, he doesn't teach well and he doesn't give assignments"
st.write(classifier(sequence_to_classify, candidate_labels, multi_label=True))
|