You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Importing necessary libraries
import pandas as pd
from os import path
import matplotlib.pyplot as plt
from ydata_synthetic.synthesizers.timeseries import TimeSeriesSynthesizer
from ydata_synthetic.synthesizers import ModelParameters, TrainParameters
for every line with ydata_synthetic :
error 1
from ydata_synthetic.synthesizers.timeseries import TimeSeriesSynthesizer
ImportError: cannot import name 'TimeSeriesSynthesizer' from 'ydata_synthetic.synthesizers.timeseries'
error 2
from ydata_synthetic.synthesizers import ModelParameters, TrainParameters
---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
Cell In[7], line 1
----> 1 from ydata_synthetic.synthesizers import ModelParameters, TrainParameters
ImportError: cannot import name 'ModelParameters' from 'ydata_synthetic.synthesizers'
how to fix it ?
The text was updated successfully, but these errors were encountered:
Not sure about the particular error. Idk if they have not updated their documentation or this is the another way or not. but if you want to use TimeGAN particularly.
you can import like this. this is working for me. from ydata_synthetic.synthesizers import TimeGAN
Not sure about the particular error. Idk if they have not updated their documentation or this is the another way or not. but if you want to use TimeGAN particularly.
you can import like this. this is working for me. from ydata_synthetic.synthesizers import TimeGAN
Hello
I try to reproduce this : https://docs.synthetic.ydata.ai/2.0/synthetic_data/time_series/timegan_example/#using-timegan-to-generate-synthetic-time-series-data
i followed this : https://docs.synthetic.ydata.ai/2.0/getting-started/installation/
but got errors :
for every line with ydata_synthetic :
how to fix it ?
The text was updated successfully, but these errors were encountered: