Skip to content

Telegram bot to predict age range using with AWS Rekognition

Notifications You must be signed in to change notification settings

canack/AgePredictionBot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Age Prediction Bot for Telegram

Bot makes a guess on age range with using AWS Rekognition service.

If you want give a try directly, send a message @AgePredictionBot on telegram!

Demo

demo

Usage/Example:

Note :

For using docker:

# You should set up your aws credentials before using this instructions!

git clone --depth=1 https://github.com/canack/AgePredictionBot
cd AgePredictionBot
docker build -t age-prediction:latest -f age-prediction.Dockerfile .
docker run --rm -e BOT_TOKEN="your_bot_token" -e AWS_ACCESS_KEY_ID="aws_access_key_id" -e AWS_SECRET_ACCESS_KEY="aws_secret_access_key" -e AWS_REGION="aws_region" age-prediction:latest

Or you can directly run:

# You should set up your aws credentials before using this instructions!

git clone --depth=1 https://github.com/canack/AgePredictionBot
cd AgePredictionBot
cd cmd/agebot
go mod tidy
BOT_TOKEN="your_bot_token" go run .

License : MIT

Feel free to contribute!