sdv-dev / SDV

Synthetic data generation for tabular data
https://docs.sdv.dev/sdv
Other
2.39k stars 317 forks source link

Refactor `_fit` Method of `GaussianCopulaSynthesizer` for Modularity #2267

Closed pvk-developer closed 2 weeks ago

pvk-developer commented 1 month ago

Description

To improve code reuse and maintainability in the SDV library, the _fit method of the GaussianCopulaSynthesizer class should be modularized by splitting it into multiple, well-defined functions. This will make the code easier to extend.

We need to break down the _fit method into smaller steps. These steps should be implemented as separate functions to handle specific tasks within the fitting process.

Expected Steps