-
Notifications
You must be signed in to change notification settings - Fork 9.5k
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
Is there any plugin to simplify the preview of configuration? #7557
Comments
Sorry, I do not know whether there exits some plugins that can help preview configurations. |
VSCode extension
|
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: mmdet print_config",
"type": "python",
"request": "launch",
"program": "${cwd}/tools/misc/print_config.py",
"args": ["${file}"],
"console": "integratedTerminal",
"justMyCode": true
}
]
} |
Thank you! I've tried these tools, and they are useful for me:) |
Hi, thank you for great codes! I find the configuration files have really deep hierarchical structures, which is defined by
_base_
. This kind of design can promote reusing codes but make difficult to change and preview the configurations. For example, if I want to change some arguments, I have to search all_base_
configurations, and it is time-consuming.For
python
, plugins such asPylance
have been developed for IDEs to help dive into the codes but mmdet-style configurations are not supported by these plugins. I wonder if there is some plugins that can help preview configurations? Thank you very much!The text was updated successfully, but these errors were encountered: