parquet-converter commited on
Commit
d4ce25a
1 Parent(s): 5116c98

Update parquet files

Browse files
.gitignore DELETED
@@ -1 +0,0 @@
1
- /__pycache__/
 
 
data/genericify_cpp.jsonl DELETED
@@ -1 +0,0 @@
1
- {"base_canonical_solution": "\\ntemplate <typename T>\\nbool has_close_elements(T numbers, float threshold) {\\n for (int i = 0; i < numbers.size(); i++)\\n for (int j = i + 1; j < numbers.size(); j++)\\n if (std::abs(numbers[i] - numbers[j]) < threshold)\\n return true;\\n\\n return false;\\n}\\n", "base_prompt": "Make the following function generic for the parameter `numbers`.", "concepts_canonical_solution": "\\ntemplate <typename T>\\n requires std::same_as<typename T::value_type, float>\\nbool has_close_elements(T numbers, float threshold) {\\n for (int i = 0; i < numbers.size(); i++)\\n for (int j = i + 1; j < numbers.size(); j++)\\n if (std::abs(numbers[i] - numbers[j]) < threshold)\\n return true;\\n\\n return false;\\n}\\n", "concepts_prompt": "Constrain the generic code using C++20 Concepts so that it accepts a container with value type of floats.", "invalids": "\\nint main() {\\n std::string s{};\\n has_close_elements(s, 3.4);\\n}\\n", "sfinae_canonical_solution": "\\ntemplate <\\n typename T,\\n std::enable_if_t<std::is_same_v<typename T::value_type, float>, int> = 0>\\nbool has_close_elements(T numbers, float threshold) {\\n for (int i = 0; i < numbers.size(); i++)\\n for (int j = i + 1; j < numbers.size(); j++)\\n if (std::abs(numbers[i] - numbers[j]) < threshold)\\n return true;\\n\\n return false;\\n}\\n", "sfinae_prompt": "Constrain the generic code using C++20 Concepts so that it accepts a container with value type of floats.", "starter_code": "\\nbool has_close_elements(std::vector<float> numbers, float threshold) {\\n for (int i = 0; i < numbers.size(); i++)\\n for (int j = i + 1; j < numbers.size(); j++)\\n if (std::abs(numbers[i] - numbers[j]) < threshold)\\n return true;\\n\\n return false;\\n}\\n", "task_id": "HEP/0", "tests": "\\n#define ASSERT(...) \\\\\\n do { \\\\\\n if (!(__VA_ARGS__)) { \\\\\\n std::exit(-1); \\\\\\n } \\\\\\n } while (false)\\n\\n#define TEST_ON_TYPE(_type_) \\\\\\n do { \\\\\\n _type_ a = {1.0, 2.0, 3.9, 4.0, 5.0, 2.2}; \\\\\\n ASSERT(has_close_elements(a, 0.3) == true); \\\\\\n ASSERT(has_close_elements(a, 0.05) == false); \\\\\\n ASSERT(has_close_elements(_type_{1.0, 2.0, 5.9, 4.0, 5.0}, 0.95) == true); \\\\\\n ASSERT(has_close_elements(_type_{1.0, 2.0, 5.9, 4.0, 5.0}, 0.8) == false); \\\\\\n ASSERT(has_close_elements(_type_{1.0, 2.0, 3.0, 4.0, 5.0}, 2.0) == true); \\\\\\n ASSERT(has_close_elements(_type_{1.1, 2.2, 3.1, 4.1, 5.1}, 1.0) == true); \\\\\\n ASSERT(has_close_elements(_type_{1.1, 2.2, 3.1, 4.1, 5.1}, 0.5) == false); \\\\\\n } while (false)\\n\\nint main() {\\n TEST_ON_TYPE(std::vector<float>);\\n TEST_ON_TYPE(std::deque<float>);\\n}\\n"}
 
 
dataset_genericify_cpp.py DELETED
@@ -1,67 +0,0 @@
1
- """Genericify C++ Dataset for CS7470"""
2
-
3
-
4
- import json
5
-
6
- import datasets
7
-
8
-
9
- # You can copy an official description
10
- _DESCRIPTION = """\
11
- Genericify C++ Dataset
12
- """
13
-
14
-
15
- class DatasetGenericifyCpp(datasets.GeneratorBasedBuilder):
16
- """Genericify C++ Dataset for CS7470"""
17
-
18
- VERSION = datasets.Version("1.1.0")
19
-
20
- def _info(self):
21
- return datasets.DatasetInfo(
22
- description=_DESCRIPTION,
23
- features=datasets.Features(
24
- {
25
- "task_id": datasets.Value("string"),
26
- "base_prompt": datasets.Value("string"),
27
- "sfinae_prompt": datasets.Value("string"),
28
- "concepts_prompt": datasets.Value("string"),
29
- "starter_code": datasets.Value("string"),
30
- "base_canonical_solution": datasets.Value("string"),
31
- "sfinae_canonical_solution": datasets.Value("string"),
32
- "concepts_canonical_solution": datasets.Value("string"),
33
- "tests": datasets.Value("string"),
34
- "invalids": datasets.Value("string"),
35
- }
36
- ),
37
- )
38
-
39
- def _split_generators(self, dl_manager):
40
- downloaded_files = dl_manager.download_and_extract(
41
- "data/genericify_cpp.jsonl"
42
- )
43
- return [
44
- datasets.SplitGenerator(
45
- name=datasets.Split.TEST,
46
- gen_kwargs={
47
- "filepath": downloaded_files,
48
- },
49
- ),
50
- ]
51
-
52
- def _generate_examples(self, filepath):
53
- with open(filepath, encoding="utf-8") as f:
54
- for key, line in enumerate(f):
55
- row = json.loads(line)
56
- yield key, {
57
- "task_id": row["task_id"],
58
- "base_prompt": row["base_prompt"],
59
- "sfinae_prompt": row["sfinae_prompt"],
60
- "concepts_prompt": row["concepts_prompt"],
61
- "starter_code": row["starter_code"],
62
- "base_canonical_solution": row["base_canonical_solution"],
63
- "sfinae_canonical_solution": row["sfinae_canonical_solution"],
64
- "concepts_canonical_solution": row["concepts_canonical_solution"],
65
- "tests": row["tests"],
66
- "invalids": row["invalids"],
67
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
default/test/0000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3a78354b4971054415e7fe497b7225de8420d68e9d40f5889f917aa7ec9522bc
3
+ size 41921