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
eadf0e25
Unverified
Commit
eadf0e25
authored
Mar 01, 2023
by
Patrick von Platen
Committed by
GitHub
Mar 01, 2023
Browse files
[Copyright] 2023 (#2524)
parent
856dad57
Changes
313
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
20 additions
and
20 deletions
+20
-20
src/diffusers/loaders.py
src/diffusers/loaders.py
+1
-1
src/diffusers/models/__init__.py
src/diffusers/models/__init__.py
+1
-1
src/diffusers/models/attention.py
src/diffusers/models/attention.py
+1
-1
src/diffusers/models/attention_flax.py
src/diffusers/models/attention_flax.py
+1
-1
src/diffusers/models/autoencoder_kl.py
src/diffusers/models/autoencoder_kl.py
+1
-1
src/diffusers/models/cross_attention.py
src/diffusers/models/cross_attention.py
+1
-1
src/diffusers/models/dual_transformer_2d.py
src/diffusers/models/dual_transformer_2d.py
+1
-1
src/diffusers/models/embeddings.py
src/diffusers/models/embeddings.py
+1
-1
src/diffusers/models/embeddings_flax.py
src/diffusers/models/embeddings_flax.py
+1
-1
src/diffusers/models/modeling_flax_pytorch_utils.py
src/diffusers/models/modeling_flax_pytorch_utils.py
+1
-1
src/diffusers/models/modeling_flax_utils.py
src/diffusers/models/modeling_flax_utils.py
+1
-1
src/diffusers/models/modeling_pytorch_flax_utils.py
src/diffusers/models/modeling_pytorch_flax_utils.py
+1
-1
src/diffusers/models/modeling_utils.py
src/diffusers/models/modeling_utils.py
+1
-1
src/diffusers/models/resnet_flax.py
src/diffusers/models/resnet_flax.py
+1
-1
src/diffusers/models/transformer_2d.py
src/diffusers/models/transformer_2d.py
+1
-1
src/diffusers/models/unet_1d.py
src/diffusers/models/unet_1d.py
+1
-1
src/diffusers/models/unet_1d_blocks.py
src/diffusers/models/unet_1d_blocks.py
+1
-1
src/diffusers/models/unet_2d.py
src/diffusers/models/unet_2d.py
+1
-1
src/diffusers/models/unet_2d_blocks.py
src/diffusers/models/unet_2d_blocks.py
+1
-1
src/diffusers/models/unet_2d_blocks_flax.py
src/diffusers/models/unet_2d_blocks_flax.py
+1
-1
No files found.
src/diffusers/loaders.py
View file @
eadf0e25
# Copyright 202
2
The HuggingFace Team. All rights reserved.
# Copyright 202
3
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.
...
...
src/diffusers/models/__init__.py
View file @
eadf0e25
# Copyright 202
2
The HuggingFace Team. All rights reserved.
# Copyright 202
3
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.
...
...
src/diffusers/models/attention.py
View file @
eadf0e25
# Copyright 202
2
The HuggingFace Team. All rights reserved.
# Copyright 202
3
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.
...
...
src/diffusers/models/attention_flax.py
View file @
eadf0e25
# Copyright 202
2
The HuggingFace Team. All rights reserved.
# Copyright 202
3
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.
...
...
src/diffusers/models/autoencoder_kl.py
View file @
eadf0e25
# Copyright 202
2
The HuggingFace Team. All rights reserved.
# Copyright 202
3
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.
...
...
src/diffusers/models/cross_attention.py
View file @
eadf0e25
# Copyright 202
2
The HuggingFace Team. All rights reserved.
# Copyright 202
3
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.
...
...
src/diffusers/models/dual_transformer_2d.py
View file @
eadf0e25
# Copyright 202
2
The HuggingFace Team. All rights reserved.
# Copyright 202
3
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.
...
...
src/diffusers/models/embeddings.py
View file @
eadf0e25
# Copyright 202
2
The HuggingFace Team. All rights reserved.
# Copyright 202
3
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.
...
...
src/diffusers/models/embeddings_flax.py
View file @
eadf0e25
# Copyright 202
2
The HuggingFace Team. All rights reserved.
# Copyright 202
3
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.
...
...
src/diffusers/models/modeling_flax_pytorch_utils.py
View file @
eadf0e25
# coding=utf-8
# Copyright 202
2
The HuggingFace Inc. team.
# Copyright 202
3
The HuggingFace Inc. team.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
src/diffusers/models/modeling_flax_utils.py
View file @
eadf0e25
# coding=utf-8
# Copyright 202
2
The HuggingFace Inc. team.
# Copyright 202
3
The HuggingFace Inc. team.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
src/diffusers/models/modeling_pytorch_flax_utils.py
View file @
eadf0e25
# coding=utf-8
# Copyright 202
2
The HuggingFace Inc. team.
# Copyright 202
3
The HuggingFace Inc. team.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
...
...
src/diffusers/models/modeling_utils.py
View file @
eadf0e25
# coding=utf-8
# Copyright 202
2
The HuggingFace Inc. team.
# Copyright 202
3
The HuggingFace Inc. team.
# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
src/diffusers/models/resnet_flax.py
View file @
eadf0e25
# Copyright 202
2
The HuggingFace Team. All rights reserved.
# Copyright 202
3
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.
...
...
src/diffusers/models/transformer_2d.py
View file @
eadf0e25
# Copyright 202
2
The HuggingFace Team. All rights reserved.
# Copyright 202
3
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.
...
...
src/diffusers/models/unet_1d.py
View file @
eadf0e25
# Copyright 202
2
The HuggingFace Team. All rights reserved.
# Copyright 202
3
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.
...
...
src/diffusers/models/unet_1d_blocks.py
View file @
eadf0e25
# Copyright 202
2
The HuggingFace Team. All rights reserved.
# Copyright 202
3
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.
...
...
src/diffusers/models/unet_2d.py
View file @
eadf0e25
# Copyright 202
2
The HuggingFace Team. All rights reserved.
# Copyright 202
3
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.
...
...
src/diffusers/models/unet_2d_blocks.py
View file @
eadf0e25
# Copyright 202
2
The HuggingFace Team. All rights reserved.
# Copyright 202
3
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.
...
...
src/diffusers/models/unet_2d_blocks_flax.py
View file @
eadf0e25
# Copyright 202
2
The HuggingFace Team. All rights reserved.
# Copyright 202
3
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.
...
...
Prev
1
…
3
4
5
6
7
8
9
10
11
…
16
Next
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