You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I want to setup an annotation where i provide two inputs for the annotator, audio and transcription and then ask the annotator to rate the transcription and correct it if needed.
Describe the solution you'd like
Need assistance on how to read the audio file from each record in the dataset and wrap it in HTML template for CustomField.
Describe alternatives you've considered
settings=rg.Settings(
guidelines=ANNOTAION_GUIDELINES,
fields=[
rg.AudioField(name="audio", required=True), # Correct this one with CustomField !rg.TextField(name="transcription", required=True),
],
questions=[
rg.RatingQuestion(
name="How good is the transcription ?",
values=[1, 2, 3, 4, 5]
),
rg.TextQuestion(
name="Provide the correct transcription if needed",
required=False
),
],
)
Is your feature request related to a problem? Please describe.
I want to setup an annotation where i provide two inputs for the annotator, audio and transcription and then ask the annotator to rate the transcription and correct it if needed.
Describe the solution you'd like
Need assistance on how to read the audio file from each record in the dataset and wrap it in HTML template for CustomField.
Describe alternatives you've considered
Additional context
@davidberenstein1957 & @frascuchon
Your help will be greatly appreciated 🥹
The text was updated successfully, but these errors were encountered: