said-ml

Results 10 comments of said-ml

clone the repository on you terminal commad of you IDE , run the following code git clone https://github.com/ctgk/PRML if you want to work online check out the link https://colab.research.google.com/drive/1OtBevAIJZsm-kZOjS_G-z7Czc3T6xHYe#scrollTo=U-pTAGoXla5e

clone the repository on you terminal commad of you IDE , run the following code git clone https://github.com/ctgk/PRML if you want to work online check out the link https://colab.research.google.com/drive/1OtBevAIJZsm-kZOjS_G-z7Czc3T6xHYe#scrollTo=U-pTAGoXla5e

clone the repository on you terminal commad of you IDE , run the following code git clone https://github.com/ctgk/PRML if you want to work online check out the link https://colab.research.google.com/drive/1OtBevAIJZsm-kZOjS_G-z7Czc3T6xHYe#scrollTo=U-pTAGoXla5e

clone the repository on you terminal commad of you IDE , run the following code git clone https://github.com/ctgk/PRML if you want to work online check out the link https://colab.research.google.com/drive/1OtBevAIJZsm-kZOjS_G-z7Czc3T6xHYe#scrollTo=U-pTAGoXla5e if...

in keras.optimizers.Adam(lr=0.001) change lr by learning_rate, the code become keras.optimizers.Adam(learning_rate=0.001)this is just an example

hey , try using fit method instead of fit_generator and expand the dimensions to achieve desire dimension , use tf.expand_dims(img_arra, 1) method or tf.expand_dims(img_arra, 1) method and change the chanel...

you need to add dim of batching , try with input_shape = (None, 128, 128, 3)

for the first question in statistic covariance matrix is inverse of precision matrix, as python code within in class (we access to argument through self) and using inv method from...

if your project with tensorflow-text you can clone the repository :git clone https://github.com/tensorflow/text , if you to install library that require tensorflow-text, unfortunately tensorflow-text does not yet supported by the...

``` python # sure you cannot directly (16800,) to (16950,) due 16800 !=16950 you can reshape it to (16800,1), to (1, 16800) #(numpy.tranpose()) , in machine learning you can reshape...