Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Tutorial.fsx #2

Merged
merged 1 commit into from
Jan 12, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update Tutorial.fsx
Changed slash in path specification for compatibility with Mac and Linux
  • Loading branch information
ptrelford committed Jan 7, 2015
commit c03fb11b1ca8e9c43cda09a76f65aae2b5931876
6 changes: 3 additions & 3 deletions Dojo/HamOrSpam/Tutorial.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ open System.IO
open System.Text
open System.Text.RegularExpressions

let trainingPath = source + "\SpamTraining"
let validationPath = source + "\SpamValidation"
let trainingPath = source + "/SpamTraining"
let validationPath = source + "/SpamValidation"

// we define 2 classes, Ham or Spam
type Class = Spam | Ham
Expand Down Expand Up @@ -309,4 +309,4 @@ let validation = validationSample // THIS IS NOT RIGHT
EPILOGUE...
- ANY THOUGHTS ON HOW YOU COULD IMPROVE THAT MODEL FURTHER?
- HOW MUCH HAM, SPAM IS MIS-CLASSIFIED? WHAT'S WORSE?
*)
*)