Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. model = mix.GaussianMixture(n_components=2,
  2. covariance_type="full",
  3. n_init=100,
  4. random_state=7).fit(dataframe)
  5.  
  6. array([( 50121, 0), ( 50121, 1), ( 50121, 1), ..., (362374, 1),
  7. (362374, 1), (362374, 1)],
  8. dtype=[('user_id', '<i8'), ('correct', '<i8')])
  9.  
  10. ValueError: Can't cast from structure to non-structure, except if the structure only has a single field.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement