nafisehNik commited on
Commit
26788a7
·
1 Parent(s): 7bf9907

markdown link edited.

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -24,7 +24,7 @@ datasets:
24
 
25
  # GIRT-Model
26
 
27
- This model is fine-tuned to generate issue report templates based on the instruction input provided. It has been fine-tuned on GIRT-Instruct data(https://huggingface.co/datasets/nafisehNik/GIRT-Instruct).
28
 
29
  ## Usage
30
 
@@ -67,7 +67,7 @@ def compute(sample, top_p, top_k, do_sample, max_length, min_length):
67
 
68
  return postprocess_text
69
 
70
- prompt = "YOUR INPUT TEXT"
71
  result = compute(prompt, top_p = 0.92, top_k=0, do_sample=True, max_length=300, min_length=30)
72
  ```
73
 
 
24
 
25
  # GIRT-Model
26
 
27
+ This model is fine-tuned to generate issue report templates based on the input instruction provided. It has been fine-tuned on [GIRT-Instruct](https://huggingface.co/datasets/nafisehNik/GIRT-Instruct) data.
28
 
29
  ## Usage
30
 
 
67
 
68
  return postprocess_text
69
 
70
+ prompt = "YOUR INPUT INSTRUCTION"
71
  result = compute(prompt, top_p = 0.92, top_k=0, do_sample=True, max_length=300, min_length=30)
72
  ```
73