mirror of
https://github.com/Vision-CAIR/MiniGPT-4.git
synced 2025-04-05 02:20:47 +00:00
delete args
This commit is contained in:
parent
f5e5a99aa1
commit
d5d56f4918
@ -17,14 +17,12 @@ class Config:
|
||||
def __init__(self, args):
|
||||
self.config = {}
|
||||
|
||||
self.args = args
|
||||
|
||||
# Register the config and configuration for setup
|
||||
registry.register("configuration", self)
|
||||
|
||||
user_config = self._build_opt_list(self.args.options)
|
||||
|
||||
config = OmegaConf.load(self.args.cfg_path)
|
||||
# 此处做了一点修改 本项目不打算使用命令行进行运行
|
||||
user_config = args.options
|
||||
config = args
|
||||
|
||||
runner_config = self.build_runner_config(config)
|
||||
model_config = self.build_model_config(config, **user_config)
|
||||
|
Loading…
Reference in New Issue
Block a user