@@ -274,7 +274,7 @@ def from_sklearn(
274274 :class:`Dataset` constructor. Use this to pass e.g. ``is_multi_output``.
275275 :return: Object with the sklearn dataset
276276
277- .. versionchanged:: 0.5.1
277+ .. versionchanged:: 0.6.0
278278 Added kwargs to pass to the :class:`Dataset` constructor.
279279 """
280280 x_train , x_test , y_train , y_test = train_test_split (
@@ -327,7 +327,7 @@ def from_arrays(
327327
328328 .. versionadded:: 0.4.0
329329
330- .. versionchanged:: 0.5.1
330+ .. versionchanged:: 0.6.0
331331 Added kwargs to pass to the :class:`Dataset` constructor.
332332 """
333333 x_train , x_test , y_train , y_test = train_test_split (
@@ -377,7 +377,7 @@ def __init__(
377377 :param kwargs: Additional keyword arguments to pass to the
378378 :class:`Dataset` constructor.
379379
380- .. versionchanged:: 0.5.1
380+ .. versionchanged:: 0.6.0
381381 Added ``group_names`` and forwarding of ``kwargs``
382382 """
383383 super ().__init__ (
@@ -520,7 +520,7 @@ def from_arrays(
520520
521521 .. versionadded:: 0.4.0
522522
523- .. versionchanged:: 0.5.1
523+ .. versionchanged:: 0.6.0
524524 Added kwargs to pass to the :class:`Dataset` constructor.
525525 """
526526 if data_groups is None :
0 commit comments