Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MLP모델 구축 #26

Open
izongg0 opened this issue Nov 15, 2022 · 0 comments
Open

MLP모델 구축 #26

izongg0 opened this issue Nov 15, 2022 · 0 comments
Assignees
Labels

Comments

@izongg0
Copy link
Collaborator

izongg0 commented Nov 15, 2022

description

  • 특징추출(pca+tsne/Autoencoder)을 거친 데이터를 바탕으로 MLP모델 구축
  • input : 특징추출 이후 data
  • output : model performance
mlp = MLPClassifier(hidden_layer_sizes=(10, 128, 256,), activation='logistic',
                    solver='sgd', alpha=0.01, batch_size=32,
                    learning_rate_init=0.1, max_iter=500)

mlp.fit(x_train_scaled, y_train_all)
mlp.score(x_test_scaled, y_test)

expected issues

@Chaewon-Leee Chaewon-Leee self-assigned this Dec 15, 2022
@sohyun23 sohyun23 changed the title 푸리에변환 이후 ANN모델 구축 MLP모델 구축 Dec 21, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

4 participants