0
votes

I am trying to sum how much records my ML model was TP - table_classification = 1 and labeled=1

sum([model_classification]=1 AND [model_labeled]=1)

getting the below error:

sum is being called with boolean, did you mean float? 
1

1 Answers

1
votes

Try this

sum(INT([model_classification]=1 AND [model_labeled]=1)) 

INT will convert boolean to Integer/numeric and thereaftyou can perform arithmetic calculation on that.