Skip to content

Latest commit

 

History

History
44 lines (34 loc) · 1.15 KB

File metadata and controls

44 lines (34 loc) · 1.15 KB

class GrpcModelMetadataResponse


method to_dict

to_dict()

Returns metadata in dictionary format:

{
    ...          
    <version_number>: 
        {
            "inputs": {
                <input_name>: {
                    "shape": <input_shape>,
                    "dtype": <input_dtype>,
                    },                      
                ...              
            },           
            "outputs": {
                <output_name>: {
                    "shape": <output_shape>,
                    "dtype": <output_dtype>,
                    },
                ...              
            }
        },          
        ...      
} 

Return to the main page