Note
Go to the end to download the full example code or to run this example in your browser via Binder
Data Load (Built-in Dataset)¶
Experiment initialization and data preparation
from piml import Experiment
exp = Experiment()
exp.data_loader(data="CoCircles")
X0 X1 target
0 -0.783526 0.502161 0.0
1 0.297809 0.658405 1.0
2 0.468272 0.500653 1.0
3 -0.134700 -0.887973 0.0
4 0.337202 -0.780797 1.0
... ... ... ...
1995 0.498109 -0.889060 0.0
1996 0.312980 0.724953 1.0
1997 -0.542930 -0.583517 1.0
1998 -0.871481 -0.491301 0.0
1999 -0.323963 -0.719150 0.0
[2000 rows x 3 columns]
Total running time of the script: ( 0 minutes 7.267 seconds)
Estimated memory usage: 12 MB