LandingLens | LandingLens on Snowflake |
---|---|
Placeholder | Description |
---|---|
primary-trigger-class-name | The name of the class that triggers the image to go through the second Inspection Point. For example, if you want an image to go through a second Inspection Point if the class “Dog” is detected, replace primary-trigger-class-name with Dog . |
second-inspection-point-name | The name of the second Inspection Point. For example, if the name of the second Inspection Point is called “puppy-inspection”, replace second-inspection-point-name with puppy-inspection . |
secondary-inspection-class-name | The name of the predicted class in the second Inspection Point that triggers the “final” prediction to change. For example, if you want the class “Puppy” to override a previous prediction if the second Inspection Point predicts “puppy”, then replace secondary-inspection-class-name with Puppy . |
overridden-class-name | The name of the class that will be the “final” predicted class if the criteria in secondary-inspection-class-name is met.For example, if you want the “final” predicted class to be “Puppy” if the other criteria is met, replace overridden-class-name with Puppy . |
Placeholder | Description |
---|---|
new-class | The name of the class that will be the “final” predicted class. For example, if the model predicted the class “Cat”, but it should be “Dog”, replace new-class with Dog . |
number | The confidence score that will be the “final” confidence score. This value must be a number between 0 and 1. For example, if you want to change the confidence score to .876, replace number with .876 . |
Placeholder | Description |
---|---|
1234 | The value for the Image ID. |
Inspection Point A | The value for the Inspection Station ID |
Main Warehouse | The value for the Location ID. |
AllClasses
, which is a Dictionary with the class index as the key. The AllClasses
Dictionary provides access to all names and indices of all classes in the model, so class information can be retrieved with AllClasses[index]
.
Here is the sample C# post-processing script for reading out the raw scores from a Classification model: