zingg icon indicating copy to clipboard operation
zingg copied to clipboard

recommend is case sensitive for column name

Open vikasgupta78 opened this issue 2 years ago • 0 comments

The issue is due to case sensitive comparison of column name, input vs what's in config

e.g. following works fine:

./scripts/zingg.sh --phase recommend --conf examples/febrl/config.json --column XYZ

but not ./scripts/zingg.sh --phase recommend --conf examples/febrl/config.json --column xyz

StopWordsRecommender:

if(Arrays.asList(data.columns()).contains(args.getColumn())) {

Above needs to be made case insensitive

vikasgupta78 avatar Jan 05 '24 07:01 vikasgupta78