Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
renzhc
diffusers_dcu
Commits
b8a67640
Unverified
Commit
b8a67640
authored
Jun 13, 2022
by
Suraj Patil
Committed by
GitHub
Jun 13, 2022
Browse files
update Library structure
parent
ddc89204
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
48 additions
and
45 deletions
+48
-45
README.md
README.md
+48
-45
No files found.
README.md
View file @
b8a67640
...
@@ -225,54 +225,57 @@ wavwrite("generated_audio.wav", sampling_rate, audio.squeeze().cpu().numpy())
...
@@ -225,54 +225,57 @@ wavwrite("generated_audio.wav", sampling_rate, audio.squeeze().cpu().numpy())
## Library structure:
## Library structure:
```
```
├── models
├── LICENSE
│ ├── audio
├── Makefile
│ │ └── fastdiff
│ │ ├── modeling_fastdiff.py
│ │ ├── README.md
│ │ └── run_fastdiff.py
│ ├── __init__.py
│ └── vision
│ ├── dalle2
│ │ ├── modeling_dalle2.py
│ │ ├── README.md
│ │ └── run_dalle2.py
│ ├── ddpm
│ │ ├── example.py
│ │ ├── modeling_ddpm.py
│ │ ├── README.md
│ │ └── run_ddpm.py
│ ├── glide
│ │ ├── modeling_glide.py
│ │ ├── modeling_vqvae.py.py
│ │ ├── README.md
│ │ └── run_glide.py
│ ├── imagen
│ │ ├── modeling_dalle2.py
│ │ ├── README.md
│ │ └── run_dalle2.py
│ ├── __init__.py
│ └── latent_diffusion
│ ├── modeling_latent_diffusion.py
│ ├── README.md
│ └── run_latent_diffusion.py
├── pyproject.toml
├── README.md
├── README.md
├── pyproject.toml
├── setup.cfg
├── setup.cfg
├── setup.py
├── setup.py
├── src
├── src
│ └── diffusers
│ ├── diffusers
│ ├── configuration_utils.py
│ ├── __init__.py
│ ├── __init__.py
│ ├── configuration_utils.py
│ ├── modeling_utils.py
│ ├── dependency_versions_check.py
│ ├── models
│ ├── dependency_versions_table.py
│ │ ├── __init__.py
│ ├── dynamic_modules_utils.py
│ │ ├── unet_glide.py
│ ├── modeling_utils.py
│ │ └── unet.py
│ ├── models
│ ├── pipeline_utils.py
│ │ ├── __init__.py
│ └── schedulers
│ │ ├── unet.py
│ ├── gaussian_ddpm.py
│ │ ├── unet_glide.py
│ ├── __init__.py
│ │ └── unet_ldm.py
│ ├── pipeline_utils.py
│ ├── pipelines
│ │ ├── __init__.py
│ │ ├── configuration_ldmbert.py
│ │ ├── conversion_glide.py
│ │ ├── modeling_vae.py
│ │ ├── pipeline_bddm.py
│ │ ├── pipeline_ddim.py
│ │ ├── pipeline_ddpm.py
│ │ ├── pipeline_glide.py
│ │ └── pipeline_latent_diffusion.py
│ ├── schedulers
│ │ ├── __init__.py
│ │ ├── classifier_free_guidance.py
│ │ ├── scheduling_ddim.py
│ │ ├── scheduling_ddpm.py
│ │ ├── scheduling_plms.py
│ │ └── scheduling_utils.py
│ ├── testing_utils.py
│ └── utils
│ ├── __init__.py
│ └── logging.py
├── tests
├── tests
│ └── test_modeling_utils.py
│ ├── __init__.py
│ ├── test_modeling_utils.py
│ └── test_scheduler.py
└── utils
├── check_config_docstrings.py
├── check_copies.py
├── check_dummies.py
├── check_inits.py
├── check_repo.py
├── check_table.py
└── check_tf_ops.py
```
```
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment