v2.20 introduces the new metric RSS (Residual Sum of Squares). My understanding is that RSS and RMS lead to identical ranking of candidate formulae, and thus there is no need for both metrics in an application fot symbolic regression. Can admin please explain if I am wrong, and the reasoning for the new metric?
P.S: The webside does not yet list the RSS metric: https://turingbotsoftware.com/documentation.html#error-metrics
RMS ≡ √(Σ[(y_i−y'i)²]/N)
RSS ≡ Σ[(y_i−y'i)²]
→ Therefore: RMS = √(RSS/N), which means that there is a perfect rank-correlation between RMS and RSS, thus no difference in ranking of candidate equations. I would personally therefore use RSS instead of RMS, because it is presumaly faster, avoiding an unnecessary division and square root.