sebastiaan
About
- Username
- sebastiaan
- Joined
- Visits
- 7,226
- Last Active
- Roles
- Administrator
Comments
-
Hi @eboonst , Are you running the latest version of OpenSesame/ OSWeb? There used to be memory leaks in OSWeb, but these should have all been resolved by now. If you are running the latest version, could you upload the experiment so that I can see w…
-
Hi @Lawliet , You can see how to do that here: https://osdoc.cogsci.nl/4.0/manual/structure/loop/#accessing-the-loop-table-in-python-inline-script — Sebastiaan
-
Hi @Anaïs , Pygazeanalyzer hasn't been updated for a while now, and I don't think @Edwin is actively working on it anymore. There are probably more convenient ways to analyze your data. Do you have any experience in Python scripting? — Sebastiaan
-
Hi @Lawliet , Your posts were intercepted by the spam filter. I whitelisted them, but it seems that this post is incomplete. Can you re-ask your question? — Sebastiaan
-
Hi @MikeN , This is a very strange error that I've never seen before, and it's unclear to me where it comes from. My guess is that there is some issue with the operating system itself. I don't think the issue lies in OpenSesame or any of the underly…
-
Hi @Fenn_CAM , If you are going to expose the token through the experiment code (even if it's not hard-coded as @kri suggests), then there is a very real possibility of it being intercepted and used by someone else. So absolutely do set a limit on t…
-
Hi @Fenn_CAM , Can you clarify how you would like to interact with the LLM? My guess is that you would like the experiment itself (so the code that runs in the browser of the participants) to interact with the LMM. Is that correct? — Sebastiaan
-
Hi @AllanB , This is not an issue related to system requirements in the sense that the computer isn't fast enough. Instead, there is likely some incompatibility between the software and the video drivers. It will be very difficult to exactly pinpoin…
-
Hi @Tryfonas_Bikos , Eye-tracking data is unfortunately very non-standard, so you often have to write your own script that parses the data and puts it into a common format, such as DataMatrix. Do you have an example of a data file so that I can see …
-
Hi @montano , The Cedrus SV-1 comes with a Python library, which means that you can use it also in OpenSesame. I don't personally have experience with it, but that's what their website says. — Sebastiaan
-
Hi @stef_max , Thanks for pointing this out. That's correct, and it results from sound playback now being handled by the Web Audio API, which is more modern and better supported on various browser than the previous implementation. But indeed, the ex…
-
Hi @GeorgiaW , You probably have multiple sound files with different sampling rates. PsychoPy, unlike PyGame/ Legacy, expects all sound files to have the same sampling rate, which is why you receive this error message. It's also possible that one of…
-
Hi @bijsterveldjvan , The function that converts an experiment to a JATOS jzip is indeed exp_to_jzip() , which isn't broken but it's also not intended to be used externally. (Although you're free to do so, of course.) https://github.com/open-cogsci…
-
That sounds like a very interesting assignment!
-
Hi @DDD , I suspect you're using an older version of OpenSesame / OSWeb, which had a bug when the data file contained non-ASCII characters, such as Chinese characters. Does the issue go away if you update? You can do this with the automated updater …
-
Hi @jmorris , Thank you for taking the time to report this. 💪 Because, as the error message says, this is generally the result of an issue somewhere deep down in the libraries that OpenSesame uses, it is often not feasible to fix this issue when it …
-
Hi @joelsolo99 and @Fab , The issue is that the form is an entire HTML page, including html , head , body , and form tags. This doesn't match what the inline_html item expects, which is a collection of input elements that are then automatically c…
-
Hi @Naïde , Since you have only ten numbers (and twelve words per emotion), I assume that you want to randomly sample from these numbers with replacement. If so, then it's actually quite easy, because you can simply create a loop table with three c…
-
Hi @jono , Thanks for pointing this out. That's important information, and we should address this in a repackaging of the MacOS package. @RobbinMaug@robbertmijn can you look into this? — Sebastiaan
-
Hi @amlema , The thing that makes it tricky to do counterbalancing in OSWeb is that you have to use the batch-session data to keep track of which participant is assigned to which list. (To avoid ending up with more participants for list 1 then list …
-
Hi @camila_hinojosa , Do I understand correctly that you are wondering whether Sigmund is able to help working on OpenSesame (as opposed to with OpenSesame?). I would say that this depends on what you mean. Sigmund has access to the documentation a…
-
Hi @Ornella , The EyeLinkPlugins provided by SR Research have at the time of writing not yet been updated for OpenSesame 4.0. I suspect that's where the error comes from. However, you can also use the EyeLink through the PyGaze plugins that are bund…
-
Hi @Deni , The most common cause for OpenSesame not starting on Mac OS is that it is blocked by the security settings. You mention that you have followed the instructions from the linked article, so I suspect that's not it in your case, but do doubl…
-
Hi @opensesamestreet , This error message means that Python (the programming language that OpenSesame uses) itself has crashed. So it's not an issue with how you programmed your experiment, but with the software itself. Often, the issue will go away…
-
Hi @abeque , The issue was that you put quotes around the run-if expressions in the trial_sequence. It should be correct == 1 and not 'correct == 1'. Why this results in an error message that points to somewhere else is unclear to me (and I would lo…
-
Thank you! 🤗 Really great to see that you're sharing this.
-
Hi @lopezchau , It sounds like you are ready to go. If you enter the name of the device (e.g. COM3 or something like that) in the parallel_port_plugin, you should be able to send triggers to the EEG acquisition device. This can be a bit finicky and…
-
@AngeloPisanii I'm linking this to the same question that you asked here: https://forum.cogsci.nl/discussion/comment/30202/#Comment_30202 Please don't ask the same question in multiple threads! That way we don't waste anyone's time by answering the …
-
Hi @elinora18 , Proper text wrapping is not available for OSWeb, but you can use a simple inline_javascript (courtesy of SigmundAI) to limit the text to a specific number of characters, and insert line breaks in between (using HTML <br> elem…
-
Hi @trig , Although I'm not familiar with the exact procedure, installing a Captcha at least requires an API key for the site. In this case, the site would indeed be the JATOS server. This means that in order to install a Captcha you would need to h…