4

Google Cloud NL API を使用して、いくつかの説明の感情を分析しています。一部の行については、エラーInvalidArgument: 400 The language vi is not supported for document_sentiment analysis.がポップアップし続けるため、これが発生する理由を必死に見つけて責任のある行を消去しようとするのではなく、それを回避する方法を構築したいと思います。残念ながら、私は Python に比較的慣れていないため、適切に行う方法がわかりません。

私のコードは次のとおりです。

description_list = []
sentimentscore_list=[]
magnitude_list=[]

# Create a Language client
language_client = google.cloud.language.LanguageServiceClient()


for i in range(len(description)):      # use the translated description if the original description is not in English
    if description_trans[i] == '':
        descr = description[i]
    else:
        descr = description_trans[i]


    document = google.cloud.language.types.Document(
        content=descr,
        type=google.cloud.language.enums.Document.Type.PLAIN_TEXT)

    # Use Language to detect the sentiment of the text.
    response = language_client.analyze_sentiment(document=document)
    sentiment = response.document_sentiment
    sentimentscore_list.append(sentiment.score)
    magnitude_list.append(sentiment.magnitude)
    # Add the description that was actually used to the description list
    description_list.append(descr)

このforループ(またはおそらく後半部分で十分)をエラー/例外処理にラップして、読み取れないループを単純に「スキップ」して次のループを続行する方法を説明できる人はいますか?また、「description_list」は、説明が実際に分析されたときにのみ追加されるようにします (エラー処理でスタックしたときではありません)。

どんな助けでも大歓迎です!! ありがとう :)


編集:より完全なエラーのトレースバックを求められました:

トレースバック (最新の呼び出しが最後):

  File "<ipython-input-64-6e3db1d976c9>", line 1, in <module>
    runfile('/Users/repos/NLPAnalysis/GoogleTest.py', wdir='/Users/repos/NLPAnalysis')

  File "/Users/anaconda3/lib/python3.6/site-packages/spyder/utils/site/sitecustomize.py", line 710, in runfile
    execfile(filename, namespace)

  File "/Users/anaconda3/lib/python3.6/site-packages/spyder/utils/site/sitecustomize.py", line 101, in execfile
    exec(compile(f.read(), filename, 'exec'), namespace)

  File "/Users/repos/NLPAnalysis/GoogleTest.py", line 45, in <module>
    response = language_client.analyze_sentiment(document=document)

  File "/Users/anaconda3/lib/python3.6/site-packages/google/cloud/language_v1/gapic/language_service_client.py", line 180, in analyze_sentiment
    return self._analyze_sentiment(request, retry=retry, timeout=timeout)

  File "/Users/anaconda3/lib/python3.6/site-packages/google/api_core/gapic_v1/method.py", line 139, in __call__
    return wrapped_func(*args, **kwargs)

  File "/Users/anaconda3/lib/python3.6/site-packages/google/api_core/retry.py", line 260, in retry_wrapped_func
    on_error=on_error,

  File "/Users/anaconda3/lib/python3.6/site-packages/google/api_core/retry.py", line 177, in retry_target
    return target()

  File "/Users/anaconda3/lib/python3.6/site-packages/google/api_core/timeout.py", line 206, in func_with_timeout
    return func(*args, **kwargs)

  File "/Users/anaconda3/lib/python3.6/site-packages/google/api_core/grpc_helpers.py", line 56, in error_remapped_callable
    six.raise_from(exceptions.from_grpc_error(exc), exc)

  File "<string>", line 3, in raise_from

InvalidArgument: 400 The language vi is not supported for document_sentiment analysis.
4

2 に答える 2