This project is related to the Kegel challenge. In this project, the goal is to classify drugs. In this project, a decision tree was used to classify drugs, and by using it, we achieved high accuracy in drug classification.
- python3.11
- install requirement.txt
We have also prepared a Docker file for this implementation of this project, which is located in the link below.
# load docker image
docker load -i <docker_tar_file>
# run docker image in background
docker run -d -it <id_image>
# Show running Dockers
docker ps
# Run docker container integrated
docker exec -it <container_id> /bin/bash
You can use the following commands to build the Docker image.
docker build .
# Run the built Docker image file in integrated
docker run -it <image-ID> /bin/bash