8000 GitHub - jtupayachi/yolov4
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

jtupayachi/yolov4

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 

Repository files navigation

Mushroom Detector using YOLOv4, Streamlit and Docker

Installation Steps:

Docker image download:

Create a folder in your current home directory

  • This folder will hold the Mushroom Detector.
mkdir mushroom_app

Download the Docker image

  • It is required to download the application (*.tar.gz) file via ftp
ftp sadie.ise.utk.edu
  • user: anonymous
  • pass: anonymous
tick
  • By using tick you can monitor progress
get mushroom_app_21032022_latest.tar.gz
  • Close and exit the ftp conection
exit

Set up and start:

Unzip the contents using gzip

  • Now, the Docker image will be ready to load it into your docker installation
gzip -d mushroom_app_21032022_latest.tar.gz
  • By applying "load" the image will be uploaded to the current Docker installation
sudo docker load -i mushroom_app_21032022_latest.tar
  • Now create a detached container
sudo docker run -dit -p  8501:8501 mushroom_app:latest
  • Get the container_id
sudo docker ps -a
  • Execute initialization script
sudo docker exec <container_id> /app/init_script.sh -dit

Use:

  • The mushroom detector now is working at <your_server_ip_addr>:8501

  • You can try the application at: > Mushroom detector

Preview

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0