File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -31,6 +31,9 @@ and create an evaluation queue that will be used in the view.
3131You will want to replace ` "My uniquely named project about Alzheimer's Disease" ` with
3232the name of your project.
3333
34+ The name of the Evaluation must also be globally unique. Please update
35+ ` "Test Evaluation Queue for Alzheimer conference" ` with a new value.
36+
3437``` python
3538{! docs/ tutorials/ python/ tutorial_scripts/ submissionview.py! lines=13 - 44 }
3639```
@@ -86,6 +89,9 @@ Submission status: SCORED
8689As your challenge evolves, you might need to add more evaluation queues to your SubmissionView.
8790Here's how to create another evaluation queue and add it to your view's scope.
8891
92+ The name of the Evaluation must also be globally unique. Please update
93+ ` "Second Test Evaluation Queue for Alzheimer conference" ` with a new value.
94+
8995``` python
9096{! docs/ tutorials/ python/ tutorial_scripts/ submissionview.py! lines=128 - 143 }
9197```
Original file line number Diff line number Diff line change 3434project_id = my_project .id
3535print (f"My project ID is: { project_id } " )
3636
37- # Step 1: Set up and create an evaluation queue
37+ # Step 1: Set up and create an evaluation queue - Must be globally unique
3838evaluation_name = "Test Evaluation Queue for Alzheimer conference"
3939evaluation_description = "Evaluation queue for testing submission view"
4040evaluation = Evaluation (
130130
131131# Create another evaluation queue to demonstrate adding to the scope
132132second_evaluation = Evaluation (
133- name = "Second Test Evaluation Queue for Alzheimer conference" ,
133+ name = "Second Test Evaluation Queue for Alzheimer conference" , # Must be globally unique
134134 description = "Another evaluation queue for testing submission view" ,
135135 contentSource = project_id ,
136136)
You can’t perform that action at this time.
0 commit comments