Skip to content

Commit

Permalink
fixing the code
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacmg committed Jan 16, 2024
1 parent 5774706 commit 2449e20
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: get-date
run: echo "set-output TAG=date::$(date +%s))"
- name: Build the Docker image
run: docker build . --file Dockerfile --tag aistream1/flow_sweep:latest1
run: docker build . --file Dockerfile --tag aistream1/flow_sweep:latest
- name: docker-login
run: docker login -u aistream1 -p ${{secrets.DOCKER_SEC}}
- name: pus
Expand Down
4 changes: 2 additions & 2 deletions wandb_conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def make_config(wandb_config: Dict, base_config_path: str):
:param base_config_path: The path to the base config file
:type base_config_path: str
:return: The modified config file with the proper values
:rtype: _type_
:rtype: dict
"""
with open(base_config_path) as f:
data = DynamicAccessNestedDict(json.load(f))
Expand All @@ -60,7 +60,7 @@ def make_config(wandb_config: Dict, base_config_path: str):


def main():
print("Running the code now")
print("Running the sweep code now")
result_wandb = convert_args(sys.argv)
with open("config.json", "w+") as f:
# A limitation of this script is it only will get internet web
Expand Down

0 comments on commit 2449e20

Please sign in to comment.