From 0bea0268caa182802874f80917dd45afa8db2273 Mon Sep 17 00:00:00 2001 From: Patrick von Platen Date: Mon, 30 May 2022 18:07:33 +0200 Subject: [PATCH] upload some initial structure --- README.md | 1 + src/diffusers/models/__init__.py | 13 +++++++++++++ src/diffusers/models/unnet.py | 13 +++++++++++++ src/diffusers/samplers/__init__.py | 13 +++++++++++++ 4 files changed, 40 insertions(+) create mode 100644 README.md create mode 100644 src/diffusers/models/__init__.py create mode 100644 src/diffusers/models/unnet.py create mode 100644 src/diffusers/samplers/__init__.py diff --git a/README.md b/README.md new file mode 100644 index 0000000000..470b64fd96 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +Super cool library about diffusion models diff --git a/src/diffusers/models/__init__.py b/src/diffusers/models/__init__.py new file mode 100644 index 0000000000..99977b417e --- /dev/null +++ b/src/diffusers/models/__init__.py @@ -0,0 +1,13 @@ +# Copyright 2022 The HuggingFace Team. All rights reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. diff --git a/src/diffusers/models/unnet.py b/src/diffusers/models/unnet.py new file mode 100644 index 0000000000..99977b417e --- /dev/null +++ b/src/diffusers/models/unnet.py @@ -0,0 +1,13 @@ +# Copyright 2022 The HuggingFace Team. All rights reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. diff --git a/src/diffusers/samplers/__init__.py b/src/diffusers/samplers/__init__.py new file mode 100644 index 0000000000..99977b417e --- /dev/null +++ b/src/diffusers/samplers/__init__.py @@ -0,0 +1,13 @@ +# Copyright 2022 The HuggingFace Team. All rights reserved. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License.