Compare commits
3 Commits
25f4225baf
...
68a27f00c1
Author | SHA1 | Date |
---|---|---|
|
68a27f00c1 | |
|
399a7c0f69 | |
|
5c668e3c7b |
|
@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "aiunn"
|
name = "aiunn"
|
||||||
version = "0.1.1"
|
version = "0.1.2"
|
||||||
description = "Finetuner for image upscaling using AIIA"
|
description = "Finetuner for image upscaling using AIIA"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.10"
|
requires-python = ">=3.10"
|
||||||
|
|
|
@ -2,4 +2,5 @@ torch
|
||||||
aiia
|
aiia
|
||||||
pillow
|
pillow
|
||||||
torchvision
|
torchvision
|
||||||
sklearn
|
sklearn
|
||||||
|
https://gitea.fabelous.app/Machine-Learning/AIIA.git
|
2
setup.py
2
setup.py
|
@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="aiunn",
|
name="aiunn",
|
||||||
version="0.1.1",
|
version="0.1.2",
|
||||||
packages=find_packages(where="src"),
|
packages=find_packages(where="src"),
|
||||||
package_dir={"": "src"},
|
package_dir={"": "src"},
|
||||||
install_requires=[
|
install_requires=[
|
||||||
|
|
|
@ -3,4 +3,4 @@ from .upsampler.aiunn import aiuNN
|
||||||
from .upsampler.config import aiuNNConfig
|
from .upsampler.config import aiuNNConfig
|
||||||
from .inference.inference import aiuNNInference
|
from .inference.inference import aiuNNInference
|
||||||
|
|
||||||
__version__ = "0.1.1"
|
__version__ = "0.1.2"
|
|
@ -2,7 +2,8 @@ import os
|
||||||
import torch
|
import torch
|
||||||
import torch.nn as nn
|
import torch.nn as nn
|
||||||
import warnings
|
import warnings
|
||||||
from aiia import AIIA, AIIAConfig, AIIABase
|
from aiia import AIIAConfig, AIIABase
|
||||||
|
from aiia.model.Model import AIIA
|
||||||
from .config import aiuNNConfig
|
from .config import aiuNNConfig
|
||||||
import warnings
|
import warnings
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue