mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
fixes #222
This commit is contained in:
parent
a0f983f05d
commit
208f4291d6
@ -158,7 +158,7 @@ class Consumer(LoggingMixin):
|
|||||||
try:
|
try:
|
||||||
classifier = DocumentClassifier()
|
classifier = DocumentClassifier()
|
||||||
classifier.reload()
|
classifier.reload()
|
||||||
except (FileNotFoundError, IncompatibleClassifierVersionError) as e:
|
except (OSError, EOFError, IncompatibleClassifierVersionError) as e:
|
||||||
self.log(
|
self.log(
|
||||||
"warning",
|
"warning",
|
||||||
f"Cannot classify documents: {e}.")
|
f"Cannot classify documents: {e}.")
|
||||||
|
@ -73,7 +73,7 @@ class Command(Renderable, BaseCommand):
|
|||||||
classifier = DocumentClassifier()
|
classifier = DocumentClassifier()
|
||||||
try:
|
try:
|
||||||
classifier.reload()
|
classifier.reload()
|
||||||
except (FileNotFoundError, IncompatibleClassifierVersionError) as e:
|
except (OSError, EOFError, IncompatibleClassifierVersionError) as e:
|
||||||
logging.getLogger(__name__).warning(
|
logging.getLogger(__name__).warning(
|
||||||
f"Cannot classify documents: {e}.")
|
f"Cannot classify documents: {e}.")
|
||||||
classifier = None
|
classifier = None
|
||||||
|
@ -35,9 +35,9 @@ def train_classifier():
|
|||||||
try:
|
try:
|
||||||
# load the classifier, since we might not have to train it again.
|
# load the classifier, since we might not have to train it again.
|
||||||
classifier.reload()
|
classifier.reload()
|
||||||
except (FileNotFoundError, IncompatibleClassifierVersionError):
|
except (OSError, EOFError, IncompatibleClassifierVersionError):
|
||||||
# This is what we're going to fix here.
|
# This is what we're going to fix here.
|
||||||
pass
|
classifier = DocumentClassifier()
|
||||||
|
|
||||||
try:
|
try:
|
||||||
if classifier.train():
|
if classifier.train():
|
||||||
|
Loading…
x
Reference in New Issue
Block a user