-
Notifications
You must be signed in to change notification settings - Fork 958
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WIP]add other devices supported model list #2259
Open
zhangyubo0722
wants to merge
1
commit into
PaddlePaddle:develop
Choose a base branch
from
zhangyubo0722:add_other_devices_model_list
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,11 +16,14 @@ | |
import argparse | ||
import subprocess | ||
import sys | ||
import shutil | ||
import tempfile | ||
from pathlib import Path | ||
|
||
from . import create_pipeline | ||
from .inference.pipelines import create_pipeline_from_config, load_pipeline_config | ||
from .repo_manager import setup, get_all_supported_repo_names | ||
from .utils.cache import CACHE_DIR | ||
from .utils import logging | ||
from .utils.interactive_get_pipeline import interactive_get_pipeline | ||
|
||
|
@@ -65,6 +68,7 @@ def parse_str(s): | |
|
||
################# install pdx ################# | ||
parser.add_argument("--install", action="store_true", default=False, help="") | ||
parser.add_argument("--clear_cache", action="store_true", default=False, help="") | ||
parser.add_argument("plugins", nargs="*", default=[]) | ||
parser.add_argument("--no_deps", action="store_true") | ||
parser.add_argument("--platform", type=str, default="github.com") | ||
|
@@ -159,6 +163,15 @@ def serve(pipeline, *, device, use_hpip, serial_number, update_license, host, po | |
run_server(app, host=host, port=port, debug=False) | ||
|
||
|
||
def clear_cache(): | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. clear_cache 函数移到.utils.cache中,同时clear_cache()可以接受参数控制删除CACHE下的什么内容 |
||
cache_dir = Path(CACHE_DIR) / "official_models" | ||
if cache_dir.exists() and cache_dir.is_dir(): | ||
shutil.rmtree(cache_dir) | ||
logging.info(f"Successfully cleared the cache models at {cache_dir}") | ||
else: | ||
logging.info(f"No cache models found at {cache_dir}") | ||
|
||
|
||
# for CLI | ||
def main(): | ||
"""API for commad line""" | ||
|
@@ -180,6 +193,8 @@ def main(): | |
host=args.host, | ||
port=args.port, | ||
) | ||
elif args.clear_cache: | ||
clear_cache() | ||
else: | ||
if args.get_pipeline_config is not None: | ||
interactive_get_pipeline(args.get_pipeline_config, args.save_path) | ||
|
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
改为可接受参数,参数值可以对应CACHE_DIR下的目录名(或者是相应的),默认是删除全部