Skip to content

Commit

Permalink
Miscellaneous improvements
Browse files Browse the repository at this point in the history
* Miscellaneous improvements

Added required dependencies in the setup script
Improved logging during dataset creation
Added README.md file

Change-Id: I67e98938f3660656d2ced916f258dfe5d475ecd3

* Readme file location correction

Corrected the location of the README.md file

Change-Id: I89b86b7471123d653592cd98f513ff25181d2520

* Environment variable correction

Added default value for an environmental variable

Change-Id: I81ca8f427c78aaec62d3eef9bad47d685e2a84ba
  • Loading branch information
atsag authored Jul 22, 2024
1 parent 2f72987 commit d25fea4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exponential-smoothing-predictor/src/runtime/Predictor.py
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ def main():

#Change to the appropriate directory in order i) To invoke the forecasting script appropriately and ii) To store the monitoring data necessary for predictions
from sys import platform
if platform == "win32" or bool(os.environ["TEST_RUN"]):
if platform == "win32" or bool(os.environ.get("TEST_RUN",False)):
print(os.listdir("."))
os.chdir("../r_predictors")
# linux
Expand Down

0 comments on commit d25fea4

Please sign in to comment.