naivendork
naivendork
Upon running the infer.py script with the pre-trained openpose-lightweight resnet50 model, at times the pose estimation results repeat certain parts, and also omit certain parts.(refer attached images) Also, is there...
I'd like to know if the authors plan to publish inference script for pre-trained models in Python.
### Operating System Windows ### Version Information Python Version: 3.8.10 azure-ai-ml package version: 1.12.1 ### Steps to reproduce 1. Run the notebook at: https://github.com/Azure/azureml-examples/blob/main/sdk/python/jobs/automl-standalone-jobs/automl-forecasting-orange-juice-sales/automl-forecasting-orange-juice-sales-mlflow.ipynb 2. Check the job status on...
```python class Model(nn.Module): def __init__(self): super(Model, self).__init__() self.layer = nn.Linear(10,1) def forward(self, input): out = self.layer(input) return out ``` Above is the model I have defined. When I try to...