Coder Social home page Coder Social logo

Comments (2)

srinify avatar srinify commented on June 9, 2024

Hi there @Vasanthpravin

When you run metadata.detect_from_dataframe(dp_pandas), SDV does a best-guess effort to automatically infer the metadata (and hence, the sdtypes) for all of your columns.

However, this process isn't perfect and we always recommend double checking the metadata to make sure it matches what you expect. You can display the metadata object to get a read-out of the auto-detected sdtypes:

print(metadata)

Then, you can update the sdtype of multiple columns at once using the update_columns_metadata method from SingleTableMetadata:

metadata.update_columns_metadata(
  column_metadata = {
    'personid': { 'sdtype': 'numerical' },
    'phoneid': { 'sdtype': 'phone_number' }
  }
)

Then you can create your synthesizer object, fit the model, and sample:

synthesizer = GaussianCopulaSynthesizer(metadata=metadata)
synthesizer.fit(data=df_pandas)
synthetic_data = synthesizer.sample(num_rows=50)

from sdv.

srinify avatar srinify commented on June 9, 2024

Hi there @Vasanthpravin I'm closing out this issue for now, as it seems like there isn't a clear bug here. But let me know if you're still running into the issue or uncover a related bug and we can re-open the issue!

from sdv.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.