How can I describe the parameters for the fuzzy c-means clustering algorithm?
import numpy as np
from fcmeans import FCM
my_model = FCM(n_clusters=12)
my_model
output: FCM(n_clusters=12, max_iter=150, m=2.0, error=1e-05, random_state=None, trained=False)