Skip to content

Commit

Permalink
chore(main,readme): minor improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
jacksonpradolima committed Mar 10, 2024
1 parent d4dabce commit a2a4e9d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ In order to use this `version`, use any Contextual-MAB available, for instance,
- [Running for an HCS system](#running-for-an-hcs-system)
- [Whole Test Set Strategy](#whole-test-set-strategy)
- [Variant Test Set Strategy](#variant-test-set-strategy)
- [Analysis of COLEMAN4HCS Performance](#analysis-of-coleman4hcs-performance)
- [References](#references)
- [Contributors](#Contributors)
----------------------------------
Expand Down Expand Up @@ -304,7 +305,7 @@ Note: you can execute all the MAB and Contextual MAB policies together if you ha
To execute **COLEMAN** for a non-HCS system, first update the variables in the provided **TOML** file:

- `datasets_dir = "examples"`
- `datasets = ["fakedata"]`
- `datasets = ["fakedata"]`

Subsequently, you can run the program with the following command:

Expand Down
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ def store_experiments(csv_file, scenario):
);
""")

df = conn.read_csv(csv_file, delimiter=';', quotechar='"', header=True)
conn.read_csv(csv_file, delimiter=';', quotechar='"', header=True)

# Insert the DataFrame into the 'experiments' table
conn.execute("INSERT INTO experiments SELECT * FROM df;")
Expand Down

0 comments on commit a2a4e9d

Please sign in to comment.