azhx commited on
Commit
7b63113
1 Parent(s): e08015b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +27 -2
README.md CHANGED
@@ -76,8 +76,33 @@ adhere to the output format, if specified.
76
  {instruction} [/INST] [/INST]
77
  ```
78
 
79
- To linearize structured input of various types during training, we follow the linearization procedures from [UnifiedSKG](https://arxiv.org/pdf/2201.05966.pdf), so using this format during prompting will be most effective.
80
- To see concrete examples of this linearization, you can directly reference the 🤗 [SKGInstruct Dataset](https://huggingface.co/datasets/TIGER-Lab/SKGInstruct).
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
81
 
82
  ## Intended Uses
83
  These models are trained for research purposes. They are designed to be proficient in interpreting linearized structured input. Downstream uses can potentially include various applications requiring the interpretation of structured data.
 
76
  {instruction} [/INST] [/INST]
77
  ```
78
 
79
+
80
+ To see concrete examples of this linearization, you can directly reference the 🤗 [SKGInstruct Dataset](https://huggingface.co/datasets/TIGER-Lab/SKGInstruct) (coming soon).
81
+ We will provide code for linearizing this data shortly.
82
+
83
+
84
+ A few examples:
85
+
86
+ **tabular data**
87
+ ```
88
+ col : day | kilometers row 1 : tuesday | 0 row 2 : wednesday | 0 row 3 : thursday | 4 row 4 : friday | 0 row 5 : saturday | 0
89
+ ```
90
+
91
+ **knowledge triples**
92
+ ```
93
+ Hawaii Five-O : notes : Episode: The Flight of the Jewels | [TABLECONTEXT] : [title] : Jeff Daniels | [TABLECONTEXT] : title : Hawaii Five-O
94
+ ```
95
+
96
+ **knowledge graph schema (grailqa)**
97
+ ```
98
+ top antiquark: m.094nrqp | physics.particle_antiparticle.self_antiparticle physics.particle_family physics.particle.antiparticle physics.particle_family.subclasses physics.subatomic_particle_generation physics.particle_family.particles physics.particle common.image.appears_in_topic_gallery physics.subatomic_particle_generation.particles physics.particle.family physics.particle_family.parent_class physics.particle_antiparticle physics.particle_antiparticle.particle physics.particle.generation
99
+ ```
100
+
101
+ **example input**
102
+
103
+ ```
104
+ [INST] [INST] <<SYS>>\nYou are an AI assistant that specializes in analyzing and reasoning over structured information. You will be given a task, optionally with some structured knowledge input. Your answer must strictly adhere to the output format, if specified.\n<</SYS>>\n\nUse the information in the following table to solve the problem, choose between the choices if they are provided. table:\n\ncol : day | kilometers row 1 : tuesday | 0 row 2 : wednesday | 0 row 3 : thursday | 4 row 4 : friday | 0 row 5 : saturday | 0\n\n\nquestion:\n\nAllie kept track of how many kilometers she walked during the past 5 days. What is the range of the numbers? [/INST] [/INST]
105
+ ```
106
 
107
  ## Intended Uses
108
  These models are trained for research purposes. They are designed to be proficient in interpreting linearized structured input. Downstream uses can potentially include various applications requiring the interpretation of structured data.