Spaces:
Sleeping
Sleeping
File size: 1,410 Bytes
b08ee5b ba00a4c b08ee5b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
import streamlit as st
st.title("π€ Tutorial : use HuggingFace to enhance your resume")
st.subheader("Use a specific space on HuggingFace")
st.markdown("""
In order to find a Space that will help you with your CV, you should go to the [Spaces](https://huggingface.co/spaces) page.
And then you can search by typing *CV* or *Resume*.
For this tutorial, we are gonna use the tool [Resume Enhancement](https://huggingface.co/spaces/halimbahae/Resume_Enhancement)
#### In order to use a *Resume Enhancement* Space for enhancing your resume, follow the video instructions :
- First go to [Resume Enhancement](https://huggingface.co/spaces/halimbahae/Resume_Enhancement)
- Then go into the section "Resume Quality" in order to get feedback from the bot :
""")
video_file = open("assets/hf_resume_quality.mp4", "rb")
video_bytes = video_file.read()
st.video(video_bytes)
st.markdown("""
- Then you can ask the bot to evaluate your CV specifically for a Job offer with the section "Resume Match": """)
video_file2 = open("assets/hf_resume_match.mp4", "rb")
video_bytes2 = video_file2.read()
st.video(video_bytes2)
st.markdown("""
- You can also go to "ATS" section in order for the bot to analyze your resume for ATS screening : """)
video_file3 = open("assets/hf_ats.mp4", "rb")
video_bytes3 = video_file3.read()
st.video(video_bytes3)
st.markdown("""
Have fun playing with the tool :)
""") |