Skip to content

Commit

Permalink
Update README.md (dotnet#854)
Browse files Browse the repository at this point in the history
change class name
  • Loading branch information
Ravikc authored Dec 11, 2020
1 parent 522fbdb commit eb64899
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class ModelInput
}
```

1. Define the output schema by creating the `ModelInput` class.
1. Define the output schema by creating the `ModelOutput` class.

```csharp
class ModelOutput
Expand Down Expand Up @@ -305,4 +305,4 @@ Image: 7001-77.jpg | Actual Value: UD | Predicted Value: UD
- Augment the data: A common technique to add variety to the data is to augment the data by taking an image and applying different transforms (rotate, flip, shift, crop). This adds more varied examples for the model to learn from.
- Train for a longer time: The longer you train, the more tuned the model will be. Increasing the number of epochs may improve the performance of your model.
- Experiment with the hyper-parameters: In addition to the parameters used in this tutorial, other parameters can be tuned to potentially improve performance. Changing the learning rate, which determines the magnitude of updates made to the model after each epoch may improve performance.
- Use a different model architecture: Depending on what your data looks like, the model that can best learn its features may differ. If you're not satisfied with the performance of your model, try changing the architecture.
- Use a different model architecture: Depending on what your data looks like, the model that can best learn its features may differ. If you're not satisfied with the performance of your model, try changing the architecture.

0 comments on commit eb64899

Please sign in to comment.