mattlanham commited on
Commit
bae274b
·
verified ·
1 Parent(s): cadeb6c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +20 -1
README.md CHANGED
@@ -11,7 +11,26 @@ tags:
11
  - trl
12
  ---
13
 
14
- # Uploaded model
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
 
16
  - **Developed by:** mattlanham
17
  - **License:** apache-2.0
 
11
  - trl
12
  ---
13
 
14
+ # Finetuned phi-3 mini model for data extraction / pii redaction
15
+
16
+ Trained using synthetic data, this model will provide a JSON output containing:
17
+
18
+ With user input:
19
+ `My order hasn't arrived, it's order number 123456 and my email is johnsmith@gmail.com, please can you provide an update! Thanks John.`
20
+
21
+ The model will respond with:
22
+
23
+ ```
24
+ {
25
+ "redacted_message": "My order hasn't arrived, it's order number {order_number} and my email is {email}, please can you provide an update! Thanks {name}.",
26
+ "data": {
27
+ "order_number": "123456",
28
+ "email": "johnsmith@gmail.com",
29
+ "name": "John",
30
+
31
+ }
32
+ }
33
+ ```
34
 
35
  - **Developed by:** mattlanham
36
  - **License:** apache-2.0