Upload proj4_2_label_validation.csv
Browse files- proj4_2_label_validation.csv +50 -0
proj4_2_label_validation.csv
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
sentence,label
|
| 2 |
+
" perms = all_permutations_substrings(string)
|
| 3 |
+
return {word for word in words if hash(word) in {hash(looking) for looking in perms}} ",0
|
| 4 |
+
" perms = all_permutations_substrings(string)
|
| 5 |
+
return {w for w in words if w in perms}",0
|
| 6 |
+
" perms = all_permutations_substrings(string)
|
| 7 |
+
return {word for word in words if hash(word) in {hash(search) for search in perms}}",0
|
| 8 |
+
" perms = all_permutations_substrings(string)
|
| 9 |
+
return set(i for i in words if i in perms)",0
|
| 10 |
+
" perms = all_permutations_substrings(string)
|
| 11 |
+
return {i for i in words if i in perms}",0
|
| 12 |
+
" perms = all_permutations_substrings(string)
|
| 13 |
+
result = perms.intersection(words)
|
| 14 |
+
set1 = set()
|
| 15 |
+
for i in perms:
|
| 16 |
+
if i in words:
|
| 17 |
+
set1.add(i)
|
| 18 |
+
return set1",0
|
| 19 |
+
" perms = all_permutations_substrings(string)
|
| 20 |
+
return {each for each in words if hash(each) in {hash(find) for find in perms }}",0
|
| 21 |
+
" perms = all_permutations_substrings(string)
|
| 22 |
+
return {word for word in words if word in set(perms)}",0
|
| 23 |
+
" perms = all_permutations_substrings(string)
|
| 24 |
+
return set(list(set(perms) & set(words)))",0
|
| 25 |
+
" perms = all_permutations_substrings(string)
|
| 26 |
+
res = [x for x in list(perms) + words if x in list(perms) and x in words]
|
| 27 |
+
return set(res)",0
|
| 28 |
+
" perms = all_permutations_substrings(string)
|
| 29 |
+
set1 = set()
|
| 30 |
+
for i in perms:
|
| 31 |
+
if i in words:
|
| 32 |
+
set1.add(i)
|
| 33 |
+
return set1",0
|
| 34 |
+
" perms = all_permutations_substrings(string)
|
| 35 |
+
return_list = {permutation for permutation in perms if permutation in words}
|
| 36 |
+
return return_list",0
|
| 37 |
+
" perms = all_permutations_substrings(string)
|
| 38 |
+
return {word for word in words if hash(word) in {hash(looking) for looking in perms}}",0
|
| 39 |
+
" perms = all_permutations_substrings(string)
|
| 40 |
+
return perms.intersection(words)",1
|
| 41 |
+
" perms = all_permutations_substrings(string)
|
| 42 |
+
|
| 43 |
+
return set(perms).intersection(words)",1
|
| 44 |
+
" perms = all_permutations_substrings(string)
|
| 45 |
+
if set(words) & set(perms):
|
| 46 |
+
res = (set(words) & set(perms))",1
|
| 47 |
+
" perms = all_permutations_substrings(string)
|
| 48 |
+
return set( perms.intersection(words)) ",1
|
| 49 |
+
" perms = all_permutations_substrings(string)
|
| 50 |
+
return perms.intersection(words)",1
|