Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Supported by

[solved] using feedback variable like 'acc' in an inline script

NirNir
edited May 2014 in OpenSesame

Hi all
In my experiment, I want to stop and inform the experimenter by a beep whenever a participant's accuracy drops beneath 50% in the practice block.

To achieve this, I used the following inline script code immediately after the practice loop:

if self.get('acc') < 50: 
    from openexp.synth import synth
    my_synth = synth(exp, freq='A1', length=500)
    my_synth.play()

but, it is not working.

when i typed:

 print self.get('acc') 

nothing is printed

but when using [acc] in a feedback item I get the correct accuracy

any idea how can I achieve my goal?

Nir

Comments

  • edited 7:17PM

    i would insert a synth object from the GUI into your sequence and do run if [acc]<50. Also you said you inserted the script immediately after the practice loop. This means it will not beep during the practice loop, only after the participant has completed the practice loop

  • NirNir
    edited May 2014

    Hi Joshua.

    Thanx for the reply.

    Your suggestion for binding the sound and accuracy graphically is good and I will probably use it for this specific task.

    But, I am more interested in a python solution. both because I like to code better than to use graphical builders and because I want to use more sophisticated condition than the one I listed above.

    Not getting a value for 'acc' when using it in a code is my main issue here.

    Nir

  • edited 7:17PM

    Hi Nir,

    Although I agree with @JoshuaBaker that a run-if statement in a sequence would be the easiest solution, your script should work as well.

    You mention that you see nothing in the debug window when you run ...

     print self.get('acc') 
    

    ... but do see the correct accuracy when using [acc] in a feedback item. Since [acc] and self.get('acc') refer to the same thing, this suggests that you have put your code in the prepare phase of your inline_script, whereas it should be in the run phase. For an explanation, see also:

    Does that clear things up?

    Cheers,
    Sebastiaan

  • NirNir
    edited 7:17PM

    thanx sebastiaan
    My code was written in the "run" phase but it was written print ( self.get('acc') ) instead of print self.get('acc')
    Normally in python it's dose not matter matter

  • edited 7:17PM

    thanx sebastiaan My code was written in the "run" phase but it was written print ( self.get('acc') ) instead of print self.get('acc') Normally in python it's dose not matter matter

    Glad to hear you resolved things. Both the print statement and print() function work though (as they do in general in Python 2), so the problem was likely somewhere else. Please let me know if you can reproduce a difference in behavior between the two, because they should be interchangeable.

Sign In or Register to comment.