May 27, 2005 #1 Graziella Programmer Joined Jul 8, 2004 Messages 38 Location AT Hi, Code: $f-measure = (2 * $recall * $precision) / ($recall + $precision); gives me the following error message: Can't modify substraction (-) in scalar assignment at line (the one above) near ");" This is insane: why doens;t this work ?! Grazia
Hi, Code: $f-measure = (2 * $recall * $precision) / ($recall + $precision); gives me the following error message: Can't modify substraction (-) in scalar assignment at line (the one above) near ");" This is insane: why doens;t this work ?! Grazia
May 27, 2005 #2 azzazzello Technical User Joined Jan 25, 2005 Messages 297 Location US it's interpreting is as $f minus measure. Try using $f_measure (with an underscore) instead. Upvote 0 Downvote
May 27, 2005 Thread starter #3 Graziella Programmer Joined Jul 8, 2004 Messages 38 Location AT Thank you, How silly on my part not to see that ! I guess it is time for a break. Grazia Upvote 0 Downvote