-
Notifications
You must be signed in to change notification settings - Fork 709
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
📚 Update the installation instructions (#1790)
* Update the installation instructions * Add name arg to Folder * Update the installation instructions
- Loading branch information
1 parent
88990e0
commit 2fc5a13
Showing
12 changed files
with
146 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
❯ anomalib -h | ||
To use other subcommand using `anomalib install` | ||
To use any logger install it using `anomalib install -v` | ||
╭─ Arguments ───────────────────────────────────────────────────────────────────╮ | ||
│ Usage: anomalib [-h] [-c CONFIG] [--print_config [=flags]] {install} ... │ | ||
│ │ | ||
│ │ | ||
│ Options: │ | ||
│ -h, --help Show this help message and exit. │ | ||
│ -c, --config CONFIG Path to a configuration file in json or yaml format. │ | ||
│ --print_config [=flags] │ | ||
│ Print the configuration after applying all other │ | ||
│ arguments and exit. The optional flags customizes the │ | ||
│ output and are one or more keywords separated b comma.│ | ||
│ The supported flags are: comments, skip_default, │ | ||
│ skip_null. │ | ||
│ │ | ||
│ Subcommands: │ | ||
│ For more details of each subcommand, add it as an argument followed by │ | ||
│ --help. │ | ||
│ │ | ||
│ │ | ||
│ Available subcommands: │ | ||
│ install Install the full-package for anomalib. │ | ||
│ │ | ||
╰───────────────────────────────────────────────────────────────────────────────╯ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Get help for the installation arguments | ||
anomalib install -h | ||
|
||
# Install the full package | ||
anomalib install | ||
|
||
# Install with verbose output | ||
anomalib install -v | ||
|
||
# Install the core package option only to train and evaluate models via Torch and Lightning | ||
anomalib install --option core | ||
|
||
# Install with OpenVINO option only. This is useful for edge deployment as the wheel size is smaller. | ||
anomalib install --option openvino |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
❯ anomalib install -h | ||
To use other subcommand using `anomalib install` | ||
To use any logger install it using `anomalib install -v` | ||
╭─ Arguments ───────────────────────────────────────────────────────────────────╮ | ||
│ Usage: anomalib [options] install [-h] │ | ||
│ [--option {full,core,dev,loggers,notebooks,openvino}] │ | ||
│ [-v] │ | ||
│ │ | ||
│ │ | ||
│ Options: │ | ||
│ -h, --help Show this help message and exit. │ | ||
│ --option {full,core,dev,loggers,notebooks,openvino} │ | ||
│ Install the full or optional-dependencies. │ | ||
│ (type: None, default: full) │ | ||
│ -v, --verbose Set Logger level to INFO (default: False) │ | ||
│ │ | ||
╰───────────────────────────────────────────────────────────────────────────────╯ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters