Last active
September 25, 2020 11:54
-
-
Save ntakouris/c2e575a8380f4121d9f97764aa8bd8f6 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
{ | |
"model_spec": { | |
"name": "bitcoin_predictor", | |
"signature_name": "", | |
"version": "1" | |
}, | |
"metadata": { | |
"signature_def": { | |
... | |
"serving_raw": { | |
"inputs": { | |
"Low": { <-- name | |
"dtype": "DT_FLOAT", | |
"tensor_shape": { | |
"dim": [ | |
{ | |
"size": "-1", <--- batch | |
"name": "" | |
}, | |
{ | |
"size": "7", <--- window size | |
"name": "" | |
} | |
], | |
"unknown_rank": false | |
}, | |
"name": "serving_raw_Low:0" | |
}, | |
.... | |
"outputs": { | |
"High": { <--- output name | |
"dtype": "DT_FLOAT", | |
"tensor_shape": { | |
"dim": [ | |
{ | |
"size": "-1", <--- just batch dimension means output shape is (1,) | |
"name": "" | |
} | |
], | |
"unknown_rank": false | |
}, | |
"name": "PartitionedCall_1:1" | |
}, | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment