Git Product home page Git Product logo

examples's Introduction

Layer Example Projects

This repository contains example projects that you can use to get started with Layer.

Layer is a collaborative MLOps platform where you can build, train, version and share your machine learning (ML) models.

Install Layer

The first step is to install the Layer SDK:

pip install layer-sdk

Clone the examples repository

The first step is to clone this repository:

git clone https://github.com/layerai/examples

Select an example project

Next, select one example project and change into that folder. Let's use the Titanic example for illustration:

cd examples/titanic

Open the associated notebook or Python script and run it. Layer runs your project and places the generated entities in the appropriate Discover tabs.

Use the generated entities in a Jupyter Notebook

Entities generated with Layer can also be accessed in a Jupyter Notebook. Layer allows you to access the datasets, feature sets, and models.

First, let's look at how to access the created datasets:

import layer
dataset = layer.get_dataset('layer/titanic/datasets/passengers')

The model can be accessed using Layer get_model function:

import layer
model = layer.get_model('layer/titanic/models/survival_model')

The model can be used to make predictions right away:

df = layer.get_dataset("passengers").to_pandas()
passenger = df[['Pclass', 'Sex', 'Age', 'SibSp', 'Parch', 'Fare']]
survival_probability = model.get_train().predict_proba(passenger.sample())[0][1]
print(f"Survival Probability: {survival_probability:.2%}")

# > Survival Probability: 68.37%

Next steps

To learn more about using layer, checkout the official docs.

You can also join our community on Slack to learn and engage with other MLOps enthusiasts.

examples's People

Contributors

mwitiderrick avatar mecevit avatar

Watchers

James Cloos 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.