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
4ace7d04
Unverified
Commit
4ace7d04
authored
Jan 21, 2025
by
Sayak Paul
Committed by
GitHub
Jan 20, 2025
Browse files
[chore] change licensing to 2025 from 2024. (#10615)
change licensing to 2025 from 2024.
parent
75a636da
Changes
117
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
20 additions
and
20 deletions
+20
-20
src/diffusers/models/model_loading_utils.py
src/diffusers/models/model_loading_utils.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/unets/uvit_2d.py
src/diffusers/models/unets/uvit_2d.py
+1
-1
src/diffusers/optimization.py
src/diffusers/optimization.py
+1
-1
src/diffusers/pipelines/auto_pipeline.py
src/diffusers/pipelines/auto_pipeline.py
+1
-1
src/diffusers/pipelines/blip_diffusion/blip_image_processing.py
...ffusers/pipelines/blip_diffusion/blip_image_processing.py
+1
-1
src/diffusers/pipelines/onnx_utils.py
src/diffusers/pipelines/onnx_utils.py
+1
-1
src/diffusers/pipelines/pipeline_flax_utils.py
src/diffusers/pipelines/pipeline_flax_utils.py
+1
-1
src/diffusers/pipelines/pipeline_loading_utils.py
src/diffusers/pipelines/pipeline_loading_utils.py
+1
-1
src/diffusers/pipelines/pipeline_utils.py
src/diffusers/pipelines/pipeline_utils.py
+1
-1
src/diffusers/pipelines/stable_diffusion/convert_from_ckpt.py
...diffusers/pipelines/stable_diffusion/convert_from_ckpt.py
+1
-1
src/diffusers/pipelines/transformers_loading_utils.py
src/diffusers/pipelines/transformers_loading_utils.py
+1
-1
src/diffusers/quantizers/auto.py
src/diffusers/quantizers/auto.py
+1
-1
src/diffusers/quantizers/base.py
src/diffusers/quantizers/base.py
+1
-1
src/diffusers/quantizers/bitsandbytes/bnb_quantizer.py
src/diffusers/quantizers/bitsandbytes/bnb_quantizer.py
+1
-1
src/diffusers/quantizers/bitsandbytes/utils.py
src/diffusers/quantizers/bitsandbytes/utils.py
+1
-1
src/diffusers/quantizers/torchao/__init__.py
src/diffusers/quantizers/torchao/__init__.py
+1
-1
No files found.
src/diffusers/models/model_loading_utils.py
View file @
4ace7d04
# coding=utf-8
# coding=utf-8
# Copyright 202
4
The HuggingFace Inc. team.
# Copyright 202
5
The HuggingFace Inc. team.
# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
src/diffusers/models/modeling_flax_pytorch_utils.py
View file @
4ace7d04
# coding=utf-8
# coding=utf-8
# Copyright 202
4
The HuggingFace Inc. team.
# Copyright 202
5
The HuggingFace Inc. team.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# you may not use this file except in compliance with the License.
...
...
src/diffusers/models/modeling_flax_utils.py
View file @
4ace7d04
# coding=utf-8
# coding=utf-8
# Copyright 202
4
The HuggingFace Inc. team.
# Copyright 202
5
The HuggingFace Inc. team.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# you may not use this file except in compliance with the License.
...
...
src/diffusers/models/modeling_pytorch_flax_utils.py
View file @
4ace7d04
# coding=utf-8
# coding=utf-8
# Copyright 202
4
The HuggingFace Inc. team.
# Copyright 202
5
The HuggingFace Inc. team.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# you may not use this file except in compliance with the License.
...
...
src/diffusers/models/modeling_utils.py
View file @
4ace7d04
# coding=utf-8
# coding=utf-8
# Copyright 202
4
The HuggingFace Inc. team.
# Copyright 202
5
The HuggingFace Inc. team.
# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
src/diffusers/models/unets/uvit_2d.py
View file @
4ace7d04
# coding=utf-8
# coding=utf-8
# Copyright 202
4
The HuggingFace Inc. team.
# Copyright 202
5
The HuggingFace Inc. team.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# you may not use this file except in compliance with the License.
...
...
src/diffusers/optimization.py
View file @
4ace7d04
# coding=utf-8
# coding=utf-8
# Copyright 202
4
The HuggingFace Inc. team.
# Copyright 202
5
The HuggingFace Inc. team.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# you may not use this file except in compliance with the License.
...
...
src/diffusers/pipelines/auto_pipeline.py
View file @
4ace7d04
# coding=utf-8
# coding=utf-8
# Copyright 202
4
The HuggingFace Inc. team.
# Copyright 202
5
The HuggingFace Inc. team.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# you may not use this file except in compliance with the License.
...
...
src/diffusers/pipelines/blip_diffusion/blip_image_processing.py
View file @
4ace7d04
# coding=utf-8
# coding=utf-8
# Copyright 202
4
The HuggingFace Inc. team. All rights reserved.
# Copyright 202
5
The HuggingFace Inc. team. All rights reserved.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# you may not use this file except in compliance with the License.
...
...
src/diffusers/pipelines/onnx_utils.py
View file @
4ace7d04
# coding=utf-8
# coding=utf-8
# Copyright 202
4
The HuggingFace Inc. team.
# Copyright 202
5
The HuggingFace Inc. team.
# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
src/diffusers/pipelines/pipeline_flax_utils.py
View file @
4ace7d04
# coding=utf-8
# coding=utf-8
# Copyright 202
4
The HuggingFace Inc. team.
# Copyright 202
5
The HuggingFace Inc. team.
# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
src/diffusers/pipelines/pipeline_loading_utils.py
View file @
4ace7d04
# coding=utf-8
# coding=utf-8
# Copyright 202
4
The HuggingFace Inc. team.
# Copyright 202
5
The HuggingFace Inc. team.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# you may not use this file except in compliance with the License.
...
...
src/diffusers/pipelines/pipeline_utils.py
View file @
4ace7d04
# coding=utf-8
# coding=utf-8
# Copyright 202
4
The HuggingFace Inc. team.
# Copyright 202
5
The HuggingFace Inc. team.
# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
# Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
...
...
src/diffusers/pipelines/stable_diffusion/convert_from_ckpt.py
View file @
4ace7d04
# coding=utf-8
# coding=utf-8
# Copyright 202
4
The HuggingFace Inc. team.
# Copyright 202
5
The HuggingFace Inc. team.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# you may not use this file except in compliance with the License.
...
...
src/diffusers/pipelines/transformers_loading_utils.py
View file @
4ace7d04
# coding=utf-8
# coding=utf-8
# Copyright 202
4
The HuggingFace Inc. team.
# Copyright 202
5
The HuggingFace Inc. team.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# you may not use this file except in compliance with the License.
...
...
src/diffusers/quantizers/auto.py
View file @
4ace7d04
# Copyright 202
4
The HuggingFace Inc. team. All rights reserved.
# Copyright 202
5
The HuggingFace Inc. team. All rights reserved.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# you may not use this file except in compliance with the License.
...
...
src/diffusers/quantizers/base.py
View file @
4ace7d04
# Copyright 202
4
The HuggingFace Inc. team. All rights reserved.
# Copyright 202
5
The HuggingFace Inc. team. All rights reserved.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# you may not use this file except in compliance with the License.
...
...
src/diffusers/quantizers/bitsandbytes/bnb_quantizer.py
View file @
4ace7d04
# Copyright 202
4
The HuggingFace Inc. team. All rights reserved.
# Copyright 202
5
The HuggingFace Inc. team. All rights reserved.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# you may not use this file except in compliance with the License.
...
...
src/diffusers/quantizers/bitsandbytes/utils.py
View file @
4ace7d04
# Copyright 202
4
The HuggingFace Inc. team. All rights reserved.
# Copyright 202
5
The HuggingFace Inc. team. All rights reserved.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# you may not use this file except in compliance with the License.
...
...
src/diffusers/quantizers/torchao/__init__.py
View file @
4ace7d04
# Copyright 202
4
The HuggingFace Inc. team. All rights reserved.
# Copyright 202
5
The HuggingFace Inc. team. All rights reserved.
#
#
# Licensed under the Apache License, Version 2.0 (the "License");
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# you may not use this file except in compliance with the License.
...
...
Prev
1
2
3
4
5
6
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