필터 지우기
필터 지우기

Feedforward Net convert from Python

조회 수: 3 (최근 30일)
Stephen Gray
Stephen Gray 2020년 3월 9일
답변: Srivardhan Gadila 2020년 3월 16일
Hi.
I have an example of a feedforward network written in Python using an ADAM optimizer which I want to replicate in Matlab. The basics are
network = models.Sequential()
network.add(layers.Dense(units=64, activation='relu', input_shape=(len(features.columns),)))
network.add(layers.Dense(units=32, activation='relu'))
network.add(layers.Dense(units=1, activation='sigmoid'))
network.compile(loss='binary_crossentropy', optimizer='adam', metrics=['accuracy'])
es = EarlyStopping(monitor='val_loss', mode='min', verbose=0, patience=500)
mc = ModelCheckpoint('data/best_model.h5', monitor='val_loss', mode='min', verbose=2, save_best_only=True)
history = network.fit(train_features, train_target,
epochs=1000, verbose=0, batch_size=128,
validation_data=(test_features, test_target), callbacks=[es, mc])
I believe I cannot use the Adam optimizer in the feedforward function so can I directly convert this or woud I have to create some layers myself rather than use the feedforward function?

채택된 답변

Srivardhan Gadila
Srivardhan Gadila 2020년 3월 16일
You can train the above network in keras framework and import it to matlab using the importKerasLayers, importKerasNetwork functions.
Alternatively you can define the above network in matlab using the Deep Learning Layers in MATLAB and mention the 'adam' optimizer as the sovlerName in the trainingOptions.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Call Python from MATLAB에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by