From c95a21eadd7d9f58b89ef3fca5742dbe42650304 Mon Sep 17 00:00:00 2001 From: tenick Date: Mon, 27 Dec 2021 00:58:38 +0800 Subject: [PATCH] added new error and its solution --- Error Guide.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Error Guide.md b/Error Guide.md index f426986d7..fa538dc83 100644 --- a/Error Guide.md +++ b/Error Guide.md @@ -45,7 +45,13 @@ KeyError: 'ThumbsDown' # YOUR LABEL HERE Error:CUBLAS_STATUS_ALLOC_FAILED or CUDNN_STATUS_ALLOC_FAILED
Solution: This is because the available VRAM on your machine is completely consumed and there is no more memory available to train. Quit all of your Python programs and stop your Jupyter Notebook server to free up the VRAM and run the command again. - +Error:TypeError: arguments did not match any overloaded call: + drawLine(self, QLineF): argument 1 has unexpected type 'float' + drawLine(self, QLine): argument 1 has unexpected type 'float' + drawLine(self, int, int, int, int): argument 1 has unexpected type 'float' + drawLine(self, QPoint, QPoint): argument 1 has unexpected type 'float' + drawLine(self, Union[QPointF, QPoint], Union[QPointF, QPoint]): argument 1 has unexpected type 'float'
+Solution: https://github.com/tzutalin/labelImg/issues/811#issuecomment-977605722 Template Error: