Sample for RNN model

Charu Shenoy 20 Reputation points
2024-03-28T00:27:26.6133333+00:00

I am working on my deep learning project and I want to train my RNN model in azure and deploy it to cloud. Is there any samples I can refer to for my training and deployment?

Azure Machine Learning
Azure Machine Learning
An Azure machine learning service for building and deploying models.
2,563 questions
0 comments No comments
{count} votes

Accepted answer
  1. YutongTie-MSFT 46,646 Reputation points
    2024-03-28T21:05:58.8133333+00:00

    @Charu Shenoy

    Thanks for reaching out to us, there is no component for RNN but component for Neural Networks, you can use it for NN development. If you want to deploy a RNN deployment, you need to train the RNN model locally and deploy it to Azure. You may want to leverage TensorFlow to train your model. https://www.tensorflow.org/guide/keras/working_with_rnns

    Then you need to deploy your model to Azure - https://learn.microsoft.com/en-us/azure/machine-learning/tutorial-deploy-model?view=azureml-api-2

    Please take a look on above guidance and have a try, let me know if you have any question.

    I hope this helps.

    Regards,

    Yutong

    1 person found this answer helpful.
    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Dillon Silzer 54,471 Reputation points
    2024-03-28T01:14:27.25+00:00

    Hi Charu,

    You are going to want to use Azure Machine Learning studio to train your models and deploy them.

    Here are some starter resources for you to follow:

    Neural Network Regression component

    https://learn.microsoft.com/en-us/azure/machine-learning/component-reference/neural-network-regression?view=azureml-api-2

    Train TensorFlow models at scale with Azure Machine Learning

    https://learn.microsoft.com/en-us/azure/machine-learning/how-to-train-tensorflow?view=azureml-api-2

    Train PyTorch models at scale with Azure Machine Learning

    https://learn.microsoft.com/en-us/azure/machine-learning/how-to-train-pytorch?view=azureml-api-2

    If this is helpful please accept answer.

    0 comments No comments