Skip to content

Commit f529e49

Browse files
authoredMay 23, 2021
Update README.md
1 parent ddfa087 commit f529e49

File tree

1 file changed

+10
-23
lines changed

1 file changed

+10
-23
lines changed
 

‎README.md

+10-23
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,18 @@ streamlit run promptsource/promptsource.py
1515
```
1616

1717
## Writing Templates
18-
Templates are currently represented as three python functions, one to generate each
19-
piece of a prompting instance: input, prompt, and output.
18+
A prompt template is expressed in [Jinja](https://jinja.palletsprojects.com/en/3.0.x/).
2019

21-
You can write arbitrary python in the textboxes. Currently, each piece of code will be
22-
inserted into a function with a header such as
23-
```
24-
def output_fn(example):
20+
It is rendered using an example from the corresponding Hugging Face datasets library
21+
(a dictionary). The separator ||| should appear once to divide the template into prompt
22+
and output. Generally, the prompt should provide information on the desired behavior,
23+
e.g., text passage and instructions, and the output should be a desired response.
24+
25+
Here's an example for [AG News](https://huggingface.co/datasets/ag_news):
2526
```
26-
To write a function, fill in just the body of the function. Use no indentation for the
27-
top-level context.
28-
29-
For example, to define an output function for ag_news, you could write
30-
```python
31-
label_map = {
32-
0: "World politics",
33-
1: "Sports",
34-
2: "Business",
35-
3: "Technology"}
36-
return label_map[example["label"]]
27+
{{text}}
28+
Is this a piece of news regarding world politics, sports, business, or technology? |||
29+
{{ ["World politics", "Sport", "Business", "Technology"][label] }}
3730
```
3831

3932
## Contributing
@@ -48,10 +41,4 @@ See also the [design doc](https://docs.google.com/document/d/1IQzrrAAMPS0XAn_ArO
4841

4942
## Known Issues
5043

51-
**Datasets with configurations:** Loading datasets that require a configuration is currently broken. Need to
52-
either figure out how to query for available options and let user pick, or only use first one or something.
53-
Unclear right now if a template for one configuration can be applied to another in all cases.
54-
5544
**Warning or Error about Darwin on OS X:** Try downgrading PyArrow to 3.0.0.
56-
57-
**Error due to PyYAML version mismatch:** In case you have PyYAML with version <5 previously installed, then follow the steps [here](https://stackoverflow.com/a/53534728) to upgrade it to a version which is >5.

0 commit comments

Comments
 (0)
Please sign in to comment.