Procedure.
1: | for all candidate terms t in H do |
2: | Set co-occurrence score F = 0 |
3: | for each context term c in 𝒞 do |
4: | F = F + ℳ[c][t] |
5: | if F/|𝒞| < β then |
6: | H.delete(t) {F/|𝒞| is the average co-occurrence} |
7: | return H |
1: | for all candidate terms t in H do |
2: | Set co-occurrence score F = 0 |
3: | for each context term c in 𝒞 do |
4: | F = F + ℳ[c][t] |
5: | if F/|𝒞| < β then |
6: | H.delete(t) {F/|𝒞| is the average co-occurrence} |
7: | return H |