Skip to content

Instantly share code, notes, and snippets.

@fitomad
Created September 25, 2018 21:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fitomad/427a2d9c6c2a3ea795719204cc07dc4c to your computer and use it in GitHub Desktop.
Save fitomad/427a2d9c6c2a3ea795719204cc07dc4c to your computer and use it in GitHub Desktop.
//
// * Training (70 %)
// * Validation (20 %)
// * Evaluation (10 %)
//
let (trainingSet, restSet) = reviewsDataset.randomSplit(by: 0.70, seed: 5)
let (validationSet, evaluationSet) = restSet.randomSplit(by: 0.66, seed: 5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment