File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed 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.
31
31
You will want to replace ` "My uniquely named project about Alzheimer's Disease" ` with
32
32
the name of your project.
33
33
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
+
34
37
``` python
35
38
{! docs/ tutorials/ python/ tutorial_scripts/ submissionview.py! lines=13 - 44 }
36
39
```
@@ -86,6 +89,9 @@ Submission status: SCORED
86
89
As your challenge evolves, you might need to add more evaluation queues to your SubmissionView.
87
90
Here's how to create another evaluation queue and add it to your view's scope.
88
91
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
+
89
95
``` python
90
96
{! docs/ tutorials/ python/ tutorial_scripts/ submissionview.py! lines=128 - 143 }
91
97
```
Original file line number Diff line number Diff line change 34
34
project_id = my_project .id
35
35
print (f"My project ID is: { project_id } " )
36
36
37
- # Step 1: Set up and create an evaluation queue
37
+ # Step 1: Set up and create an evaluation queue - Must be globally unique
38
38
evaluation_name = "Test Evaluation Queue for Alzheimer conference"
39
39
evaluation_description = "Evaluation queue for testing submission view"
40
40
evaluation = Evaluation (
130
130
131
131
# Create another evaluation queue to demonstrate adding to the scope
132
132
second_evaluation = Evaluation (
133
- name = "Second Test Evaluation Queue for Alzheimer conference" ,
133
+ name = "Second Test Evaluation Queue for Alzheimer conference" , # Must be globally unique
134
134
description = "Another evaluation queue for testing submission view" ,
135
135
contentSource = project_id ,
136
136
)
You can’t perform that action at this time.
0 commit comments