Bin
2025-12-17 1442f92732d7c5311a627a7ba3aaa0bb8ffc539f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Generated by Django 3.2.25 on 2024-06-17 22:00
 
from django.db import migrations, models
 
 
class Migration(migrations.Migration):
 
    dependencies = [
        ('ml_models', '0006_alter_modelrun_project_subset'),
    ]
 
    operations = [
        migrations.AddField(
            model_name='modelrun',
            name='total_correct_predictions',
            field=models.IntegerField(default=0, verbose_name='total correct predictions'),
        ),
        migrations.AddField(
            model_name='modelrun',
            name='total_predictions',
            field=models.IntegerField(default=0, verbose_name='total predictions'),
        ),
    ]