MCPcopy Create free account
hub / github.com/lazyprogrammer/machine_learning_examples / clouds

Function clouds

svm_class/svm_gradient.py:123–126  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

121 return Xtrain, Xtest, Ytrain, Ytest, kernel, 1e-2, 300
122
123def clouds():
124 X, Y = get_clouds()
125 Xtrain, Xtest, Ytrain, Ytest = train_test_split(X, Y, test_size=0.33)
126 return Xtrain, Xtest, Ytrain, Ytest, linear, 1e-5, 400
127
128
129if __name__ == '__main__':

Callers

nothing calls this directly

Calls 1

get_cloudsFunction · 0.90

Tested by

no test coverage detected