Scheduled service maintenance on November 22
On Friday, November 22, 2024, between 06:00 CET and 18:00 CET, GIN services will undergo planned maintenance. Extended service interruptions should be expected. We will try to keep downtimes to a minimum, but recommend that users avoid critical tasks, large data uploads, or DOI requests during this time.
We apologize for any inconvenience.
Thanks for the review!
I did the try-except block because I found it to be the easiest since they are no is_tier function for example. There is a function to get all tiers but it returns a list of pairs with the number of the tier and the tier. Since the number is auto-generated we can't look it up in that list and there is no Tier.get_name() function so we have tier objects and can't look up their names.
I had put down aTier.add_interval(...) at first but VS Code did not recognize it as a function belonging to Praat which is why I did it the other way around but there is actually no issue when running the code so I'll switch it back to that.
I've wrote a few comments (ctrl+f "[REVIEW]" to find them easily)
Un retour plus général: dans le cas présent, la taille des slices est un peu arbitraire; et il est possible que l'on décide d'en changer pour voir dans quelle mesure cela améliore ou non la performance de l'algorithme. Le seul problème du code ci-dessus est qu'il faut faire trois changements pour changer la valeur du paramètre.
Voilà une manière de contourner ce problème:
Merci pour ce retour! En effet, je n'avais pas pensé au changement de la taille des slices ni à l'ordre des transcriptions. C'est bien plus clean comme ça, merci. Je vais incorporer ces changements dans master!