Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

inferrd

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

inferrd

inferrd.com

  • 0.1.47
  • PyPI
  • Socket score

Maintainers
1

Inferrd

Inferrd is a hosting platform for TensorFlow.

Authentication

In order to use this library you need to get a api token from inferrd.com

Authenticate with the inferrd.auth method:

import inferrd

inferrd.auth('<token>')

Deploying TensorFlow

First, create a model on inferrd.com and select the kind of instance you want. Then simple call inferrd.deploy_tf:

import inferrd

# this only needs to be done once
inferrd.auth('<token>')

# deploy TF
inferrd.deploy_tf(tf_model, '<name of the model>')

Fetching predictions

Inferrd allows us to pull predictions back into your notebook by using inferrd.get_requests:

import inferrd

# this only needs to be done once
inferrd.auth('<token>')

# get the requests
requests = inferrd.get_requests('<name of the model>', limit=100, page=0, includeFailures=False)

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc