Thomas C. Kübler
Thomas C. Kübler
Hi there, had the same problem and backtraced it to the Apache configuration. the Ubuntu.md documentation suggests to remove the VirtualHost tag from the config file (or at least does...
Hi @blaxxzg , here is my config file, located at /etc/apache2/sites-available/000-default.conf As mentioned above I did install some other libraries and stuff before getting it to work, so I cannot...
Replacing the lambda function in TrainAugmentation with the following function worked for me: class ScaleByStd: def __init__(self, std): self.std = std def __call__(self, image, boxes=None, labels=None): return image / self.std,...