質問編集履歴
2
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -104,7 +104,9 @@
|
|
104
104
|
|
105
105
|
OSError Traceback (most recent call last)
|
106
106
|
|
107
|
+
<ipython-input-
|
108
|
+
|
107
|
-
|
109
|
+
88-171f9eae8e3f> in <module>()
|
108
110
|
|
109
111
|
6 path_wakati = path + ".wakati"
|
110
112
|
|
@@ -121,3 +123,39 @@
|
|
121
123
|
OSError: [Errno 22] Invalid argument
|
122
124
|
|
123
125
|
```
|
126
|
+
|
127
|
+
|
128
|
+
|
129
|
+
### エラー内容2
|
130
|
+
|
131
|
+
```python
|
132
|
+
|
133
|
+
0%| | 0/23 [00:00<?, ?it/s]
|
134
|
+
|
135
|
+
./isojintext/eq_0312.txt
|
136
|
+
|
137
|
+
|
138
|
+
|
139
|
+
---------------------------------------------------------------------------
|
140
|
+
|
141
|
+
OSError Traceback (most recent call last)
|
142
|
+
|
143
|
+
<ipython-input-25-15e4194c1e08> in <module>()
|
144
|
+
|
145
|
+
7 if os.path.exists(path_wakati): continue
|
146
|
+
|
147
|
+
8 f = open(path, "r")
|
148
|
+
|
149
|
+
----> 9 text = f.read()
|
150
|
+
|
151
|
+
10 words = ja_tokenize(text)
|
152
|
+
|
153
|
+
11 wt = " ".join(words)
|
154
|
+
|
155
|
+
|
156
|
+
|
157
|
+
OSError: [Errno 22] Invalid argument
|
158
|
+
|
159
|
+
```
|
160
|
+
|
161
|
+
```
|
1
詳細の追加
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
テキストファイルが開けません
|
1
|
+
教科書の手順でのテキストファイルが開けません
|
test
CHANGED
@@ -1,4 +1,6 @@
|
|
1
|
-
教科書の中のテキストを読み込むコードなのですが、テキストファイルを別のものにすると読み込めなくなりました。
|
1
|
+
教科書の中のテキストを読み込むコードなのですが、テキストファイルを教科書内のものではない別のものにすると読み込めなくなりました。
|
2
|
+
|
3
|
+
やはりテキストデータの違いによるものなのでしょうか・・・、
|
2
4
|
|
3
5
|
|
4
6
|
|
@@ -73,3 +75,49 @@
|
|
73
75
|
open(path_wakati, "w", encoding="utf-8").write(wt)
|
74
76
|
|
75
77
|
```
|
78
|
+
|
79
|
+
混み込めていたテキスト一例
|
80
|
+
|
81
|
+
./newstext
|
82
|
+
|
83
|
+
![イメージ説明](9403b3dfbcb9452cf9c460fde5c8654b.png)
|
84
|
+
|
85
|
+
読み込めなかったテキスト一例
|
86
|
+
|
87
|
+
./Isojintext
|
88
|
+
|
89
|
+
![イメージ説明](10de4ad82d2e87b46eff44d699ff26b8.png)
|
90
|
+
|
91
|
+
|
92
|
+
|
93
|
+
### エラー内容
|
94
|
+
|
95
|
+
```python
|
96
|
+
|
97
|
+
0%| | 0/23 [00:00<?, ?it/s]
|
98
|
+
|
99
|
+
./Isojintext/eq_0312.txt
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
---------------------------------------------------------------------------
|
104
|
+
|
105
|
+
OSError Traceback (most recent call last)
|
106
|
+
|
107
|
+
<ipython-input-88-171f9eae8e3f> in <module>()
|
108
|
+
|
109
|
+
6 path_wakati = path + ".wakati"
|
110
|
+
|
111
|
+
7 if os.path.exists(path_wakati): continue
|
112
|
+
|
113
|
+
----> 8 text = open(path,"r").read()
|
114
|
+
|
115
|
+
9 words = ja_tokenize(text)
|
116
|
+
|
117
|
+
10 wt = " ".join(words)
|
118
|
+
|
119
|
+
|
120
|
+
|
121
|
+
OSError: [Errno 22] Invalid argument
|
122
|
+
|
123
|
+
```
|