File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11import asyncio
2- import json
3- import os
4- import requests
5- import time
6- import tensorneko_util as N
7- from pathlib import Path
82from dotenv import load_dotenv
93
104load_dotenv ()
1711parser .add_argument ("--base_config" , type = str , required = True )
1812parser .add_argument ("--model_config" , type = str , required = True )
1913parser .add_argument ("--result_folder" , type = str , default = "./result" )
14+ parser .add_argument ("--debug" , action = "store_true" )
2015args = parser .parse_args ()
2116
2217from hydra_vl4ai .util .config import Config
2318
2419Config .base_config_path = args .base_config
2520Config .model_config_path = args .model_config
21+ Config .debug = args .debug
2622
2723from hydra_vl4ai .agent .hydra import HydraNoRL
2824from hydra_vl4ai .util .console import logger , console
Original file line number Diff line number Diff line change 1- __version__ = "0.0.5 "
1+ __version__ = "0.0.6 "
Original file line number Diff line number Diff line change 11import tensorneko_util as N
2+ from dotenv import load_dotenv
3+
4+ load_dotenv ()
25import argparse
36parser = argparse .ArgumentParser ()
47parser .add_argument ("--base_config" , type = str , required = True )
You can’t perform that action at this time.
0 commit comments