with open('class_indices.json', 'w') as json_file:
时间: 2023-08-06 17:04:11 浏览: 194
Keras用IMDB数据源(imdb.npz + imdb_word_index.json)
这是用 Python 中的 `open()` 函数创建一个名为 `class_indices.json` 的新文件,并以写模式打开它。在这种模式下,如果该文件已经存在,则其内容将被覆盖。如果该文件不存在,则将创建一个新文件。
接下来,你可以使用 `json.dump()` 函数将 JSON 数据写入该文件。例如:
```python
import json
data = {'cat': 0, 'dog': 1, 'bird': 2}
with open('class_indices.json', 'w') as json_file:
json.dump(data, json_file)
```
这将创建一个名为 `class_indices.json` 的文件,并将以下 JSON 数据写入该文件:
```json
{
"cat": 0,
"dog": 1,
"bird": 2
}
```
阅读全文