Hi! If you want to use a custom recipe, it should have all settings required by a custom recipe: the interface to use, the stream of examples, the dataset to save annotations to and any of the preprocessing you need. See the docs on custom recipes here: https://prodi.gy/docs/custom-recipes
If you want to write a custom version of the ner.manual recipe, here's an example to get you started:
import prodigy
import json
@prodigy.recipe("ner-manual")
def cat_facts_ner(dataset, lang="fr"):
blocks = [
#{"view_id":"html"},
{"view_id": "ner_manual"},
{"view_id": "text_input", "field_rows": 3, "field_label": "Ecrivez ce que vous voulez"}
]
def get_stream():
with open('./test3.jsonl') as text_file:
text_str = text_file.read()
text_json = json.loads(text_str)
yield {"text": text_json['text']}
stream = get_stream()
with open('./input_text.html') as template_file:
html_template = template_file.read()
with open('./button_fct.js') as script_file:
html_script = script_file.read()
return {
"view_id":"html", #"view_id": "ner_manual", ? #"view_id": "blocks", ?
"dataset": dataset,
"stream": stream,
"config": {
"labels": ["ASSUREUR","DATE"],
"html_template": html_template,
"javascript": html_script
}
}
Is it possible to call ner_manual with the text from the stream to annotate manually and then to display the html input (input text + button) in the same page?
Our objective is to change the text to annotate by writting a new one in the input text and clicking the 'change text' button in order to be able to annotate this new text ("test 14 35")