-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1360 from Amsterdam-Music-Lab/feature/practice-rules
Use a Practice ruleset to implement training phases
- Loading branch information
Showing
44 changed files
with
10,598 additions
and
7,699 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
from session.models import Session | ||
|
||
|
||
class NewBlockRuleset(Base): | ||
class NewBlockRuleset(BaseRules): | ||
''' A block type that could be used to test musical preferences ''' | ||
ID = 'NEW_BLOCK_RULESET' | ||
contact_email = '[email protected]' | ||
|
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
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
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
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
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 |
---|---|---|
|
@@ -7,11 +7,11 @@ | |
from session.models import Session | ||
from experiment.actions import ChoiceQuestion, Explainer, Form, Trial | ||
from experiment.actions.playback import PlayButton | ||
from .base import Base | ||
from .base import BaseRules | ||
from result.utils import prepare_result | ||
|
||
|
||
class CongoSameDiff(Base): | ||
class CongoSameDiff(BaseRules): | ||
""" A micro-PROMS inspired experiment block that tests the participant's ability to distinguish between different sounds. """ | ||
ID = 'CONGOSAMEDIFF' | ||
contact_email = '[email protected]' | ||
|
Oops, something went wrong.