Skip to content

Instantly share code, notes, and snippets.

@mydogisbox
mydogisbox / LJFSharp
Created July 9, 2013 20:06
F Sharp implementation of the Kaggle digit recognizer exercise.
open System.IO
open System
open System.Text
type DataWithDigit = { digit:int
data:int array }
type Data = {data:int array}
let convertToTrainingData (x:string) =
let split = x.Split(',')