Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maeln/pte
A small AI that translate French "SMS" slang to proper French. Made in Prolog.
https://github.com/maeln/pte
iut-de-nantes prolog
Last synced: 3 days ago
JSON representation
A small AI that translate French "SMS" slang to proper French. Made in Prolog.
- Host: GitHub
- URL: https://github.com/maeln/pte
- Owner: maeln
- License: gpl-3.0
- Created: 2013-03-30T13:15:26.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2016-10-20T14:48:36.000Z (about 8 years ago)
- Last Synced: 2023-03-11T18:03:21.218Z (almost 2 years ago)
- Topics: iut-de-nantes, prolog
- Language: Prolog
- Homepage:
- Size: 10.2 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Projet Technique De Première Année
===================================Traduction du langage SMS vers le Français.
-----------------------> Maël Naccache, Francisco Ruivo, Benjamin Fraquet, Merouane Bousbaa. |
> IUT de Nantes, Département Informatique, 1ère Année. |
> 2012 - 2013Ce projet, réalisé dans le cadre des projets de première année pour l'IUT de Nantes,
consistait à réaliser une intelligence artificielle, en Prolog, capable de produire une phrase
française correcte à partir d'une phrase écrite en "SMS".## Utilisation
Pour utiliser le traducteur, démarrez votre interpréteur Prolog et consultez le fichier main.pl.
Ensuite, utilisez la règle traduire/2 pour traduire votre phrase. Celle-ci produira toutes les phrases françaises possibles.# Exemple :
?- traduire('bjr komen tu va ?', E).
E = [bonjour, comment, tu, va, ?] ;
E = [bonjour, comment, tu, vas, ?] .
# Attention :L'implémentation Prolog utilisée par ce projet est [SWI-Prolog](http://www.swi-prolog.org/), il n'y a aucune garantie qu'il fonctionnera sur
d'autres implémentations.# Crédit :
Le dictionnaire phonétique français disponible dans le fichier pron.pl est adapté d'un dump du [Wiktionary](https://www.wiktionary.org/).