Skip to content

Instantly share code, notes, and snippets.

@iamwilhelm
Created January 15, 2018 06:42
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 iamwilhelm/e89826d502290c0ece8d9af24c36f457 to your computer and use it in GitHub Desktop.
Save iamwilhelm/e89826d502290c0ece8d9af24c36f457 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"metadata": {},
"cell_type": "markdown",
"source": "# Helmspoint Package\n\nThis is a demo of the helmspoint package, used to deploy and publish your ML models to the web."
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "import helmspoint\nfrom helmspoint.cli import Cli\n",
"execution_count": 2,
"outputs": []
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "helmspoint.deploy(\"my_model.hdf5\")",
"execution_count": 3,
"outputs": [
{
"output_type": "stream",
"text": "deploying model...\n",
"name": "stdout"
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "helmspoint.publish()",
"execution_count": 4,
"outputs": [
{
"output_type": "stream",
"text": "publishing current page...\n",
"name": "stdout"
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "c = Cli(\"george\")\nc.hello()\n",
"execution_count": 8,
"outputs": [
{
"output_type": "stream",
"text": "hello helms\n",
"name": "stdout"
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "%%js\nvar cell = Jupyter.notebook.get_cell(5);\nconsole.log(cell.cell_type);\nconsole.log(cell.get_text());\n",
"execution_count": 9,
"outputs": [
{
"output_type": "display_data",
"data": {
"text/plain": "<IPython.core.display.Javascript object>",
"application/javascript": "var cell = Jupyter.notebook.get_cell(5);\nconsole.log(cell.cell_type);\nconsole.log(cell.get_text());"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "import notebook.nbextensions\nnotebook.nbextensions.install_nbextension('./gist.js', user=True)",
"execution_count": 10,
"outputs": [
{
"output_type": "execute_result",
"execution_count": 10,
"data": {
"text/plain": "'/Users/iamwil/Library/Jupyter/nbextensions/gist.js'"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "%%javascript\nJupyter.utils.load_extensions('gist')",
"execution_count": 11,
"outputs": [
{
"output_type": "display_data",
"data": {
"text/plain": "<IPython.core.display.Javascript object>",
"application/javascript": "Jupyter.utils.load_extensions('gist')"
},
"metadata": {}
}
]
},
{
"metadata": {
"trusted": true
},
"cell_type": "code",
"source": "",
"execution_count": null,
"outputs": []
}
],
"metadata": {
"kernelspec": {
"name": "python3",
"display_name": "Python 3",
"language": "python"
},
"language_info": {
"name": "python",
"version": "3.6.4",
"mimetype": "text/x-python",
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"pygments_lexer": "ipython3",
"nbconvert_exporter": "python",
"file_extension": ".py"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment