The kmeans.fsx sample is giving me an error, VS2013
---> (Inner Exception #3) Nessos.FsPickler.NonSerializableTypeException:
Type 'System.IO.ReadLinesIterator' is not serializable.
It looks like it's relate to this:
let parseFile name =
File.ReadLines name
|> Seq.collect (fun line -> line.Trim().Split(' '))
|> Seq.filter(fun x -> x <> "")
|> Seq.map (float)
|> dimmed dim
The kmeans.fsx sample is giving me an error, VS2013
---> (Inner Exception #3) Nessos.FsPickler.NonSerializableTypeException: Type 'System.IO.ReadLinesIterator' is not serializable.
It looks like it's relate to this: