雑多な技術系メモ

自分用のメモ。内容は保証しません。よろしくお願いします。

2019-04-20から1日間の記事一覧

【python】keys, valuesを配列に

よく忘れるので、サンプルコードを上げておきます sample_dict = {"a":1, "b":2, "c":3} print(sample_dict) # => {'a': 1, 'b': 2, 'c': 3} # keysを配列に listed_keys = list(sample_dict.keys()) print(listed_keys) # -> ['a', 'b', 'c'] # valuesを配…

Kerasのデータセットをダウンロードする時のエラー[Errno 13] Permission denied:

from keras.datasets import reuters (x_train,y_train),(x_test,y_test) = reuters.load_data(path="reuters.npz", num_words=None, skip_top=0, maxlen=None, test_split=0.2, seed=113, start_char=1, oov_char=2, index_from=3) 出力 省略 [Errno 13] Pe…