Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/achuttarsing/inflecteur
python inflector 🌀 for French language : control gender, tense and number
https://github.com/achuttarsing/inflecteur
data-augmentation french-nlp inflection inflector nlp python
Last synced: 6 days ago
JSON representation
python inflector 🌀 for French language : control gender, tense and number
- Host: GitHub
- URL: https://github.com/achuttarsing/inflecteur
- Owner: Achuttarsing
- License: mit
- Created: 2020-12-22T21:56:22.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-08-18T13:53:49.000Z (over 3 years ago)
- Last Synced: 2024-11-08T08:54:06.763Z (12 days ago)
- Topics: data-augmentation, french-nlp, inflection, inflector, nlp, python
- Language: Python
- Homepage:
- Size: 5.01 MB
- Stars: 8
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# inflecteur
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/Achuttarsing/inflecteur/blob/main/inflecteur_demo.ipynb)inflecteur is a python inflector for french language based on the [DELA dictionary](http://infolingu.univ-mlv.fr)
## Installation :
```console
$ pip install -U transformers
$ pip install -U inflecteur
```
## How to inflect ?
```python
In [1]: from inflecteur import inflecteur
In [2]: inflecteur = inflecteur()
In [3]: inflecteur.load_dict()
```
### Control tense :
```python
In [4]: inflecteur.inflect_sentence("Elle boit un café et mange un croissant.", tense='Futur')
'Elle boira un café et mangera un croissant .'In [5]: inflecteur.inflect_sentence("Elle boit un café et mange un croissant.", tense='Passé simple')
'Elle but un café et mangea un croissant .'
```### Control gender :
```python
In [6]: inflecteur.inflect_sentence("Elle boit un café et mange un croissant.", gender='m')
'Il boit un café et mange un croissant .'
```### Control number :
```python
In [7]: inflecteur.inflect_sentence("Elle boit un café et mange un croissant.", number='p')
'Elles boivent des cafés et mangent des croissants .'
```## Get word forms :
```python
In [8]: inflecteur.get_word_form('pris')
```
| | lemma | gram | forme | gender | number | tense | person |
|---:|:--------|:---------|:--------|:---------|:---------|:--------------|:---------|
| 0 | prendre | Verbe | Kms | M | singular | Passé composé | |
| 1 | prendre | Verbe | Kmp | M | plural | Passé composé | |
| 2 | prendre | Verbe | J1s | | singular | Passé simple | Je |
| 3 | prendre | Verbe | J2s | | singular | Passé simple | Tu |
| 4 | prendre | Verbe | Kms | M | singular | Passé composé | |
| 5 | prendre | Verbe | J1s | | singular | Passé simple | Je |
| 6 | prendre | Verbe | J2s | | singular | Passé simple | Tu |
| 7 | pris | Adjectif | ms | M | singular | | |
| 8 | pris | Adjectif | mp | M | plural | | |