-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make s3 bucket name and s3 region required parameters in dashboard wr…
…apper. Make hardware_metrics optional. Fix custom csv path issue when fetching from s3 (#46) * Make s3 bucket name and s3 region required parameters in dashboard wrapper. Make hardware_metrics optional. Fix custom csv path issue when fetching from s3 * remove DEFAULT in csv path * formatting * change csv defaults * ignore csv paths file + remove print statement * address PR comments * fix unittest * ignore csv_paths file to prevent changing of defaults
- Loading branch information
1 parent
7256999
commit 36b4511
Showing
5 changed files
with
36 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,7 @@ web_files | |
*.csv | ||
coverage.json | ||
results.xml | ||
csv_paths.py | ||
|
||
#Venv | ||
.venv*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,2 @@ | ||
S3_REGION = "us-east-2" | ||
DEFAULT_BUCKET_NAME = "ag-dashboard-test" # TODO: Change default bucket name | ||
CSV_FILES_DIR = "dev_data/" | ||
PER_DATASET_DEFAULT_CSV_PATH = ( | ||
"https://d24iwcyhf6yavw.cloudfront.net/dev_data/all_data.csv" # TODO: Change default csv path | ||
) | ||
AGG_FRAMEWORK_DEFAULT_CSV_PATH = ( | ||
"https://d24iwcyhf6yavw.cloudfront.net/dev_data/autogluon.csv" # TODO: Change default csv path | ||
) | ||
HARDWARE_METRICS_DEFAULT_CSV_PATH = ( | ||
"https://d24iwcyhf6yavw.cloudfront.net/dev_data/hardware_metrics.csv" # TODO: Change default csv path | ||
) | ||
CLOUDFRONT_DOMAIN = "https://d24iwcyhf6yavw.cloudfront.net" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
PER_DATASET_CSV_PATH = "https://d24iwcyhf6yavw.cloudfront.net/dev_data/all_data.csv" | ||
AGG_FRAMEWORK_CSV_PATH = "https://d24iwcyhf6yavw.cloudfront.net/dev_data/autogluon.csv" | ||
HARDWARE_METRICS_CSV_PATH = "https://d24iwcyhf6yavw.cloudfront.net/dev_data/hardware_metrics.csv" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters