mirror of https://github.com/doccano/doccano.git
pythondatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learningannotation-tool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
430 B
17 lines
430 B
from model_mommy import mommy
|
|
|
|
|
|
def make_comment(doc, user):
|
|
return mommy.make("Comment", example=doc, user=user)
|
|
|
|
|
|
def make_doc(project):
|
|
return mommy.make("Example", text="example", project=project)
|
|
|
|
|
|
def make_image(project, filepath):
|
|
return mommy.make("Example", filename=filepath, project=project)
|
|
|
|
|
|
def make_example_state(example, user):
|
|
return mommy.make("ExampleState", example=example, confirmed_by=user)
|