実現したいこと
麻雀サイトの天鳳の牌譜を学習で使える形にしようと考えています。
発生している問題・分からないこと
ディレクトリ内のすべてのファイルを処理する際に、name 'file_path' is not definedというエラーが出てしまい、解決できません。
2個目にコードの全体像を載せておきます。
エラーメッセージ
error
1Processing file: C:\Users\g2381454\Downloads\2022\test\scc20220101_updated_urls_log_1.txt 2Unexpected error processing file C:\Users\g2381454\Downloads\2022\test\scc20220101_updated_urls_log_1.txt: name 'file_path' is not defined 3Processing file: C:\Users\g2381454\Downloads\2022\test\scc20220101_updated_urls_log_10.txt 4Unexpected error processing file C:\Users\g2381454\Downloads\2022\test\scc20220101_updated_urls_log_10.txt: name 'file_path' is not defined 5Processing file: C:\Users\g2381454\Downloads\2022\test\scc20220101_updated_urls_log_100.txt 6Unexpected error processing file C:\Users\g2381454\Downloads\2022\test\scc20220101_updated_urls_log_100.txt: name 'file_path' is not defined 7Processing file: C:\Users\g2381454\Downloads\2022\test\scc20220101_updated_urls_log_11.txt 8Unexpected error processing file C:\Users\g2381454\Downloads\2022\test\scc20220101_updated_urls_log_11.txt: name 'file_path' is not defined 9Processing file: C:\Users\g2381454\Downloads\2022\test\scc20220101_updated_urls_log_12.txt 10Unexpected error processing file C:\Users\g2381454\Downloads\2022\test\scc20220101_updated_urls_log_12.txt: name 'file_path' is not defined 11Processing file: C:\Users\g2381454\Downloads\2022\test\scc20220101_updated_urls_log_13.txt 12Unexpected error processing file C:\Users\g2381454\Downloads\2022\test\scc20220101_updated_urls_log_13.txt: name 'file_path' is not defined
該当のソースコード
Python
1def process_text_files_manually(directory): 2 all_game_data = [] 3 for filename in os.listdir(directory): # ディレクトリ内のすべてのファイルを処理 4 file_path = os.path.join(directory, filename) # file_pathを定義 5 print(f"Processing file: {file_path}") 6 try: 7 with open(file_path, 'r', encoding='utf-8') as file: 8 file_content = file.read() 9 game_data = parse_mjlog_manually(file_content) 10 if game_data: 11 all_game_data.append((file_path, game_data)) 12 else: 13 print(f"Failed to parse: {file_path}") 14 gc.collect() 15 except Exception as e: 16 print(f"Unexpected error in file {file_path}: {e}") # エラーが発生した場合、file_pathを含めて出力 17 return all_game_data
Python
1import os 2import re 3import numpy as np 4import gc 5 6def safe_int_conversion(value, default=-1): 7#省略 8 9def tile_number_to_index(tile_number): 10 #省略 11 12def encode_hand_tiles(hand_tiles): 13#省略 14 15def encode_discards_and_melds(discards, melds): 16#省略 17 18def score_to_one_hot(score): 19#省略 20 21def encode_scores(player_scores): 22#省略 23 24def encode_dealer(dealer_index): 25#省略 26 27def encode_round(round_index): 28#省略 29 30def encode_dora(dora_tile): 31#省略 32 33def parse_mentsu_code(mentsu_code): 34#省略 35 36def parse_mjlog_manually(file_content): 37 38def process_text_files_manually(directory): 39#省略 40 41def prepare_data_append_to_csv(all_game_data, save_directory): 42#省略 43 44directory_path = r'C:\Users\g2381454\Downloads\2022\test' 45 46all_game_data = process_text_files_manually(directory_path) 47 48save_directory = r'C:\Users\g2381454\Documents\jupyter' 49 50X, y = prepare_data_append_to_csv(all_game_data, save_directory) 51 52print("Number of samples (X):", len(X)) 53print("Number of labels (y):", len(y)) 54if len(X) > 0: 55 print("Sample X[0]:", X[0]) 56if len(y) > 0: 57 print("Sample y[0]:", y[0]) 58
試したこと・調べたこと
- teratailやGoogle等で検索した
- ソースコードを自分なりに変更した
- 知人に聞いた
- その他
上記の詳細・結果
同様の質問が見つかりませんでした。
補足
特にありません。