-
Notifications
You must be signed in to change notification settings - Fork 317
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use own dataset #192
Comments
Hello @Arrmlet If you have your data stored in a CSV file you should be able to load it using In most cases you would only need these two lines: import pandas as pd
your_dataframe = pd.read_csv('path/to/your.csv') But in some cases you might need to tweak the Here you should be able to find all the details and tutorials about loading the data with pandas: https://pandas.pydata.org/docs/getting_started/intro_tutorials/02_read_write.html |
Hello @csala,
But when I run this code I got an error:
I think I do not creating a metadata object in right way. Thank you for your job, |
The problem is that you are only passing the name of the table to the
If you change this line, the rest should work as expected. In any case, if you are using only one table, you might want to can consider using the Tabular models instead of the |
@csala Thanks a lot:) |
Closing this, as the question is already answered. |
* Add working addons * Add eradicate * Add dlint * Decrease complexity (sdv-dev#184) * Add addon (sdv-dev#186) * Add `pytest-style` (sdv-dev#192) * Add addon * Fix randomized error message * Add addon (sdv-dev#188) * Add addon (#191) * Add `pandas-vet` (sdv-dev#190) * Add addon * noqa torch.stack * remove double quotes (sdv-dev#187) * Add addon (sdv-dev#185) * Add `flake8-docstrings` (sdv-dev#193) * Add addon * Fix D100 * Add more docstrings * Fix docstrings * Update docstrings * Fix lint * Add `flake8-builtins` (sdv-dev#189) * Add addon * Add variables-names * Fix bug * Fix mistakes * Add `flake8-multiline-containers` (sdv-dev#183) * Add addon * Add addon * Address feedback * Fix lint * Fix bugs * Remove pydoclint * Ignore D101 errors * Update ignores
Description
Hello everybody,
I am enjoy SDV package, I have tried to generate synthetic data using demo models.
Owing to this, I have tried to load my own dataset( csv file), but I cannot find a way how to do this, I am ensured that I could do this.
Can somebody help me with that, or share some documentation where I could find this.
Regards,
arrmlet
What I Did
The text was updated successfully, but these errors were encountered: