Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/frankier/finntk
Some simple high level tools for processing Finnish text
https://github.com/frankier/finntk
computational-linguistics finnish finnish-language-analysis nlp
Last synced: 8 days ago
JSON representation
Some simple high level tools for processing Finnish text
- Host: GitHub
- URL: https://github.com/frankier/finntk
- Owner: frankier
- License: apache-2.0
- Created: 2018-04-12T10:01:20.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-11-01T14:55:28.000Z (about 4 years ago)
- Last Synced: 2024-09-15T06:38:53.330Z (2 months ago)
- Topics: computational-linguistics, finnish, finnish-language-analysis, nlp
- Language: Python
- Homepage:
- Size: 204 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# FinnTK
Some simple high level tools for processing Finnish text.
This project is according to my personal preferences but might be
helpful to others, particularly for exploratory coding. For larger projects you may prefer to use [OMorFi](https://github.com/flammie/omorfi) directly.## Installation ##
This project assumes you've installed HFST and OMorFi system-wide, like so:
$ PIP_IGNORE_INSTALLED=1 pipenv install --site-packages finntk
Part of the reason for this is because [HFST is not currently pip installable](https://github.com/hfst/hfst/issues/375).
The current known good versions of HFST and OMorFi are in installed with Docker in the `docker` directory.
## License ##
This project is licensed under the Apache v2 license. The code in
`finntk/vendor` is vendorized from other projects and is licensed under their
respective licenses.## Development ##
### Release process ###
1. Make a release commit in which the version is incremented in setup.py
2. Make a git tag of this commit with `git tag v$VERSION`
3. Push release to GitHub with `git push --tags`
4. Upload to PyPI with `python3 setup.py sdist bdist_wheel` and `twine upload dist/*`