From b1f9ea8231386dff906b2d77c63976026d72bb04 Mon Sep 17 00:00:00 2001 From: David Nabergoj Date: Fri, 13 Oct 2023 08:13:16 +0200 Subject: [PATCH] Update example in README.md --- .idea/.gitignore | 8 ++++++++ README.md | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 .idea/.gitignore diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/README.md b/README.md index 6ea59f2..722dfa5 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ from normalizing_flows import RealNVP, Flow torch.manual_seed(0) -n_data = 100 +n_data = 1000 n_dim = 3 x = torch.randn(n_data, n_dim) # Generate some training data