test: run some tests on python 3.11 and 3.12

pull/454/head
Bryce 5 months ago
parent 601a112dc3
commit 6b7ebaec0b

@ -62,14 +62,14 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.10"]
python-version: ["3.10", "3.11", "3.12"]
os: ["ubuntu-latest"]
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
python-version: ${{ matrix.python-version }}
cache: pip
cache-dependency-path: requirements-dev.txt
- name: Install dependencies
@ -98,11 +98,15 @@ jobs:
make type-check
pkg-smoke-test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4.5.0
with:
python-version: "3.10"
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install wheel

@ -26,6 +26,8 @@
- allow specification of filename format
- chain multiple operations together imggen => videogen
- https://github.com/pallets/click/tree/main/examples/imagepipe
-
- https://huggingface.co/playgroundai/playground-v2-1024px-aesthetic
@ -37,8 +39,11 @@
#### Investigate
- use fancy noise https://github.com/Extraltodeus/noise_latent_perlinpinpin
- use latent upscaler https://github.com/city96/SD-Latent-Upscaler
- use latent interposer https://github.com/city96/SD-Latent-Interposer/tree/main
- https://github.com/madebyollin/taesd
- textdiffusers https://jingyechen.github.io/textdiffuser2/
- Scalecrafter https://yingqinghe.github.io/scalecrafter/
- Fast diffusion with LCM Lora https://huggingface.co/latent-consistency/lcm-lora-sdv1-5/tree/main
- 3d diffusion https://huggingface.co/stabilityai/stable-zero123
- magic animate
@ -185,4 +190,6 @@
- [ColoassalAI](https://github.com/hpcaitech/ColossalAI/tree/main/examples/images/diffusion) - almost got it working but it's not easy enough to install to merit inclusion in imaginairy. We should check back in on this.
- Xformers
- Deepspeed
-
## Decided against
- Scalecrafter https://yingqinghe.github.io/scalecrafter/ - doesn't look any better than img2img
Loading…
Cancel
Save