DateLogicQA: Benchmarking Temporal Biases in Large Language Models
Paper
•
2412.13377
•
Published
•
2
Contributors who are invited to beta-test our next big feature! Contact us if you want to join this team :-)
from_single_file
loading and affected by the Runway SD 1.5 issue.runwayml/stable-diffusion-v1-5
saved locally in your HF cache then loading single file checkpoints in the following way should still work. from diffusers import StableDiffusionPipeline
pipe = StableDiffusionPipeline.from_single_file("<url or path to single file checkpoint>")
runwayml/stable-diffusion-v1-5
doesn't exist anymore. from diffusers import StableDiffusionPipeline
pipe = StableDiffusionPipeline.from_single_file("<url or path to single file checkpoint>", config="Lykon/DreamShaper")
from controlnet_aux import AnylineDetector
anyline = AnylineDetector.from_pretrained(
"TheMistoAI/MistoLine", filename="MTEED.pth", subfolder="Anyline"
).to("cuda")
source = Image.open("source.png")
result = anyline(source, detect_resolution=1280)
# pip install gradio_rerun gradio
import gradio as gr
from gradio_rerun import Rerun
gr.Interface(
inputs=gr.File(file_count="multiple", type="filepath"),
outputs=Rerun(height=900),
fn=lambda file_path: file_path,
).launch()
pip install gradio_huggingfacehub_search