pyvespa icon indicating copy to clipboard operation
pyvespa copied to clipboard

Allow pyvespa to set rank-features when defining rank-profile.

Open thigm85 opened this issue 4 years ago • 0 comments

Example:

rank-profile collect_rank_features inherits default {
	first-phase {
	    expression: random
	}
	ignore-default-rank-features
	rank-features {
	    bm25(title)
	    bm25(body)
	    nativeRank(title)
	    nativeRank(body)
	}
}

This is important when collecting training data for example.

thigm85 avatar Aug 21 '20 11:08 thigm85