https://github.com/akashkthkr/546-aws-image-recognition-service
This cloud app will provide a face recognition service to users, by using cloud resources to perform deep learning on images provided by the users. The deep learning model will be provided as a service. This application will put a layer for the model to work.
https://github.com/akashkthkr/546-aws-image-recognition-service
aws aws-ecs aws-s3 aws-sqs boto3 python3
Last synced: 2 months ago
JSON representation
This cloud app will provide a face recognition service to users, by using cloud resources to perform deep learning on images provided by the users. The deep learning model will be provided as a service. This application will put a layer for the model to work.
- Host: GitHub
- URL: https://github.com/akashkthkr/546-aws-image-recognition-service
- Owner: akashkthkr
- License: mit
- Created: 2022-03-09T22:10:38.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-01-06T09:54:03.000Z (over 3 years ago)
- Last Synced: 2025-07-13T09:54:22.957Z (12 months ago)
- Topics: aws, aws-ecs, aws-s3, aws-sqs, boto3, python3
- Language: Python
- Homepage:
- Size: 93.8 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 546_AWS_Image_Recognition_Service
[](https://opensource.org/licenses/Apache-2.0)
Our cloud app will provide a face recognition service to users, by using cloud resources to perform deep learning on images provided by the users. The deep learning model will be provided as a service. This application will put a layer for the model to work.
Install Dependecies -
!/bin/bash
Download get-pip to current directory. It won't install anything, as of now
curl -O https://bootstrap.pypa.io/get-pip.py
Use python3.6 to install pip
python3 get-pip.py
This will install pip3 and pip3.6
pip3 install -r requirements.txt
## AWS Details
### SSH Details Dummy
ssh -i "Akash_key.pem" ec2-user@ec2-3-86-234-121.compute-1.amazonaws.com
### Resources Used in AWS as Naming:
```python
AWS_S3_INPUT_BUCKET_NAME = "cc-546-grp-11-input-bucket"
AWS_S3_OUTPUT_BUCKET_NAME = "cc-546-grp-11-output-bucket"
AWS_SQS_REQUEST_QUEUE_NAME = "images-requests"
AWS_SQS_RESPONSE_QUEUE_NAME = "images-responses"
REGION_NAME = "us-east-1"
AWS_ACCESS_KEY_ID = "AAAAAAAAAAAAAAA"
AWS_ACCESS_KEY_SECRET = "BBBBBBBBBBBBBBBB"
```
### We have also loaded the script at startup of the instance on AMI load:
```bash
sudo yum update -y
sudo yum install git -y
echo export AWS_ACCESS_KEY_ID="AAAAAAAAAAAAAAA" >> /etc/profile
echo export AWS_SECRET_ACCESS_KEY="BBBBBBBBBBBBBBBB" >> /etc/profile
git clone https://token@github.com/akashkthkr/546-AWS-Image-Recognition-Service.git
```
## Acknowledgements
### Team Members Group 11:
[Akash Kant](https://github.com/akashkthkr), (akant1)
[Ayush Kalani](https://github.com/ayushkalani), (akalani2)
[Nakul Vaidya](https://github.com/NakulVaidya), (nvaidya7)