-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.txt
95 lines (76 loc) · 2.15 KB
/
config.txt
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# -*- Awk -*-
# Configuration entry for Jeremy's GitHub entry
# Jeremy Barnes, 11 August 2009
default_generator=generator
default_ranker=ranker
generator {
type=default;
sources=parents_of_watched,ancestors_of_watched,authored_by_me,authored_by_collaborator,watched_by_collaborator,by_watched_authors,same_name,children_of_watched,in_cluster_user,in_cluster_repo,in_id_range,coocs,coocs2,most_watched;
parents_of_watched {
type=parents_of_watched;
classifier_file=data/parents_of_watched.cls;
}
ancestors_of_watched {
type=ancestors_of_watched;
classifier_file=data/ancestors_of_watched.cls;
}
authored_by_me {
type=authored_by_me;
classifier_file=data/authored_by_me.cls;
}
authored_by_collaborator {
type=authored_by_collaborator;
classifier_file=data/authored_by_collaborator.cls;
}
watched_by_collaborator {
type=watched_by_collaborator;
classifier_file=data/watched_by_collaborator.cls;
}
by_watched_authors {
type=by_watched_authors;
classifier_file=data/by_watched_authors.cls;
max_entries=200;
}
same_name {
type=same_name;
classifier_file=data/same_name.cls;
}
children_of_watched {
type=children_of_watched;
classifier_file=data/children_of_watched.cls;
}
in_cluster_user {
type=in_cluster_user;
classifier_file=data/in_cluster_user.cls;
}
in_cluster_repo {
type=in_cluster_repo;
classifier_file=data/in_cluster_repo.cls;
}
in_id_range {
type=in_id_range;
classifier_file=data/in_id_range.cls;
}
coocs {
type=coocs;
classifier_file=data/coocs.cls;
source=1;
}
coocs2 {
type=coocs;
classifier_file=data/coocs2.cls;
source=2;
}
probability_propagation {
type=probability_propagation;
classifier_file=data/probability_propagation.cls;
}
most_watched {
type=most_watched;
classifier_file=data/most_watched.cls;
}
}
ranker {
type=classifier
classifier_file=data/ranker.cls
}