All Projects → osin-vladimir → mlflow_tutorial

osin-vladimir / mlflow_tutorial

Licence: other
Managing machine learning life-cycle with MLflow tutorial

Programming Languages

Jupyter Notebook
11667 projects

Projects that are alternatives of or similar to mlflow tutorial

Mvvmframe
🏰 MVVMFrame for Android 是一个基于Google官方推出的Architecture Components dependencies(现在叫JetPack){ Lifecycle,LiveData,ViewModel,Room } 构建的快速开发框架。有了MVVMFrame的加持,从此构建一个MVVM模式的项目变得快捷简单。
Stars: ✭ 218 (+938.1%)
Mutual labels:  lifecycle
domino-research
Projects developed by Domino's R&D team
Stars: ✭ 74 (+252.38%)
Mutual labels:  mlflow
RxComponentLifecycle
Rx binding of new Android Architecture Component Lifecycle
Stars: ✭ 57 (+171.43%)
Mutual labels:  lifecycle
Ulfberht
🗡️ A small but powerful & opinionated DI library. Written in Kotlin, and powered by annotation processing.
Stars: ✭ 234 (+1014.29%)
Mutual labels:  lifecycle
event extract master
支持百度竞赛数据的中文事件抽取,支持ace2005数据的英文事件抽取,本人将苏神的三元组抽取算法中的DGCNN改成了事件抽取任务,并将karas改成了本人习惯使用的pytorch,在数据加载处考虑了各种语言的扩展
Stars: ✭ 43 (+104.76%)
Mutual labels:  mlflow
MVVMQuick
🚀使用MVVMQuick快速构建您的MVVM结构项目!(Quickly start projects with MVVMQuick!)
Stars: ✭ 23 (+9.52%)
Mutual labels:  lifecycle
Android Disposebag
Automatically dispose RxJava 2 streams on Android using Lifecycle events.
Stars: ✭ 200 (+852.38%)
Mutual labels:  lifecycle
incremental training
Repo that relates to the Medium blog 'Keeping your ML model in shape with Kafka, Airflow' and MLFlow'
Stars: ✭ 110 (+423.81%)
Mutual labels:  mlflow
LifecycleMvp
No description or website provided.
Stars: ✭ 20 (-4.76%)
Mutual labels:  lifecycle
mlflow-gocd
GoCD plugins to work with MLFlow as model repository in a CD flow
Stars: ✭ 26 (+23.81%)
Mutual labels:  mlflow
Jetpack Mvvm Scaffold
人生苦短,让脚手架为你节省时间。(目前作为《最佳实践》项目的 Dev 版来优先更新)
Stars: ✭ 239 (+1038.1%)
Mutual labels:  lifecycle
react-hooks-lifecycle
⚛️ 🪝 ⏳ React hooks lifecycle diagram: Functional components lifecycle explained
Stars: ✭ 194 (+823.81%)
Mutual labels:  lifecycle
scene-recognition-pytorch1.x
Evaluate wandb, tensorboard, neptune, mlflow, etc
Stars: ✭ 37 (+76.19%)
Mutual labels:  mlflow
Flow
Flow is a Swift library for working with asynchronous flows and life cycles
Stars: ✭ 225 (+971.43%)
Mutual labels:  lifecycle
comet-for-mlflow
Comet-For-MLFlow Extension
Stars: ✭ 48 (+128.57%)
Mutual labels:  mlflow
Unpeek Livedata
LiveData 数据倒灌:别问,问就是不可预期 - Perfect alternative to SingleLiveEvent, supporting multiple observers.
Stars: ✭ 208 (+890.48%)
Mutual labels:  lifecycle
TeamManagerApp
A sample app structure using the MVVM architecture LiveData, RxJava, ViewModel, Room and the Navigation Arch Components.
Stars: ✭ 36 (+71.43%)
Mutual labels:  lifecycle
ParkingDemo
Taipei City Parking Lot Information Query System Demo
Stars: ✭ 18 (-14.29%)
Mutual labels:  lifecycle
compost
Manage lifecycle of stateful components
Stars: ✭ 15 (-28.57%)
Mutual labels:  lifecycle
fuseml
FuseML aims to provide an MLOps framework as the medium dynamically integrating together the AI/ML tools of your choice. It's an extensible tool built through collaboration, where Data Engineers and DevOps Engineers can come together and contribute with reusable integration code.
Stars: ✭ 73 (+247.62%)
Mutual labels:  mlflow

Managing ML-lifecycle with MLflow

Installation

  1. Clone this repository using git or download using Github interface

  2. Install miniconda distribution for python 3.7 -> link

  3. Open Anaconda Prompt (Miniconda 3) navigate to the tutorial folder and install requirements:

    • Optional: you can create separate conda environment for this tutorial from environment file:
      conda env create -f conda.yaml
      
      conda activate mlflow-tutorial
      
    • Installing requirements from requirements.txt file:
      pip install -r requirements.txt -f https://download.pytorch.org/whl/torch_stable.html
      
  4. Launch Jupyter Lab from from the tutorial directory:

    jupyter lab
    
  5. Launch MLflow server:

    mlflow server --backend-store-uri="sqlite:///C:\\path\\to\\project_folder\\backend\\mlflow_data.db" 
                  --default-artifact-root="file:///C:\\path\\to\\project_folder\\artifact_store\\"
    
    • Parameters:

      • backend-store-uri - URI to which to persist experiment and run data (sqlite database in our case).
      • default-artifact-root - Local or S3 URI to store artifacts, for new experiments (local folder in our case).
    • Hint: you can launch MLflow server also from terminal inside Jupyter Lab interface.

  6. Make sure that you can access mlflow server and jupyter notebook from your browser :

Note: There could be some minor changes in the dependencies and files, thus make sure to double-check prior to the event. Note: Tutorial functionality was tested on Windows 10.

Congrats! You are ready good to go!

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].