Brandon

Results 2 issues of Brandon

I'm using your neural artistic style code to generate some art using Django with Celery to work through tasks. I have CUDA enabled and everything works beautifully **without** Celery. As...

**model** ``` class Step(CTENode): description = models.CharField(max_length=75, null=True, blank=True) content_type = models.ForeignKey(ContentType, on_delete=models.CASCADE, limit_choices_to=step_choices, null=True, blank=True) object_id = GfkLookupField('content_type', null=True, blank=True) content_object = GenericForeignKey('content_type', 'object_id') is_active = models.BooleanField(verbose_name="Active", default=True, help_text="If...

bug