Expand head info in files

Previously before this commit, credits are already in entry and licenses are already in root. This commit will make info clearer.
This commit is contained in:
lllyasviel
2024-02-11 19:54:48 -08:00
parent 9c5038c766
commit 3d039591fe
63 changed files with 247 additions and 19 deletions

View File

@@ -1,3 +1,10 @@
# 1st edit by https://github.com/CompVis/latent-diffusion
# 2nd edit by https://github.com/Stability-AI/stablediffusion
# 3rd edit by https://github.com/Stability-AI/generative-models
# 4th edit by https://github.com/comfyanonymous/ComfyUI
# 5th edit by Forge
# pytorch_diffusion + derived encoder decoder
import math
import torch

View File

@@ -1,3 +1,10 @@
# 1st edit by https://github.com/CompVis/latent-diffusion
# 2nd edit by https://github.com/Stability-AI/stablediffusion
# 3rd edit by https://github.com/Stability-AI/generative-models
# 4th edit by https://github.com/comfyanonymous/ComfyUI
# 5th edit by Forge
from abc import abstractmethod
import torch as th

View File

@@ -1,3 +1,11 @@
# 1st edit by https://github.com/CompVis/latent-diffusion
# 2nd edit by https://github.com/Stability-AI/stablediffusion
# 3rd edit by https://github.com/Stability-AI/generative-models
# 4th edit by https://github.com/comfyanonymous/ComfyUI
# This file is only for reference, and not used in the backend or runtime.
import torch
import torch.nn as nn
import numpy as np

View File

@@ -1,3 +1,8 @@
# 1st edit by https://github.com/CompVis/latent-diffusion
# 2nd edit by https://github.com/Stability-AI/stablediffusion
# 3rd edit by https://github.com/Stability-AI/generative-models
# adopted from
# https://github.com/openai/improved-diffusion/blob/main/improved_diffusion/gaussian_diffusion.py
# and