We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b08dab commit 95c9dc2Copy full SHA for 95c9dc2
ayb/ayb.py
@@ -6,10 +6,10 @@
6
7
def main():
8
import params
9
- ayb(params.param2default, "local")
+ run_ayb(params.param2default, "local")
10
11
12
-def ayb(param2val, run_location):
+def run_ayb(param2val, run_location):
13
14
if run_location == 'local':
15
param2val['save_path'] = "../" + param2val['save_path'] # "models/"
ayb/job.py
@@ -1,11 +1,12 @@
1
import pandas as pd
2
-from ayb import ayb
+from ayb import run_ayb
3
4
5
def main(param2val):
"""This function is run by Ludwig on remote workers."""
+ location = "ludwig_local"
- performance = ayb(param2val)
+ performance = run_ayb(param2val, location)
print(performance)
series_list = []
ayb/src/__init__.py
0 commit comments