We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b758129 commit 9a5809fCopy full SHA for 9a5809f
PaddleNLP/emotion_detection/run_classifier.py
@@ -18,6 +18,7 @@
18
import numpy as np
19
20
from models.classification import nets
21
+from models.model_check import check_cuda
22
import reader
23
import config
24
import utils
@@ -374,4 +375,5 @@ def get_cards():
374
375
376
if __name__ == "__main__":
377
utils.print_arguments(args)
378
+ check_cuda(args.use_cuda)
379
main(args)
PaddleNLP/emotion_detection/run_ernie_classifier.py
@@ -19,6 +19,7 @@
from preprocess.ernie import task_reader
from models.representation import ernie
25
# yapf: disable
@@ -384,4 +385,5 @@ def main(args):
384
385
386
387
388
389
0 commit comments