SynthVAE
Synthetic data generation by a Variational AutoEncoder with Differential Privacy assessed using Synthetic Data Vault metrics
File Explorer
- bug_report.md
- feature_request.md
- pull_request_template.md
- ELBO_Breakdown_SynthVAE_GMM.png
- Reconstruction_Breakdown_SynthVAE_GMM.png
- Variable duration SynthVAE_GMM_run_1.png
- Variable event SynthVAE_GMM_run_1.png
- Hyperparameter_Tuning_MIMIC.py
- Hyperparameter_Tuning_SUPPORT.py
- MIMIC.ipynb
- SUPPORT.ipynb
- MIMIC_Notebook.ipynb
- MIMIC_Runs.py
- SUPPORT_Notebook.ipynb
- SUPPORT_Runs.py
- __init__.py
- conv.py
- dp_lstm.py
- dp_multihead_attention.py
- embedding.py
- grad_sample_module.py
- group_norm.py
- instance_norm.py
- layer_norm.py
- linear.py
- README.md
- utils.py
- __init__.py
- dp_ddp.py
- dp_lstm.py
- dp_multihead_attention.py
- param_rename.py
- compute_dp_sgd_privacy.py
- __init__.py
- common.py
- dp_lstm_test.py
- dp_multihead_attention_test.py
- __init__.py
- common.py
- conv1d_test.py
- conv2d_test.py
- conv3d_test.py
- dp_lstm_test.py
- dp_multihead_attention_test.py
- embedding_test.py
- group_norm_test.py
- instance_norm1d_test.py
- instance_norm2d_test.py
- instance_norm3d_test.py
- layer_norm_test.py
- linear_test.py
- sequence_bias_test.py
- __init__.py
- docstring_examples_test.py
- dp_model_inspector_test.py
- grad_sample_module_test.py
- multigpu_gradcheck.py
- per_sample_gradient_clip_test.py
- poisson_test.py
- privacy_engine_test.py
- virtual_step_test.py
- module_inspection_test.py
- module_modification_test.py
- __init__.py
- clipping.py
- module_inspection.py
- module_modification.py
- packed_sequences.py
- stats.py
- tensor_utils.py
- uniform_sampler.py
- __init__.py
- dp_model_inspector.py
- per_sample_gradient_clip.py
- privacy_analysis.py
- privacy_engine.py
- README.md
- version.py
- __init__.py
- base.py
- boolean.py
- categorical.py
- datetime.py
- numerical.py
- utils.py
- __init__.py
- performance.py
- profiling.py
- __init__.py
- config.json
- identity.py
- addons_setup.py
- README.md
- __init__.py
- base.py
- boolean.py
- categorical.py
- datetime.py
- null.py
- numerical.py
- __init__.py
- errors.py
- hyper_transformer.py
- NHSX_SynthVAE (2).pdf
- report.pdf
- .gitignore
- CHANGELOG.md
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- example_input.csv
- LICENSE
- metrics.py
- MIMIC_preproc.ipynb
- model_card.md
- plot.py
- README.md
- requirements.txt
- scratch_vae_expts.py
- sdv_baselines.py
- utils.py
- VAE.py
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git checkout
View Details ▼
git checkout
Checkout a branch or paths to the working tree.
git checkout -b {{branch_name}}
Create and switch to a new branch:
git checkout -b {{branch_name}} {{reference}}
Create and switch to a new branch based on a specific reference (branch, remote/branch, tag are examples of valid references):
git checkout {{branch_name}}
Switch to an existing local branch:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
git commit
View Details ▼
git commit
Commit files to the repository.
git commit
Open an editor to write a message and commit staged files to the repository:
git commit {{[-m|--message]}} "{{message}}"
Commit staged files to the repository with the specified message:
git commit {{[-F|--file]}} {{path/to/commit_message_file}}
Commit staged files with a message read from a file:
git push
View Details ▼
git push
Push commits to a remote repository.
git push
Send local changes in the current branch to its default remote counterpart:
git push {{remote_name}} {{local_branch}}
Send changes from a specific local branch to its remote counterpart:
git push {{[-u|--set-upstream]}} {{remote_name}} {{local_branch}}
Send changes from a specific local branch to its remote counterpart, and set the remote one as the default push/pull target of the local one:
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
pip uninstall
View Details ▼
pip uninstall
Uninstall Python packages.
pip uninstall {{package}}
Uninstall a package:
pip uninstall {{[-r|--requirement]}} {{path/to/requirements.txt}}
Uninstall packages listed in a specific file:
pip uninstall {{[-y|--yes]}} {{package}}
Uninstall package without asking for confirmation:
python
View Details ▼
python
Python language interpreter.
python
Start a REPL (interactive shell):
python {{path/to/file.py}}
Execute a specific Python file:
python -i {{path/to/file.py}}
Execute a specific Python file and start a REPL:
