Adaptive Image Intelligence Architecture
Go to file
Falko Victor Habel 18249a852a
Run VectorLoader Script / Explore-Gitea-Actions (push) Successful in 20s Details
Gitea Actions For AIIA / Explore-Gitea-Actions (push) Successful in 39s Details
Merge pull request 'feat/smoe' (#34) from feat/smoe into main
Reviewed-on: #34
2025-03-28 15:48:40 +00:00
.gitea/workflows removed full vectorizing 2025-03-26 21:26:30 +01:00
src/aiia updated init to remove expeort model and move the smoe higher 2025-03-26 21:57:17 +01:00
tests added Expert to model to fix test 2025-03-28 16:10:22 +01:00
.coveragerc added pytest files 2025-03-15 23:42:19 +01:00
.gitignore Initial commit 2025-01-07 10:56:41 +00:00
LICENSE Initial commit 2025-01-07 10:56:41 +00:00
MANIFEST.in added first pip install version 0.1 2025-01-28 10:58:33 +01:00
README.md fixed setup with correct naming 2025-02-27 21:56:50 +01:00
example.py bugfix 2025-03-02 14:27:26 +01:00
pyproject.toml updated software version 2025-03-26 21:25:38 +01:00
pytest.ini added pytest files 2025-03-15 23:42:19 +01:00
requirements-dev.txt added missing mock installation 2025-03-16 13:09:03 +01:00
requirements.txt bugfix 2025-03-02 14:27:26 +01:00
setup.cfg updated software version 2025-03-26 21:25:38 +01:00
setup.py fixed model loading due to a bug 2025-02-24 14:13:10 +01:00

README.md

AIIA

Installation

Install via pip

To install the package directly from the Git repository using pip, run:

pip install git+https://gitea.fabelous.app/Machine-Learning/AIIA.git

This command will clone the repository and install the package along with its dependencies.

Additional Notes

  • Ensure you have git installed on your system.
  • Make sure pip is up-to-date. You can update it using:
    pip install --upgrade pip
    

That's it! You should now have the AIIA package installed and ready to use.

Example Usage:

from aiia.model import AIIABase
from aiia.model import AIIAConfig
from aiia.pretrain import Pretrainer

# Create your model
config = AIIAConfig(model_name="AIIA-Base-512x20k")
model = AIIABase(config)

# Initialize pretrainer with the model
pretrainer = Pretrainer(model, learning_rate=1e-4)

# List of dataset paths
dataset_paths = [
    "/path/to/dataset1.parquet",
    "/path/to/dataset2.parquet"
]

# Start training with multiple datasets
pretrainer.train(
    dataset_paths=dataset_paths,
    num_epochs=10,
    batch_size=2,
    sample_size=10000
)