I would like to use scikit's package elastic net with a log regression. This is what I am doing so far:
from sklearn.linear_model import ElasticNet
enet = ElasticNet(alpha=alpha, l1_ratio=0.7)
y_enet = enet.fit(X_train, y_train)
Is it possible to change the model to a log regression?