skip to Main Content

Azure – Getting empty experiment run using mlflow databricks

I am trying to run the following code iter_max = 100 CC = 1 save_model = False with mlflow.start_run(run_name=run_name, experiment_id=experiment.experiment_id, nested=True) as run: text_clf = Pipeline([ ('vect', CountVectorizer()), ('tfidf', TfidfTransformer()), ('clf',LogisticRegression(max_iter=iter_max, C=CC))]) text_clf.fit(X_train, y_train) run_id = mlflow.active_run().info.run_id` But I get…

VIEW QUESTION

Converting pyspark.sql.Rowtype data to Json string eliminating values in Azure Databricks NB

I have below pyspark row type data: indv_msg = [Row(cbm_json_output=Row(country_code='USA', date='06-10-2023', date_epoch='1696550400', id='USA-001535-1696550400', interfaceVersion='1.0.0', opmode_car_door=Row(health_category='GREEN', msg_id='1', num_yellow_preds_in_last_14_days=0, reason=None, reasonDetail=None), opmode_landing_door=Row(health_category='GREEN', msg_id='1', reason=None, reasonDetail=None), sensor=Row(component_type=None, health_category=None, landing_priority=None, msg_id='1', num_yellow_preds_in_last_14_days=None, reason=None, reasonDetail=None), unit_id='001535')) While trying to convert to json string, it is…

VIEW QUESTION

Ubuntu – ODBC driver not working – Azure databricks unity catalog enabled

I am trying to connect to sql server from databricks using pyodbc facing below issue import pyodbc sql_server_url='server_url' sqlDB='db-dev' SQL_DB_USER='user' SQL_DB_PASS='123' conn = pyodbc.connect('DRIVER={ODBC Driver 17 for SQL Server};SERVER=' + sql_server_url +';DATABASE=' + sqlDB + ';UID='+SQL_DB_USER+';PWD='+SQL_DB_PASS) Error: ('01000', "[01000] [unixODBC][Driver…

VIEW QUESTION
Back To Top
Search