-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmerging_dataset.csv
More file actions
We can make this file beautiful and searchable if this error is corrected: It looks like row 12 should actually have 3 columns, instead of 1 in line 11.
33 lines (33 loc) · 3.4 KB
/
merging_dataset.csv
File metadata and controls
33 lines (33 loc) · 3.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
instruction,input,output
"Merge the following metadata into a single JSON object.","EXISTING: { ""description"": ""kinematics, velocity"",
""keywords"": ""motion"" } NEW: { ""description"": ""newton laws, force"", ""keywords"": ""dynamics""
}","{""merged_description"": ""kinematics, velocity, newton laws, force, dynamics"", ""merged_keywords"": ""motion, dynamics,force""}"
"Merge the following metadata into a single JSON object.","EXISTING: { ""description"": ""cellular respiration"",
""keywords"": ""biology"" } NEW: { ""description"": ""photosynthesis, light energy"", ""keywords"": ""plants""
}","{""merged_description"": ""cellular respiration, photosynthesis, light energy, metabolism"", ""merged_keywords"":
""biology, plants, metabolism""}"
"Merge the following metadata into a single JSON object.","EXISTING: { ""description"": ""algorithms"", ""keywords"":
""coding"" } NEW: { ""description"": ""trees, graphs"", ""keywords"": ""cs"" }","{""merged_description"": ""algorithms, trees,
graphs, data structures"", ""merged_keywords"": ""coding, cs, algorithms""}"
"Merge the following metadata into a single JSON object.","EXISTING: { ""description"": ""organic chemistry"", ""keywords"":
""chemistry"" } NEW: { ""description"": ""alkanes, alkenes"", ""keywords"": ""molecules"" }","{""merged_description"":
""organic chemistry, alkanes, alkenes, molecular structure"", ""merged_keywords"": ""chemistry, molecules, organic""}"
"Merge the following metadata into a single JSON object.","EXISTING: { ""description"": ""calculus"", ""keywords"": ""math"" }
NEW: { ""description"": ""integrals, area"", ""keywords"": ""calculus"" }","{""merged_description"": ""calculus, derivatives,
integrals, area under curve"", ""merged_keywords"": ""math, calculus, area""}"
"Merge the following metadata into a single JSON object.","EXISTING: { ""description"": ""world war 1"", ""keywords"":
""history"" } NEW: { ""description"": ""treaty of versailles"", ""keywords"": ""war"" }","{""merged_description"": ""world war
1, treaty of versailles, 20th century conflict"", ""merged_keywords"": ""history, war, conflict""}"
"Merge the following metadata into a single JSON object.","EXISTING: { ""description"": ""neural networks"", ""keywords"":
""ai"" } NEW: { ""description"": ""deep learning, tensors"", ""keywords"": ""data"" }","{""merged_description"": ""neural
networks, deep learning, tensors, ai"", ""merged_keywords"": ""ai, data, deep learning""}"
"Merge the following metadata into a single JSON object.","EXISTING: { ""description"": ""thermodynamics"", ""keywords"":
""heat"" } NEW: { ""description"": ""entropy, carnot cycle"", ""keywords"": ""energy"" }","{""merged_description"":
""thermodynamics, entropy, carnot cycle, thermal physics"", ""merged_keywords"": ""heat, energy, thermodynamics""}"
"Merge the following metadata into a single JSON object.","EXISTING: { ""description"": ""stocks"", ""keywords"": ""finance""
} NEW: { ""description"": ""bonds, risk"", ""keywords"": ""investing"" }","{""merged_description"": ""stocks, bonds, risk
management, investment"", ""merged_keywords"": ""finance, investing, stocks""}"
"Merge the following metadata into a single JSON object.","EXISTING: { ""description"": ""poetry"", ""keywords"": ""english""
} NEW: { ""description"": ""sonnets, shakespeare"", ""keywords"": ""literature"" }","{""merged_description"": ""poetry,
sonnets, shakespeare, literary analysis"", ""merged_keywords"": ""english, literature, poetry""}"
Page 2