Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Helias/Speech-Gender-Recognition-Bot
Telegram Bot that recognize your gender
https://github.com/Helias/Speech-Gender-Recognition-Bot
bot linear-regression machine-learning python python-telegram-bot suppoert-vector-machine telegram-bot
Last synced: 3 months ago
JSON representation
Telegram Bot that recognize your gender
- Host: GitHub
- URL: https://github.com/Helias/Speech-Gender-Recognition-Bot
- Owner: Helias
- License: agpl-3.0
- Created: 2019-03-17T16:38:51.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-06-17T22:43:57.000Z (5 months ago)
- Last Synced: 2024-07-18T15:29:23.952Z (4 months ago)
- Topics: bot, linear-regression, machine-learning, python, python-telegram-bot, suppoert-vector-machine, telegram-bot
- Language: R
- Size: 193 KB
- Stars: 7
- Watchers: 4
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Speech-Gender-Recognition-Bot
This is a Telegram Bot that recognize the gender from a vocal message, just sent to him the vocal message.
The bot is online and available on Telegram at **[@GenderSpeechBot](https://t.me/GenderSpeechBot)**
![Telegram @GenderBot](images/genderspeech.png)
This project is based on [this](https://github.com/Valentjno/SpeechGenderRecognition/).
## Requirements
If you want to install locally this bot, it requires:
**Python3.6** (numpy do not officially support python 3.8) and the follow dependencies:- telegram
- python-telegram-bot
- pydub
- scikit-learnTo install the Python dependencies just use:
```
$ pip3 install -r requirements.txt
```**R** and the follow dependencies:
- tuneR
- seewaveIn a debian-based you can install ffmpeg, R and tuneR dependencies with:
```
$ sudo apt install r-base
$ sudo apt install gfortran libsndfile1-dev libfftw3-dev ffmpeg
```Afterwards you can install the packages with:
```
$ R
$ install.packages("tuneR")
$ install.packages("seewave")
$ install.packages("pbapply")
$ install.packages("fftw")
```## Usage
If you have never created a Telegram Bot, contact **[@Botfather](https://t.me/Botfather)** and make a new one choosing a username and getting the API token.
Afterwards, copy "token.conf.dist" into **"token.conf"** and write your telegram bot token here.
Finally you can run your bot! Use:
```
$ python3 main.py
```Enjoy!
## Credits
- **[Helias](https://github.com/Helias)**
- **[Valentjno](https://github.com/Valentjno)**