我正在寻找一种在jupyter笔记本中添加第二个反馈评论框的方法,以便两名评分员可以在学生答案中写下他们的评论。
由于我是JupyterHub和nbgrader的新手,所以我不知道从哪里开始!
c = get_config()
# Our user list
c.Authenticator.whitelist = [
'instructor1',
'instructor2',
'student1',
]
# instructor1 and instructor2 have access to a shared server:
c.JupyterHub.load_groups = {
'formgrader-course101': [
'instructor1',
'instructor2'
]
}
# Start the notebook server as a service. The port can be whatever you want
# and the group has to match the name of the group defined above.
c.JupyterHub.services = [
{
'name': 'course101',
'url': 'http://127.0.0.1:9999',
'command': [
'jupyterhub-singleuser',
'--group=formgrader-course101',
'--debug',
],
'user': 'grader-course101',
'cwd': '/home/grader-course101'
}
]
此代码在documentation file中建议!的nbgrader声称要增加对“一个班级,多个评分者”的支持。但是,这并不会为每个评分者添加额外的反馈注释框功能!