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

Azure – databricks deployment bicep suddenly failing

The following bicep deployment has suddenly started failing and I do not understand why var managedResourceGroupName = 'rg-metadata-${dataBricksName}' resource databrickworkspace 'Microsoft.Databricks/workspaces@2018-04-01' = { name: dataBrickName location: location sku: { name: dataBrickPricingTier } properties: { managedResourceGroupId: managedResourceGroup.id parameters: { enableNoPublicIp: {…

VIEW QUESTION

Exploding Column in Mysql Databricks row-wise

I have an array type column subscription in my table with columns Sample Table +-------+--------+----+----------+ |user_id| Subscription|Activity | +-------+-------------+----------+ |111 |[A,C,B] |20 | |-------+-------------+----------+ |222 |[C,A] |10 | |-------+-------------+----------+ |333 |[B] | 5 | +-------+-------------+----------+ I want to change my…

VIEW QUESTION
Back To Top
Search