End-to-End-Chest-Cancer-Classification-using-MLflow-DVC
No description available.
File Explorer
- .gitignore
- config
- main.yaml
- config.yaml
- model.h5
- 01_data_ingestion.ipynb
- 02_prepare_base_model.ipynb
- 03_model_trainer.ipynb
- 04_model_evaluation_with_mlflow.ipynb
- trials.ipynb
- __init__.py
- data_ingestion.py
- model_evaluation_mlflow.py
- model_trainer.py
- prepare_base_model.py
- __init__.py
- configuration.py
- __init__.py
- __init__.py
- config_entity.py
- __init__.py
- prediction.py
- stage_01_data_ingestion.py
- stage_02_prepare_base_model.py
- stage_03_model_trainer.py
- stage_04_model_evaluation.py
- __init__.py
- common.py
- __init__.py
- index.html
- .dvcignore
- .gitignore
- app.py
- Dockerfile
- dvc.lock
- dvc.yaml
- LICENSE
- main.py
- params.yaml
- README.md
- requirements.txt
- scores.json
- setup.py
- template.py
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
apt-get
View Details ▼
apt-get
Debian and Ubuntu package management utility.
Search for packages using `apt-cache`.
It is recommended to use `apt` when used interactively in Ubuntu versions 16.04 and later.
sudo apt-get update
Update the list of available packages and versions (it's recommended to run this before other `apt-get` commands):
sudo apt-get install {{package}}
Install a package, or update it to the latest available version:
sudo apt-get remove {{package}}
Remove a package:
newgrp
View Details ▼
newgrp
Switch primary group membership.
newgrp {{group_name}}
Change user's primary group membership:
newgrp
Reset primary group membership to user's default group in `/etc/passwd`:
usermod
View Details ▼
usermod
Modify a user account.
See also: `users`, `useradd`, `userdel`.
sudo usermod {{[-l|--login]}} {{new_username}} {{username}}
Change a username:
sudo usermod {{[-u|--uid]}} {{id}} {{username}}
Change a user ID:
sudo usermod {{[-s|--shell]}} {{path/to/shell}} {{username}}
Change a user shell:
