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