2021-01-01から1年間の記事一覧

【Python3】リストとクラスの速度に関して メモ書き 結果: クラスを作成したほうが若干早い模様. import time class TestClass: def __init__(self, name): self.name = name start = time.time()testClass = TestClass("fuga") for i in range(1_000_000):…

Windows10にTensorflow-GPUを導入する[2021/01/18]

Windows10にTensorflow-GPUを導入する[2021/01/18] 環境 OS: Windows 10 Home 64bit GPU: GeForce RTX 2060 SUPER Python 3.8.5 Anaconda 4.9.2 tensorflow 2.3.0 scipy 1.5.2 keras 2.4.3 参考サイト [Python]Windows10にTensorflow-GPU+Kerasをインストー…