We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi everyone,
I am following the tutorial and I noticed a little mistake. Supposedly, we should use these code lines to generate data to train the LAN:
# MAKE DATA my_dataset_generator = ssms.dataset_generators.data_generator( generator_config=generator_config, model_config=model_config ) training_data = my_dataset_generator.generate_data_training_uniform(save=True)
But actually, the correct lines are these:
# MAKE DATA my_dataset_generator = ssms.dataset_generators.lan_mlp.data_generator( generator_config=generator_config, model_config=model_config ) training_data = my_dataset_generator.generate_data_training_uniform(save=True)
Hope it helps to anyone starting to use LANfactory :)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi everyone,
I am following the tutorial and I noticed a little mistake. Supposedly, we should use these code lines to generate data to train the LAN:
But actually, the correct lines are these:
Hope it helps to anyone starting to use LANfactory :)
The text was updated successfully, but these errors were encountered: