Compare commits

...

7 Commits

Author SHA1 Message Date
Falko Victor Habel af8565bc68 Merge pull request 'feat/docs' (#9) from feat/docs into develop
Gitea Actions For AIIA / Explore-Gitea-Actions (push) Successful in 39s Details
Reviewed-on: #9
2025-04-02 12:19:56 +00:00
Falko Victor Habel 0d38999072 setup.py aktualisiert
Gitea Actions For AIIA / Explore-Gitea-Actions (push) Successful in 40s Details
2025-04-02 12:16:16 +00:00
Falko Victor Habel 0545c10092 pyproject.toml aktualisiert
Gitea Actions For AIIA / Explore-Gitea-Actions (push) Failing after 29s Details
2025-04-02 12:15:13 +00:00
Falko Victor Habel 925ae1b189 requirements.txt aktualisiert
Gitea Actions For AIIA / Explore-Gitea-Actions (push) Failing after 46s Details
2025-03-30 14:54:42 +00:00
Falko Victor Habel 3feccc525e correctly stateted aiia in requirements
Gitea Actions For AIIA / Explore-Gitea-Actions (push) Failing after 27s Details
2025-03-28 16:49:34 +01:00
Falko Victor Habel 942f4f5a24 moved workflows to correct folder
Gitea Actions For AIIA / Explore-Gitea-Actions (push) Failing after 22s Details
2025-03-28 16:10:59 +01:00
Falko Victor Habel 8307748cab added tests 2025-03-28 16:09:14 +01:00
6 changed files with 89 additions and 12 deletions

View File

@ -0,0 +1,37 @@
name: Run VectorLoader Script
on:
push:
branches:
- main
jobs:
Explore-Gitea-Actions:
runs-on: ubuntu-latest
container: catthehacker/ubuntu:act-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.11.7'
- name: Clone additional repository
run: |
git config --global credential.helper cache
git clone https://fabel:${{ secrets.CICD }}@gitea.fabelous.app/fabel/VectorLoader.git
- name: Install dependencies
run: |
cd VectorLoader
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run vectorizing
env:
VECTORDB_TOKEN: ${{ secrets.VECTORDB_TOKEN }}
run: |
cd VectorLoader
python -m src.run --full

View File

@ -0,0 +1,37 @@
name: Gitea Actions For AIIA
run-name: ${{ gitea.actor }} is testing out Gitea Actions 🚀
on: [push]
jobs:
Explore-Gitea-Actions:
runs-on: ubuntu-latest
container: catthehacker/ubuntu:act-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11.7'
- name: Cache pip and model
uses: actions/cache@v3
with:
path: |
~/.cache/pip
./fabel
key: ${{ runner.os }}-pip-model-${{ hashFiles('requirements.txt', 'requirements-dev.txt') }}
restore-keys: |
${{ runner.os }}-pip-model-
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-dev.txt
pip install -e .
- name: Run tests
run: |
pytest tests/

View File

@ -1,17 +1,15 @@
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aiunn"
version = "0.1.2"
version = "0.1.1"
description = "Finetuner for image upscaling using AIIA"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
authors = [
{name = "Falko Habel", email = "falko.habel@gmx.de"},
{name = "Falko Habel", email = "falko.habel@gmx.de"},
]
[project.urls]
"Homepage" = "https://gitea.fabelous.app/Machine-Learning/aiuNN"
"Homepage"="https://gitea.fabelous.app/Machine-Learning/aiuNN"

View File

@ -2,5 +2,5 @@ torch
aiia
pillow
torchvision
sklearn
https://gitea.fabelous.app/Machine-Learning/AIIA.git
scikit-learn
git+https://gitea.fabelous.app/Machine-Learning/AIIA.git

View File

@ -6,9 +6,14 @@ setup(
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=[
line.strip()
for line in open("requirements.txt")
if line.strip() and not line.startswith("#")
"torch",
"aiia",
"pillow",
"torchvision",
"scikit-learn",
],
dependency_links=[
"git+https://gitea.fabelous.app/Machine-Learning/AIIA.git#egg=aiia"
],
python_requires=">=3.10",
)

View File

@ -149,8 +149,8 @@ if __name__ == "__main__":
upsampler = aiuNN(base_model, config=ai_config)
# Save the model (both configuration and weights).
upsampler.save("hehe")
upsampler.save("aiunn")
# Now load using the overridden load method; this will load the complete model.
upsampler_loaded = aiuNN.load("hehe", precision="bf16")
upsampler_loaded = aiuNN.load("aiunn", precision="bf16")
print("Updated configuration:", upsampler_loaded.config.__dict__)