change for ocr confidence
This commit is contained in:
+32
@@ -0,0 +1,32 @@
|
||||
# Generated by Django 5.2.7 on 2025-10-30 10:46
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('submissions', '0005_alter_submission_notes'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='puzzleresponse',
|
||||
name='ocr_confidence_score',
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='puzzleresponse',
|
||||
name='ocr_confidence_area',
|
||||
field=models.FloatField(blank=True, help_text='OCR confidence score for area (0.0 to 1.0)', null=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='puzzleresponse',
|
||||
name='ocr_confidence_cost',
|
||||
field=models.FloatField(blank=True, help_text='OCR confidence score for cost (0.0 to 1.0)', null=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='puzzleresponse',
|
||||
name='ocr_confidence_cycles',
|
||||
field=models.FloatField(blank=True, help_text='OCR confidence score for cycles (0.0 to 1.0)', null=True),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user