Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
pseudotensor committed Nov 6, 2024
1 parent 711ddb3 commit f7971ea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions openai_server/agent_tools/driverless_ai_data_science.py
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ def main():
parser = argparse.ArgumentParser(description="Run Driverless AI experiments from command line.")

# instance
parser.add_argument("--engine", "--dai_engine", default="daidemo",
parser.add_argument("--engine", "--dai_engine", default=os.getenv('DAI_ENGINE', "daidemo"),
help="Name of the DAI engine")
parser.add_argument("--client_id", "--dai_client_id", default=os.getenv('DAI_CLIENT_ID', "hac-platform-public"),
help="Name of client_id")
Expand Down Expand Up @@ -448,7 +448,7 @@ def main():
help="Source type of the dataset (default: s3)")

# Creating new experiment
parser.add_argument("--target-column",
parser.add_argument("--target-column", "--target",
default="Churn?",
required=False,
help="Name of the target column for prediction")
Expand Down
2 changes: 1 addition & 1 deletion src/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "b437c5a5e6089ff42c2fb556b20df0b0a32dcece"
__version__ = "711ddb361d5ce3b694628bab066a2537e38f1143"

0 comments on commit f7971ea

Please sign in to comment.