sal! Nice to have you here in this forum. :)
At the moment it is best if you tell me.
The dictionary is moving to Panlexia . If you are brave, you can also create a pull request there. In that case you should add the word in pandunia.tsv with a concept id from master.tsv . (If a suitable concept ...
Search found 69 matches
- 2024-12-25 21:26
- Forum: ale bashe
- Topic: Word missing in dictionary; but in a lesson?
- Replies: 1
- Views: 12795
- 2024-12-13 13:23
- Forum: Panlexia project
- Topic: Open Multilingual Wordnet (OMW)
- Replies: 1
- Views: 27073
Re: Open Multilingual Wordnet (OMW)
I added WordNet offset and PoS columns to the master.tsv in this change . A Concepticon source file (Borin-2015-1532.tsv) offered 1373 ready-made ids, but the rest we have to fill in by hand. This id gives us the access to words in many languages via OMW.
In Python, we can use the Natural Language ...
In Python, we can use the Natural Language ...
- 2024-11-27 07:49
- Forum: Panlexia project
- Topic: Not much of time
- Replies: 1
- Views: 33262
Re: Not much of time
Thanks for your help! You have given good feedback and found good material (like Concepticon!) for the project.
My original plan was to finalize the concept ids by the end of this year, but maybe it won't happen because December is busy family time.
Good luck with your other projects!
My original plan was to finalize the concept ids by the end of this year, but maybe it won't happen because December is busy family time.
Good luck with your other projects!
- 2024-11-18 18:25
- Forum: Panlexia project
- Topic: octosql
- Replies: 1
- Views: 17085
Re: octosql
Panlexia is perfect material for database software! Good luck and feel free to upload your programs into our repository also for others to use.
- 2024-11-14 06:04
- Forum: Panlexia project
- Topic: Generating bilingual dictionaries
- Replies: 5
- Views: 49698
Re: Generating bilingual dictionaries
danke!
By the way, your screenshot shows bad alphabetical sorting. Upper-case "I" is before lower-case "b"! So I had to add a little code for case-insensitive sorting.
By the way, your screenshot shows bad alphabetical sorting. Upper-case "I" is before lower-case "b"! So I had to add a little code for case-insensitive sorting.
Code: Select all
# Sort the words in case-insensitive way.
sorted_dict = sorted(dict, key=lambda s: s[0].casefold())
- 2024-11-12 15:42
- Forum: Panlexia project
- Topic: Synonyms
- Replies: 1
- Views: 35615
Re: Synonyms
As the first step we should fill in the style field some information about synonyms. Usually synonyms are used in different situations.
First we need to define a list of styles, like dialectal, slang, pejorative, technical, humoristic, etc. Do you know a good list?
First we need to define a list of styles, like dialectal, slang, pejorative, technical, humoristic, etc. Do you know a good list?
- 2024-11-12 15:36
- Forum: Panlexia project
- Topic: Generating bilingual dictionaries
- Replies: 5
- Views: 49698
Re: Generating bilingual dictionaries
So it's in language Bash and not in Python 😮
The Bash script is more like a series of commands. It would be tedious to write the same commands one by one again and again. It's elementary programming that depends on the commands that the operating system and environment offer.
By the way, I ...
- 2024-11-07 17:50
- Forum: Panlexia project
- Topic: Generating bilingual dictionaries
- Replies: 5
- Views: 49698
Re: Generating bilingual dictionaries
Today I added a shell script for creating all bilingual dictionaries for a language at once. Execute it in Linux (native or WSL) by typing for example:
sh generate_bilingual_dictionaries.sh pandunia
And it will populate the generated/ folder with lots of simple but nice dictionaries.
sh generate_bilingual_dictionaries.sh pandunia
And it will populate the generated/ folder with lots of simple but nice dictionaries.
- 2024-11-05 20:05
- Forum: Panlexia project
- Topic: Generating bilingual dictionaries
- Replies: 5
- Views: 49698
Generating bilingual dictionaries
I wrote a Python program for writing bilingual dictionaries called write_bilingual_dict.py . It is run from the command line like this:
python3 src/write_bilingual_dict.py <source language code> <target language code>
A practical example:
python3 src/write_bilingual_dict.py pandunia eng
With this ...
python3 src/write_bilingual_dict.py <source language code> <target language code>
A practical example:
python3 src/write_bilingual_dict.py pandunia eng
With this ...
- 2024-11-04 06:14
- Forum: Panlexia project
- Topic: Soya plant and soya bean... and both
- Replies: 1
- Views: 31438
Re: Soya plant and soya bean... and both
This is my solution.
Plant:Glycine max.N An annual plant native to East Asia that is widely cultivated for its fruit. 2027 1095
Ingestion:Glycine max.N The edible seed of the soybean plant which contains a lot of protein. 2028
It's because definitions in ULD are less precise than in Concepticon ...
Plant:Glycine max.N An annual plant native to East Asia that is widely cultivated for its fruit. 2027 1095
Ingestion:Glycine max.N The edible seed of the soybean plant which contains a lot of protein. 2028
It's because definitions in ULD are less precise than in Concepticon ...