CustomvisionのAPIを使用したいです。
以下のプログラムでエラーが出ます。
原因や推察など何かわかる方がいましたら教えてください。
お願いします。
おそらく原因はbase_urlのURLが原因だと思います。
その解決を知っている方は教えてください。
Python
1import glob 2from azure.cognitiveservices.vision.customvision.prediction import CustomVisionPredictionClient 3 4base_url = "https://fishclassfiction.cognitiveservices.azure.com/" 5projectID = 'a6b4a6be-c80c-4bf1-ab9a-d38ff5bc2e32' 6publish_iteration_name = 'Iteration3' 7prediction_key = 'd1a7f168692047458f0c620b884b8f40' 8 9def testModel(testfiles, fishname): 10 data_count = len(testfiles) 11 true_count = 0 12 13 # 予測用インスタンスの作成 …① 14 predictor = CustomVisionPredictionClient(prediction_key, endpoint=base_url) 15 16 for testfile in testfiles: 17 predicts = {} 18 with open(testfile, mode='rb') as f: 19 # 予測実行 …② 20 results = predictor.classify_image(projectID, publish_iteration_name, f.read()) 21 22 # 予測結果のタグの数だけループ …③ 23 for prediction in results.predictions: 24 # 予測した魚とその確率を紐づけて格納 …④ 25 predicts[prediction.tag_name] = prediction.probability 26 27 # 一番確率の高い魚を予測結果として選択 …⑤ 28 prediction_result = max(predicts, key=predicts.get) 29 30 # 予測結果が合っていれば正解数を増やす 31 if fishname == prediction_result: 32 true_count += 1 33 34 # 正解率の算出 35 accuracy = (true_count / data_count) * 100 36 print('正解率:' + str(accuracy) + '%') 37 38 39# 検証用画像を保存したルートディレクトリパス 40root_dir = 'fishimages/' 41# 検証対象の魚名一覧 42fishnames = ['アイゴ','オニカサゴ','カサゴ','カワハギ','キュウセンベラ', 43 'クサフグ','ソウシハギ','マハゼ','マアジ','マイワシ','ミノカサゴ', 44 'メジナ','メバル'] 45 46for fishname in fishnames: 47 print('****' + fishname + '****') 48 # testデータのリストを取得 49 testfiles = glob.glob(root_dir + fishname + '/test/*') 50 testModel(testfiles, fishname) 51
エラー
アイゴ
TypeError Traceback (most recent call last)
<ipython-input-52-0f0d99c2d038> in <module>
10 # testデータのリストを取得
11 testfiles = glob.glob(root_dir + fishname + '/test/*')
---> 12 testModel(testfiles, fishname)
<ipython-input-51-99095a179497> in testModel(testfiles, fishname)
4
5 # 予測用インスタンスの作成 …①
----> 6 predictor = CustomVisionPredictionClient(prediction_key, endpoint=base_url)
7
8 for testfile in testfiles:
TypeError: init() got multiple values for argument 'endpoint'
回答2件
あなたの回答
tips
プレビュー