Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@olokobayusuf
Last active December 1, 2021 03:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save olokobayusuf/56c174549b529e33675a2aed1d2cd99c to your computer and use it in GitHub Desktop.
Save olokobayusuf/56c174549b529e33675a2aed1d2cd99c to your computer and use it in GitHub Desktop.
// Creating an Edge predictor...
var edgePredictor = new UNetPredictor(model);
// vs. creating a Hub predictor...
var hubPredictor = new UNetHubPredictor(model);
// And using an Edge predictor...
var edgeResults = edgePredictor.Predict(...);
// vs. using a Hub predictor
var hubResults = await hubPredictor.Predict(...);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment