Skip to content

Instantly share code, notes, and snippets.

// tensorflow.js 0.x.x
const MODEL_URL = '/model/tensorflowjs_model.pb'
const WEIGHTS_URL = '/model/weights_manifest.json'
// https://js.tensorflow.org/api/0.15.1/#loadFrozenModel
const model = await tf.loadFrozenModel(MODEL_URL, WEIGHTS_URL)
tensorflowjs_converter \
--input_format=tf_frozen_model \
--output_node_names='SemanticPredictions' \
/path/to/frozen_inference_graph.pb \
/path/to/output_dir
pip install tensorflowjs
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@vabarbosa
vabarbosa / notebooks with pixiedust - 2.ipynb
Last active June 28, 2017 05:22
intro to notebooks with pixiedust - part 2
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@vabarbosa
vabarbosa / notebooks with pixiedust - 1.ipynb
Last active June 28, 2017 05:22
intro to notebooks with pixiedust - part 1
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@vabarbosa
vabarbosa / pd-wordcloud-metadata.py
Last active April 17, 2017 20:48
PixieDust Extensibility API - Word Cloud Metadata
@PixiedustDisplay()
class SimpleWordCloudMeta(DisplayHandlerMeta):
@addId
def getMenuInfo(self,entity,dataHandler):
if entity.__class__.__name__ == "DataFrame":
return [
{
"categoryId": "Chart",
"title": "Simple Word Cloud",
"icon": "fa-cloud",
@vabarbosa
vabarbosa / pd-wordcloud-template.py
Last active April 28, 2017 17:22
PixieDust Extensibility API - Word Cloud Template
from pixiedust.display.display import *
from wordcloud import WordCloud
import cStringIO
import base64
class SimpleWordCloudDisplay(Display):
def doRender(self, handlerId):
# convert from dataframe to dict
dfdict = {}
df = self.entity.toPandas()
@vabarbosa
vabarbosa / pd-simpletable-metadata.py
Last active April 18, 2017 22:26
PixieDust Extensibility API - Simple Table Metadata
@PixiedustDisplay()
class TestPluginMeta(DisplayHandlerMeta):
@addId
def getMenuInfo(self,entity,dataHandler):
if entity.__class__.__name__ == "DataFrame":
return [
{
"categoryId": "Table",
"title": "My Simple Table",
"icon": "fa-table",
@vabarbosa
vabarbosa / pd-simpletable-template.py
Last active April 17, 2017 20:44
PixieDust Extensibility API - Simple Table Template
from pixiedust.display.display import *
class TestDisplay(Display):
def doRender(self, handlerId):
self._addHTMLTemplateString(
"""
<div>My Simple Table</div>
<table class="table table-striped">
<thead>
{%for field in entity.schema.fields%}