Browse Source

Added a few notes for how to move forward.

master
Craig Oates 6 years ago
parent
commit
3f41e387f7
  1. 10
      WetPancake/MapProcessing.fs

10
WetPancake/MapProcessing.fs

@ -1,4 +1,12 @@
module internal MapProcessing
// You are up to here craig
// starting to build a markov map using the functions in text and file procssing...
// starting to build a markov map using the functions in text and file procssing...
(*
Notes for possible way forward
let random = defaultArg random (Random().Next)
let isStartOfSentence = defaultArg isStartOfSentence (Regex(@"^[A-Z]").IsMatch)
let isEndOfSentence = defaultArg isEndOfSentence (Regex(@"\.").IsMatch)
let startWords, otherWords = map |> Map.partition (fun k _ -> isStartOfSentence k)
*)
Loading…
Cancel
Save