Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

23
votes
11answers
2k views

What is “Orthogonality”?

What does "orthogonality" mean when talking about programming languages? What are some examples of Orthogonality?
3
votes
1answer
158 views

Russian-to-English Parallel Word Corpus?

I am looking for a simple Russian to English word corpus. It can be as simple as a csv that lists a russian word in the first column and the equivalent English word in the second. Any ideas where I ...
3
votes
1answer
183 views

English Lexicon for Search Query Correction

I'm building a spelling corrector for search engine queries by implementing the method described in "Spelling correction as an iterative process that exploits the collective knowledge of web users". ...
1
vote
3answers
102 views

English texts lexicon comparison

Let's imagine, we can build a statistics table, how much each word is used in some English text or book. We can gather statistics for each text/book in library. What is the simplest way to compare ...
1
vote
3answers
323 views

Word frequency tally script is too slow

Background Created a script to count the frequency of words in a plain text file. The script performs the following steps: Count the frequency of words from a corpus. Retain each word in the corpus ...
0
votes
0answers
24 views

tables in DSL Abby Lingvo dictinary entry format

I would like to add conjugation and declention tables to DSL Abby Lingvo format for GoldenDict. Any ideas how to achieve this?
0
votes
1answer
44 views

advanced format of dictionary entry in open-source dictionary program like GoldenDict

I want to find some format for advanced entry in Icelandic-Czech dictionary for any open-source dictionary program like GoldenDict. I have looked at DSL format from Abby Lingvo but Icelandic is not ...
0
votes
0answers
32 views

Where to find free lexicons [closed]

Who knows where to find lexicons (free) in the following form: Wordform | lemma | Lexical tag backe backen Vasp3s backe backen Vmip1s chaotische chaotisch A..mpn I know only multext, ...
0
votes
0answers
128 views

Is there a way to make a UITextField autocorrect on a custom array of strings?

I would like to have a UITextField autocorrect on an array of contacts. Is this possible? Thanks!
0
votes
3answers
101 views

I am trying to create a lexicon using an input file in C++

I have a file.txt I want to create a function in C++ that can read the words in that file, and print each word and how many times they occur into a file2.txt I am doing some research I know i can use ...