https://github.com/crispengari/tone-analyzer-text-machine-learning
This is a simple Machine learning app detects the tone used by the user of the application on typed text using ibm api for AI and ML. This App also include a Tkinter GUI.
https://github.com/crispengari/tone-analyzer-text-machine-learning
Last synced: 3 days ago
JSON representation
This is a simple Machine learning app detects the tone used by the user of the application on typed text using ibm api for AI and ML. This App also include a Tkinter GUI.
- Host: GitHub
- URL: https://github.com/crispengari/tone-analyzer-text-machine-learning
- Owner: CrispenGari
- Created: 2020-12-02T11:02:39.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2020-12-02T11:09:25.000Z (almost 5 years ago)
- Last Synced: 2025-03-27T17:02:43.422Z (7 months ago)
- Language: Python
- Size: 354 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# What is this?
This is a simple Machine learning app detects the tone used by the user of
the application on typed text using ibm api for AI and ML.
This App also include a Tkinter GUI.
## Application capabilites
* identifying the tone from the text
* notifying the user with the tone detected from the text
## packages used
* ``ibm-watson`` - ML pre-trainned models
* ``tkinter`` - User Interface
* ``pillow`` -images on the UI
* ``json`` - formarting text on deburging
* ``win10toast`` - for windows notification
## Installation of packages
### ``ibm-watson``
This package allows us to interact with ibm api to perform some `Matchine Learning Stuff` The installation is as
follows:
``
$ pip install --upgrade "ibm-watson>=4.0.1"
``
### ``pillow``
This package allows us to use images in our tkinter app
``
$ python -m pip install pillow
``## ``win10toast``
This package allows us to make notifications on windows 10 Computers.
``
$ python -m pip install win10toast
``
## Documentation Reference
For the reference of the docummentation of ibm visit [this link](https://cloud.ibm.com/apidocs/tone-analyzer?code=python)
## Why this simple App?
This application was just build for practising purposes.