-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
22 additions
and
12 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
|
||
Feature: Display Detected Labels with Confidence Levels | ||
|
||
Background: The user has uploaded an image for analysis | ||
|
||
Scenario: Displaying the list of detected labels with confidence levels | ||
Given the user has successfully uploaded an image | ||
When the system processes the image and detects labels | ||
Then the user is presented with a list of detected labels | ||
And each label is accompanied by its level of confidence |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
|
||
Feature: Parameters Adjustment for Label Detection | ||
|
||
Background: The user is on the parameters adjustment zone | ||
|
||
Scenario: Adjusting parameters for label detection | ||
Given the user sets the "amount of labels" to display to "5" | ||
And the user sets the "level of confidence" threshold to "80%" | ||
And the user submits the parameters | ||
Then the system updates the displayed labels to match the new parameters | ||
And only labels with a confidence level of "80%" or higher are displayed | ||
And no more than "5" labels are displayed |
This file was deleted.
Oops, something went wrong.