GithubHelp home page GithubHelp logo

mlops_zoomcamp's Introduction

mlops_zoomcamp

Running MLOPS Zoomcamp on GCP

following tutorial is good to learn on how to

connect to GCE from VE Code

To create enviornment with conda

conda create -n <name_of_enviornment> python=3.9

To activate enviornment

conda activate <name_of_enviornment>

to install packages.

  1. Create requirements.txt
  2. do the following pip install -r requirements.txt

if pip install requirements.txt does not work then do the following

cat requirements.txt | sed -e '/^\s*#.$/d' -e '/^\s$/d' | xargs -n 1 python -m pip install

to check packages

pip list

to run mlfow do the following inside the env

mlflow ui --backend-store-uri sqlite:///mlflow.db

The port at 5000 should be free, if not. Then run the following command

lsof -i :5000 and then kill -9 <port_number>

If you are not able to see the experiment runs in mlflow ui then do the following

  1. Clear the 5000 port

  2. Close anything in it with the following commmand a. lsof -i :5000 b. kill -9 <port_number>

  3. Open the models folder created earlier.

  4. Move there

  5. Run the following command mlflow ui --backend-store-uri sqlite:///mlflow.db

mlops_zoomcamp's People

Contributors

bcthakre avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.