-
Notifications
You must be signed in to change notification settings - Fork 3
Home
Welcome to the group3 wiki!
They analyze 54,306 images of plant leaves, which have a spread of 38 class labels assigned to them. Each class label is a crop-disease pair, and they make an attempt to predict the crop-disease pair given just the image of the plant leaf. We choose googleNet architecture based on best accuracy with 22 layers We choose transfer learning mechanism We choose data type: color
$ curl “https://s3.amazonaws.com/aws-cli/awscli-bundle.zip” -o “awscli-bundle.zip” $ unzip awscli-bundle.zip $ sudo ./awscli-bundle/install -i /usr/local/aws -b /usr/local/bin/aws $ /usr/local/bin/aws --version
in Console select instance aws select Ubuntu image Choose an instance type create a new key pair Launch instance connect and set the permissions connect in the terminal with the ssh -i namekeypair ubuntu@…
1.Uninstall old versions: $ sudo apt-get remove docker docker-engine docker.io containerd runc 2.Set up Repository : $sudo apt-get update 3.Add the docker ceo repo: $ sudo yum-config-manager –add-repo https://download.docker.com/linux/centos/docker-ce.repo 4.Install packages: sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common 5. Add Docker’s official GPG key:$ sudo apt-key fingerprint 0EBFCD88 pub rsa4096 2017-02-22 [SCEA] 9DC8 5822 9FC7 DD38 854A E2D8 8D81 803C 0EBF CD88 uid [ unknown] Docker Release (CE deb) [email protected] sub rsa4096 2017-02-22 [S] 6. Install the latest version of Docker Engine: $ sudo apt-get install docker-ce docker-ce-cli containerd.io 8. sudo groupadd docker 9. sudo usermod -aG docker $USER 10. log out 11. log in again 12. docker run hello-world