AnimeBhuh / requirements.txt
Bhshsvsvsv's picture
Upload requirements.txt
68037b1 verified
raw
history blame contribute delete
976 Bytes
fastapi
uvicorn[standard] # Includes request parsing utils
python-multipart # For potential future form data handling
Pillow # For image handling
# --- AnimeGAN Dependencies ---
# You MUST find the correct libraries for the specific AnimeGAN model you use.
# This is an EXAMPLE - check the model card on Hugging Face Hub!
torch # Or tensorflow, depending on the model
torchvision # Often needed with torch models
numpy
# Maybe specific model libraries like:
# transformers # If the model is integrated via transformers
# diffusers # If it's a diffusion model variant
# Or potentially a direct clone/install of an AnimeGAN repo if necessary
# Example (if using a specific known package):
# animegan2-pytorch # <--- This package might not exist, find the actual one!
# A common AnimeGAN implementation source might be:
# git+https://github.com/TachibanaYoshino/AnimeGANv2 # Example, might need adjustments
# For Inference with Hugging Face Hub models:
requests
huggingface_hub