ディープラーニング

【python】1日30分のディープラーニング -6日目- ~基礎数学~

Contents
  1. 自然対数log

自然対数log

自然対数とは。
数学の世界ではネイピア数($e$)を底とする対数のことを表す。

Numpyを使用して自然対数を取得する

以下はネイピア数($e$)を何乗したら1〜5の数値になるのかを求めています。

import numpy as np

def get_log(x):
    return np.log(x)


print(np.exp(1))
print(get_log(1))
print(get_log(2))
print(get_log(3))
print(get_log(4))
print(get_log(5))

# outoput 2.718281828459045
# outoput  0.0
# outoput  0.6931471805599453
# outoput  1.0986122886681098
# outoput  1.3862943611198906
# outoput  1.6094379124341003