mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
d1a2c4cd8c
* Implements rudimentary api * Fixes blocking in API * Adds UI to monorepo > src/frontend/ * Updates frontend/README * Reverts conda env name to `ldm` * Fixes environment yamls * CORS config for testing * Fixes LogViewer position * API WID * Adds actions to image viewer * Increases vite chunkSizeWarningLimit to 1500 * Implements init image * Implements state persistence in localStorage * Improve progress data handling * Final build * Fixes mimetypes error on windows * Adds error logging * Fixes bugged img2img strength component * Adds sourcemaps to dev build * Fixes missing key * Changes connection status indicator to text * Adds ability to serve other hosts than localhost * Adding Flask API server * Removes source maps from config * Fixes prop transfer * Add missing packages and add CORS support * Adding API doc * Remove defaults from openapi doc * Adds basic error handling for server config query * Mostly working socket.io implementation. * Fixes bug preventing mask upload * Fixes bug with sampler name not written to metadata * UI Overhaul, numerous fixes Co-authored-by: Kyle Schouviller <kyle0654@hotmail.com> Co-authored-by: Lincoln Stein <lincoln.stein@gmail.com>
61 lines
1.6 KiB
YAML
61 lines
1.6 KiB
YAML
name: ldm
|
|
channels:
|
|
- pytorch
|
|
- conda-forge
|
|
dependencies:
|
|
- python==3.10.5
|
|
- pip==22.2.2
|
|
|
|
# pytorch left unpinned
|
|
- pytorch
|
|
- torchvision
|
|
|
|
# I suggest to keep the other deps sorted for convenience.
|
|
# To determine what the latest versions should be, run:
|
|
#
|
|
# ```shell
|
|
# sed -E 's/ldm/ldm-updated/;20,99s/- ([^=]+)==.+/- \1/' environment-mac.yaml > environment-mac-updated.yml
|
|
# CONDA_SUBDIR=osx-arm64 conda env create -f environment-mac-updated.yml && conda list -n ldm-updated | awk ' {print " - " $1 "==" $2;} '
|
|
# ```
|
|
- albumentations==1.2.1
|
|
- coloredlogs==15.0.1
|
|
- einops==0.4.1
|
|
- grpcio==1.46.4
|
|
- humanfriendly==10.0
|
|
- imageio==2.21.2
|
|
- imageio-ffmpeg==0.4.7
|
|
- imgaug==0.4.0
|
|
- kornia==0.6.7
|
|
- mpmath==1.2.1
|
|
- nomkl
|
|
- numpy==1.23.2
|
|
- omegaconf==2.1.1
|
|
- onnx==1.12.0
|
|
- onnxruntime==1.12.1
|
|
- pudb==2022.1
|
|
- pytorch-lightning==1.6.5
|
|
- scipy==1.9.1
|
|
- streamlit==1.12.2
|
|
- sympy==1.10.1
|
|
- tensorboard==2.9.0
|
|
- torchmetrics==0.9.3
|
|
- pip:
|
|
- flask==2.1.3
|
|
- flask_socketio==5.3.0
|
|
- flask_cors==3.0.10
|
|
- dependency_injector==4.40.0
|
|
- eventlet
|
|
- opencv-python==4.6.0
|
|
- protobuf==3.20.1
|
|
- realesrgan==0.2.5.0
|
|
- test-tube==0.7.5
|
|
- transformers==4.21.2
|
|
- torch-fidelity==0.3.0
|
|
- -e git+https://github.com/CompVis/taming-transformers.git@master#egg=taming-transformers
|
|
- -e git+https://github.com/openai/CLIP.git@main#egg=clip
|
|
- -e git+https://github.com/Birch-san/k-diffusion.git@mps#egg=k_diffusion
|
|
- -e git+https://github.com/lstein/GFPGAN@fix-dark-cast-images#egg=gfpgan
|
|
- -e .
|
|
variables:
|
|
PYTORCH_ENABLE_MPS_FALLBACK: 1
|