abhinav-2k23 commited on
Commit
e2a8056
1 Parent(s): c3789f2

Create README.md

Browse files

Finetuned LLM on GPT4 data to parse relevant fields from CVs
You can use the following prompts to run the LLM -
ins1 = "Extract all given details from the Input CV"
ins2 = "Extract only name, gender, email_id, phone_no, skills, location, current_title, certificates from the Input CV"
ins3 = "Extract only employment history from the Input CV"
ins4 = "Extract only education details from the Input CV"
prompt = f"""### Instruction:
{ins1}

### Input:
{parsed_CV}

### Output:
"""

Files changed (1) hide show
  1. README.md +6 -0
README.md ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ base_model:
5
+ - meta-llama/Meta-Llama-3-8B-Instruct
6
+ ---