hojzas commited on
Commit
9490e85
·
verified ·
1 Parent(s): b1e108f

Upload proj4_2_label_validation.csv

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