-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
475e717
commit 0880781
Showing
10 changed files
with
136 additions
and
129 deletions.
There are no files selected for viewing
29 changes: 29 additions & 0 deletions
29
backend/dataset/migrations/0047_alter_instruction_meta_info_language.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Generated by Django 3.2.14 on 2024-01-10 07:16 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("dataset", "0046_auto_20240104_0617"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="instruction", | ||
name="meta_info_language", | ||
field=models.CharField( | ||
blank=True, | ||
choices=[ | ||
("1", "English(Any script)"), | ||
("2", "Indic(Indic script)"), | ||
("3", "Indic(Latin script)"), | ||
("4", "Indic/English(Latin script)"), | ||
], | ||
help_text="Language of the instruction", | ||
max_length=20, | ||
null=True, | ||
verbose_name="Meta Info Language", | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
backend/projects/migrations/0054_alter_project_project_type.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Generated by Django 3.2.14 on 2024-01-10 03:10 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("projects", "0053_alter_project_project_type"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="project", | ||
name="project_type", | ||
field=models.CharField( | ||
choices=[ | ||
("ModelOutputEvaluation", "ModelOutputEvaluation"), | ||
("InstructionDrivenChat", "InstructionDrivenChat"), | ||
], | ||
help_text="Project Type indicating the annotation task", | ||
max_length=100, | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.