hojzas commited on
Commit
b1e108f
·
verified ·
1 Parent(s): 70c473e

Delete proj4_2_label_validation.csv

Browse files
Files changed (1) hide show
  1. proj4_2_label_validation.csv +0 -39
proj4_2_label_validation.csv DELETED
@@ -1,39 +0,0 @@
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
- return {each for each in words if hash(each) in {hash(find) for find in perms }}",0
14
- " perms = all_permutations_substrings(string)
15
- return {word for word in words if word in set(perms)}",0
16
- " perms = all_permutations_substrings(string)
17
- return set(list(set(perms) & set(words)))",0
18
- " perms = all_permutations_substrings(string)
19
- " perms = all_permutations_substrings(string)
20
- res = [x for x in list(perms) + words if x in list(perms) and x in words]
21
- return set(res)",0
22
- " perms = all_permutations_substrings(string)
23
- set1 = set()
24
- for i in perms:
25
- if i in words:
26
- set1.add(i)
27
- return set1",0
28
- return {word for word in words if hash(word) in {hash(looking) for looking in perms}}",0
29
- " perms = all_permutations_substrings(string)
30
- return perms.intersection(words)",1
31
- " perms = all_permutations_substrings(string)
32
- return set(perms).intersection(words)",1
33
- " perms = all_permutations_substrings(string)
34
- if set(words) & set(perms):
35
- res = (set(words) & set(perms))",1
36
- " perms = all_permutations_substrings(string)
37
- return set( perms.intersection(words)) ",1
38
- " perms = all_permutations_substrings(string)
39
- return perms.intersection(words)",1