Listing Thumbnail

    Truck Volume Estimator-Inference Pricing

     Info
    Sold by: Mphasis 
    Deployed on AWS
    Trailer Capacity Prediction helps in predicting volumetric capacity left in a trailer by classifying it into Quarter/Half/Full categories.

    Overview

    Trailer Capacity Prediction model takes images of open containers being loaded/unloaded as input and classifies them into categories - quarter, half or fully packed. It can be used to plan container loading/unloading and optimize/automate warehouse operations which in turn reduces truck waiting time at a hub/warehouse. It is built using state of the art deep learning modelling techniques to precisely classify images.

    Highlights

    • Logistics industry faces great risks in cargo damage, on-time delivery and optimum space utilization of shipping containers, resulting in loss of time and money. To improve on-time delivery and proper space utilization of containers, it is important to continuously supervise images of loading/unloading the containers.
    • Trailer Capacity Prediction model classifies these images of open trailers into categories - empty, half or full packed. The prediction helps to monitor unutilized spaces in containers, plan container filling, and optimize warehousing operations.
    • Mphasis DeepInsights is a cloud-based cognitive computing platform that offers data extraction & predictive analytics capabilities. Need customized image analytics solutions? Get in touch!

    Details

    Delivery method

    Latest version

    Deployed on AWS

    Unlock automation with AI agent solutions

    Fast-track AI initiatives with agents, tools, and solutions from AWS Partners.
    AI Agents

    Features and programs

    Financing for AWS Marketplace purchases

    AWS Marketplace now accepts line of credit payments through the PNC Vendor Finance program. This program is available to select AWS customers in the US, excluding NV, NC, ND, TN, & VT.
    Financing for AWS Marketplace purchases

    Pricing

    Truck Volume Estimator-Inference Pricing

     Info
    Pricing is based on actual usage, with charges varying according to how much you consume. Subscriptions have no end date and may be canceled any time.
    Additional AWS infrastructure costs may apply. Use the AWS Pricing Calculator  to estimate your infrastructure costs.

    Usage costs (27)

     Info
    Dimension
    Description
    Cost
    ml.c5.xlarge Inference (Batch)
    Recommended
    Model inference on the ml.c5.xlarge instance type, batch mode
    $16.00/host/hour
    ml.m4.4xlarge Inference (Batch)
    Model inference on the ml.m4.4xlarge instance type, batch mode
    $16.00/host/hour
    ml.m5.4xlarge Inference (Batch)
    Model inference on the ml.m5.4xlarge instance type, batch mode
    $16.00/host/hour
    ml.m4.16xlarge Inference (Batch)
    Model inference on the ml.m4.16xlarge instance type, batch mode
    $16.00/host/hour
    ml.m5.2xlarge Inference (Batch)
    Model inference on the ml.m5.2xlarge instance type, batch mode
    $16.00/host/hour
    ml.p3.16xlarge Inference (Batch)
    Model inference on the ml.p3.16xlarge instance type, batch mode
    $16.00/host/hour
    ml.m4.2xlarge Inference (Batch)
    Model inference on the ml.m4.2xlarge instance type, batch mode
    $16.00/host/hour
    ml.c5.2xlarge Inference (Batch)
    Model inference on the ml.c5.2xlarge instance type, batch mode
    $16.00/host/hour
    ml.p3.2xlarge Inference (Batch)
    Model inference on the ml.p3.2xlarge instance type, batch mode
    $16.00/host/hour
    ml.c4.2xlarge Inference (Batch)
    Model inference on the ml.c4.2xlarge instance type, batch mode
    $16.00/host/hour

    Vendor refund policy

    Currently we do not support refunds, but you can cancel your subscription to the service at any time

    How can we make this page better?

    We'd like to hear your feedback and ideas on how to improve this page.
    We'd like to hear your feedback and ideas on how to improve this page.

    Legal

    Vendor terms and conditions

    Upon subscribing to this product, you must acknowledge and agree to the terms and conditions outlined in the vendor's End User License Agreement (EULA) .

    Content disclaimer

    Vendors are responsible for their product descriptions and other product content. AWS does not warrant that vendors' product descriptions or other product content are accurate, complete, reliable, current, or error-free.

    Usage information

     Info

    Delivery details

    Amazon SageMaker model

    An Amazon SageMaker model package is a pre-trained machine learning model ready to use without additional training. Use the model package to create a model on Amazon SageMaker for real-time inference or batch processing. Amazon SageMaker is a fully managed platform for building, training, and deploying machine learning models at scale.

    Deploy the model on Amazon SageMaker AI using the following options:
    Deploy the model as an API endpoint for your applications. When you send data to the endpoint, SageMaker processes it and returns results by API response. The endpoint runs continuously until you delete it. You're billed for software and SageMaker infrastructure costs while the endpoint runs. AWS Marketplace models don't support Amazon SageMaker Asynchronous Inference. For more information, see Deploy models for real-time inference  .
    Deploy the model to process batches of data stored in Amazon Simple Storage Service (Amazon S3). SageMaker runs the job, processes your data, and returns results to Amazon S3. When complete, SageMaker stops the model. You're billed for software and SageMaker infrastructure costs only during the batch job. Duration depends on your model, instance type, and dataset size. AWS Marketplace models don't support Amazon SageMaker Asynchronous Inference. For more information, see Batch transform for inference with Amazon SageMaker AI  .
    Version release notes
    • Bug fixes
    • Changes to accommodate AWS related Sagemaker updates

    Additional details

    Inputs

    Summary

    Prerequisites for consuming the service:

    1. Access to Model Package, SageMaker and S3 storage bucket.
    2. Open Trailer Container Images. (Refer to Sample Input linked below)
    3. Execution Role for the SageMaker session.
    4. Python Packages as listed in the Instructions Notebook linked below.

    Input

    Supported Content Type: 'application/json' (Image serialized to json as shown below in Python)

    from PIL import Image import json import numpy as np img = Image.open('images/sample1.jpg').convert(mode = 'RGB') img = img.resize((300,300)) img = np.array(img).tolist() img_json = json.dumps({'instances': [{'input_image': img}]}) // If required can be written to file (Also can be found in Sample link below) with open('img.json', 'w') as f: f.write(img_json)

    Output

    Content Type: 'application/json'

    Sample Output & Interpretation:

    {"predictions": [[0.04, 0.55, 0.41]]}
    • Element 1 of the list represents probability of: Full Capacity (i.e ~ Above 75%)

    • Element 2 of the list represents probability of: Half Capacity (i.e ~ Above 25% and Below 50%)

    • Element 3 of the list represents probability of: Quarter Capacity (i.e ~ Below 25%)

    Invoking Endpoint

    If you are using real time inferencing, please create the endpoint first.

    Python

    // Find detailed instructions in the Instructions Notebook lined below predictor = sage.RealTimePredictor(endpoint='endpoint name', content_type='application/json', sagemaker_session= sagemaker_session, ) prediction = predictor.predict(img_json)

    AWS CLI Command

    aws sagemaker-runtime invoke-endpoint --endpoint-name "endpoint-name" --body fileb://img.json --content-type application/json --accept application/json out.json

    Notebook Instructions:

    1. Download the Notebook from the link below onto a SageMaker Notebook Instance OR Install necessary packages on the desired compute resource.
    2. Bring in the input images for classification onto the SageMaker Notebook Instance OR on the desired compute resource and follow the instructions in the Notebook.

    Resources

    Sample Input  Sample Notebook 

    Input MIME type
    application/json
    See Input Summary
    See Input Summary

    Support

    Vendor support

    For any assistance, please reach out to:

    AWS infrastructure support

    AWS Support is a one-on-one, fast-response support channel that is staffed 24x7x365 with experienced and technical support engineers. The service helps customers of all sizes and technical abilities to successfully utilize the products and features provided by Amazon Web Services.

    Similar products

    Customer reviews

    Ratings and reviews

     Info
    0 ratings
    5 star
    4 star
    3 star
    2 star
    1 star
    0%
    0%
    0%
    0%
    0%
    0 AWS reviews
    No customer reviews yet
    Be the first to review this product . We've partnered with PeerSpot to gather customer feedback. You can share your experience by writing or recording a review, or scheduling a call with a PeerSpot analyst.