Created
February 19, 2018 20:21
-
-
Save beckyconning/6b355219c47185313362542b6afec0ac to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
parseRow = | |
many1Till (parseNumber >>= \n -> char "," *> pure n) | |
>>= \features -> manyTil eol | |
>>= \label -> eol | |
*> pure (Iris { features, label }) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment