This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tensorflowjs_converter \ | |
--input_format=tf_frozen_model \ | |
--output_node_names='SemanticPredictions' \ | |
/path/to/frozen_inference_graph.pb \ | |
/path/to/output_dir |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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%} |