Mr-Vicky-01 commited on
Commit
d4ff9a4
·
verified ·
1 Parent(s): 467be1d

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -1
README.md CHANGED
@@ -56,7 +56,8 @@ model = AutoModelForSeq2SeqLM.from_pretrained("AquilaX-AI/NL-JSON-60M")
56
  device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu")
57
 
58
  # Change YOUR_QUERY eg: can this https://github.com/mr-vicky-01/educational-assitant on every week using pii and sast scan
59
- query = "convert my query into json: " + "YOUR_QUERY".lower()
 
60
 
61
  start = time.time()
62
 
 
56
  device = torch.device("cuda:0" if torch.cuda.is_available() else "cpu")
57
 
58
  # Change YOUR_QUERY eg: can this https://github.com/mr-vicky-01/educational-assitant on every week using pii and sast scan
59
+ query = "Translate the following text to JSON: " + "YOUR_QUERY".lower()
60
+ query = query.replace(",", "")
61
 
62
  start = time.time()
63