diff --git a/gretel/create_synthetic_data_from_csv_or_df/blueprint.ipynb b/gretel/create_synthetic_data_from_csv_or_df/blueprint.ipynb index 674c31cd..54d5c7f1 100644 --- a/gretel/create_synthetic_data_from_csv_or_df/blueprint.ipynb +++ b/gretel/create_synthetic_data_from_csv_or_df/blueprint.ipynb @@ -17,7 +17,7 @@ "source": [ "%%capture\n", "\n", - "!pip install -U gretel-client \"gretel-synthetics[tf]>=0.14.0\" pandas" + "!pip install -U gretel-client \"gretel-synthetics>=0.14.0\" pandas" ] }, { @@ -125,6 +125,9 @@ "metadata": {}, "outputs": [], "source": [ + "# num_lines: how many rows to generate\n", + "# max_invalid: the number of rows that do not pass semantic validation, if this number is exceeded, training will\n", + "# stop\n", "bundle.generate(num_lines=nrows, max_invalid=nrows)" ] },