File size: 396 Bytes
c5a29a8
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
from transformers import pipeline
import streamlit as st
st.title("Resume Sorter")
st.write("Enter the skills from your resume and get suggested job titles.")

user_input = st.text_input("Enter your input text here")

clicked = st.button('Submit')

if clicked:
    model = pipeline(task="text-classification", model="Kanakmi/resume_sorter")
    st.write("Output:")
    st.write(model(user_input))