Giter VIP home page Giter VIP logo

edge-anomaly-detection's Introduction

edge-anomaly-detection

Build Config and Image Stream

oc apply -f serve.bc.yaml

Seldon Deployment

oc apply -f serve.selcon.yaml

You can change MODEL_STDDEV_MULTIPLIER (defines a threshold for anomaly detection - mean + std dev * multiplier) and MODEL_WINDOW_SIZE (how many historiacl values are used to compute mean and std dev) env vars to modify the parameters for anomaly detection

Example query

Passing in a number 5

curl -k -X POST -H 'Content-Type: application/json' -d "{'data': {'ndarray': [5]}}" https://$(oc get route anomaly-detection -o jsonpath='{.spec.host}')/api/v0.1/predictions

Response

{
  "meta": {
    "puid": "5qkdur66pmtagbcetf75b5qdat",
    "tags": {
    },
    "routing": {
    },
    "requestPath": {
      "anomaly-detection": "anomaly-detection-serve"
    },
    "metrics": []
  },
  "data": {
    "names": [],
    "ndarray": [0.0]
  }
}

Notice ndarray: [0.0] - that means False - i.e. not an anomaly

Passing in a number 50

curl -k -X POST -H 'Content-Type: application/json' -d "{'data': {'ndarray': [50]}}" https://$(oc get route anomaly-detection -o jsonpath='{.spec.host}')/api/v0.1/predictions

Response

{
  "meta": {
    "puid": "f05tvk4g8shrq84gkmruf4gicd",
    "tags": {
    },
    "routing": {
    },
    "requestPath": {
      "anomaly-detection": "anomaly-detection-serve"
    },
    "metrics": []
  },
  "data": {
    "names": [],
    "ndarray": [1.0]
  }
}

Notice ndarray: [1.0] - that means True - i.e. it is an anomaly

edge-anomaly-detection's People

Contributors

vpavlin avatar

Watchers

 avatar  avatar  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.