mwitiderrick
commited on
Commit
•
ce70f04
1
Parent(s):
e2bc685
Update README.md
Browse files
README.md
CHANGED
@@ -28,7 +28,6 @@ print(model(prompt, max_new_tokens=200).generations[0].text)
|
|
28 |
"""
|
29 |
Here's a Perl script that meets the requirements:
|
30 |
|
31 |
-
```perl
|
32 |
use strict;
|
33 |
use warnings;
|
34 |
|
@@ -67,13 +66,12 @@ my (@sorted) = sort { $b[1] <=> $a[1] } @{$results};
|
|
67 |
foreach my ($code, $freq) (@sorted) {
|
68 |
print "$code\t$freq\n";
|
69 |
}
|
70 |
-
|
71 |
"""
|
72 |
```
|
73 |
|
74 |
## Prompt template
|
75 |
```
|
76 |
-
|
77 |
### Instruction:\n
|
78 |
{prompt}
|
79 |
### Response:\n
|
|
|
28 |
"""
|
29 |
Here's a Perl script that meets the requirements:
|
30 |
|
|
|
31 |
use strict;
|
32 |
use warnings;
|
33 |
|
|
|
66 |
foreach my ($code, $freq) (@sorted) {
|
67 |
print "$code\t$freq\n";
|
68 |
}
|
69 |
+
|
70 |
"""
|
71 |
```
|
72 |
|
73 |
## Prompt template
|
74 |
```
|
|
|
75 |
### Instruction:\n
|
76 |
{prompt}
|
77 |
### Response:\n
|