Spaces:
Sleeping
Sleeping
| from tensorflow.keras.models import Sequential | |
| from tensorflow.keras.layers import Dense | |
| # Basit bir model | |
| model = Sequential([ | |
| Dense(32, input_shape=(10,), activation='relu'), | |
| Dense(1, activation='sigmoid') | |
| ]) | |
| model.save("test_model.h5") |