MCPcopy
hub / github.com/instillai/machine-learning-course / over_funct

Function over_funct

code/overview/overfitting/overfitting.py:6–7  ·  view source on GitHub ↗
(x)

Source from the content-addressed store, hash-verified

4 return [-(i**2) for i in x]
5
6def over_funct(x):
7 return [-0.5*(i**3) - (i**2) for i in x]
8
9def under_funct(x):
10 return [6*i + 9 for i in x]

Callers 1

overfitting.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected