Jump to content

MarbleComa

Members
  • Posts

    11
  • Joined

  • Last visited

Posts posted by MarbleComa

  1. All the tabs in the WebGUI work perfectly for me except for the "DASHBOARD" tab. If I click on it, then it simply never loads, and I am then unable to click away to any of the other tabs. This issue seems to affect each browser session individually. For example, if I click on the "DASHBOARD" tab in Chrome on my desktop, then the WebGUI in Chrome on my desktop will not work. Even if I open a new tab, this issue will persist. However, the WebGUI does still work if I access it via Firefox from my desktop. If I then click on the "DASHBOARD" tab in Firefox, then the WebGUI in Firefox on my desktop will not work. The same behavior also applies to other computers that I have tested. 

     

    The only way I have found to make the WebGUI start working again after clicking on the "DASHBOARD" tab is to restart php-fpm. I generally do this by logging into the WebGUI from my laptop and running the command "/etc/rc.d/rc.php-fpm restart" in the Unraid terminal. In the attached syslog file, you will see my desktop (10.10.20.15) and my laptop (10.10.20.204). 

     

    I'm running Unraid 6.11.5. I have attached the anonymized diagnostics file, as well as an excerpt from the anonymized syslog that just shows the logs from when I was purposefully triggering this issue and restarting php-fpm. 

     

    Luckily, the WebGUI defaults to the "MAIN" tab, so I'm still able to use Unraid perfectly well. But if anyone has an idea of how I can fix this issue, that would be great. I'm happy to test ideas or provide more information! 

     

    Dashboard tab crash syslog.txt

    tower-diagnostics-20230206-1456.zip

  2. I'm on the 6.10rc2 release, and I installed the myservers plugin earlier today without issue. I was even able to confirm that my server was showing online in the myservers portal and I could reach it via the remote access link. 

     

    However, now it's been a few hours, and I can't reach my server at all locally or remotely. I see someone else had the same issue in the unraid subreddit 

     

    Is anyone else experiencing this? 

  3. I tried removing the IP from the field, as well as leaving the field completely blank, but neither of those worked for me. So far I have only been able to get into the web ui by using an external DB. 

     

    However, whenever I click on an Application, I just see a loading icon in the Services section. Meanwhile, the log is throwing errors, as you can see below. Ultimately, I get kicked back to the homepage of the web ui with the error message "Error during synchronization between servers: Unexpected end of file from server executing GET http://localhost:3000/status."

     

    I'm using the Arcface model, and I attached the full log file below. 

     

    image.png.2e2e691b73a5390e192f22f1a91b9e33.pngcompreface-gpu_error_log.txt

  4. Hi @ndetar, thanks for creating this unraid template! I've been trying for a few hours to get the deepstack gpu docker running on my system, but it seems that attempting to use a 3060 ti leads to quite some issues. With the default installation directly from the deepquestai/deepstack:gpu repository, nothing works, and I was able to determine that the included version of pytorch does not support the 3060 ti. I ran cat ../logs/stderr.txt and found the following message:

     

    "NVIDIA GeForce RTX 3060 ti with CUDA capability sm_86 is not compatible with the current PyTorch installation. The current PyTorch install supports CUDA capabilities sm_37 sm_50 sm_60 sm_70.
    If you want to use the NVIDIA GeForce RTX 3060 ti GPU with PyTorch."

     

    I did some reading on the pytorch site (https://pytorch.org/get-started/locally/), and I found the pip install command to get their LTS (1.8.2) version which supports cuda 11.1. As a side note, I'm on Unraid 6.10.0-rc2 and the Nvidia driver is CUDA version 11.5. I updated both torch and torch vision in the container and that allows the object detection to run on the 3060 ti (some progress, yay!). Unfortunately, now I'm getting a new error with the face detection that I haven't been able to solve despite my best googling. The output of cat ../logs/stderr.txt is below:

     

        Traceback (most recent call last):
      File "/app/intelligencelayer/shared/face.py", line 307, in face
        det = detector.predict(img, 0.55)
      File "/app/intelligencelayer/shared/./process.py", line 61, in predict
        pred = self.model(img, augment=False)[0]
      File "/usr/local/lib/python3.7/dist-packages/torch/nn/modules/module.py", line 1102, in _call_impl
        return forward_call(*input, **kwargs)
      File "/app/intelligencelayer/shared/./models/yolo.py", line 149, in forward
        return self.forward_once(x, profile)  # single-scale inference, train
      File "/app/intelligencelayer/shared/./models/yolo.py", line 176, in forward_once
        x = m(x)  # run
      File "/usr/local/lib/python3.7/dist-packages/torch/nn/modules/module.py", line 1102, in _call_impl
        return forward_call(*input, **kwargs)
      File "/app/intelligencelayer/shared/./models/common.py", line 109, in forward
        1,
      File "/usr/local/lib/python3.7/dist-packages/torch/nn/modules/module.py", line 1102, in _call_impl
        return forward_call(*input, **kwargs)
      File "/app/intelligencelayer/shared/./models/common.py", line 32, in forward
        return self.act(self.bn(self.conv(x)))
      File "/usr/local/lib/python3.7/dist-packages/torch/nn/modules/module.py", line 1102, in _call_impl
        return forward_call(*input, **kwargs)
      File "/usr/local/lib/python3.7/dist-packages/torch/nn/modules/activation.py", line 461, in forward
        return F.hardswish(input, self.inplace)
      File "/usr/local/lib/python3.7/dist-packages/torch/nn/modules/module.py", line 1178, in __getattr__
        type(self).__name__, name))
    AttributeError: 'Hardswish' object has no attribute 'inplace'

     

    Do you have any recommendation on how to proceed here? Many thanks!

×
×
  • Create New...