Skip to content

Instantly share code, notes, and snippets.

View ldrewniak's full-sized avatar

Lukas Drewniak ldrewniak

View GitHub Profile
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
trigger:
- master
pool:
vmImage: 'ubuntu-18.04'
steps:
- task: UsePythonVersion@0
displayName: 'Use Python 3.6.9'
inputs:
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
import os
from subprocess import Popen
import webbrowser
import time
mlflow_port = 5002
Popen(f"cmd /c mlflow ui --port={mlflow_port}", shell=True, stdin=None, stdout=None, stderr=None, close_fds=True)
# give a sec till this start-up
#!/bin/bash
pip install keras
pip install tensorflow
pip install sklearn
pip install mlflow
pip install azureml
pip install azureml-core
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.