RyanKor / 2021-google-ml-bootcamp

Google Machine Learning Bootcamp 2021
13 stars 0 forks source link

[Assignment Error] Course 4, Week 3: variable parameter name error in unet_model function #16

Closed RyanKor closed 3 years ago

RyanKor commented 3 years ago

Error Explanation : conv_block(cblock3[0], n_filters * 8, dropout=0.3)에서 dropout이 기존의 과제 초기화 시, dropout_prob으로 표기되어 에러가 발생함.


def unet_model(input_size=(96, 128, 3), n_filters=32, n_classes=23):

    ...

    cblock4 = conv_block(cblock3[0], n_filters * 8, dropout=0.3) # Include a dropout_prob of 0.3 for this layer
    # Include a dropout_prob of 0.3 for this layer, and avoid the max_pooling layer
    cblock5 = conv_block(cblock4[0], n_filters * 16, dropout=0.3, max_pooling=False) 

    ...

가벼운 오타 표기로 위의 매개변수 명칭을 dropout으로 표기해주면, 해당 에러를 해결할 수 있음.