Created
August 15, 2020 13:47
-
-
Save Sajjon/7e99f865eeefbcfb8625e72efdfb266d to your computer and use it in GitHub Desktop.
A parsed line from the Swedish corpus at Språkbanken.
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
| /// A parsed line from some scanned line in the corpus. | |
| struct ParsedLine: Codable, Hashable { | |
| let wordForm: WordForm | |
| let partOfSpeechTag: PartOfSpeech | |
| let lemgrams: Lemgrams | |
| let isCompoundWord: Bool | |
| let numberOfOccurencesInCorpus: Int | |
| let relativeFrequencyPerOneMillion: Int | |
| let indexOfLineInCorpus: Int | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment