vsscunet


Namevsscunet JSON
Version 2.0.0 PyPI version JSON
download
home_pageNone
SummarySCUNet function for VapourSynth
upload_time2025-01-26 12:09:35
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
licenseNone
keywords pytorch scunet tensorrt vapoursynth
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # SCUNet
Practical Blind Denoising via Swin-Conv-UNet and Data Synthesis, based on https://github.com/cszn/SCUNet.


## Dependencies
- [PyTorch](https://pytorch.org/get-started/) 2.6.0.dev or later
- [VapourSynth](http://www.vapoursynth.com/) R66 or later

`trt` requires additional packages:
- [TensorRT](https://developer.nvidia.com/tensorrt) 10.4.0 or later
- [Torch-TensorRT](https://pytorch.org/TensorRT/) 2.6.0.dev or later

To install the latest nightly build of PyTorch and Torch-TensorRT, run:
```
pip install -U packaging setuptools wheel
pip install --pre -U torch torchvision --index-url https://download.pytorch.org/whl/nightly/cu126
pip install --no-deps --pre -U torch_tensorrt --index-url https://download.pytorch.org/whl/nightly/cu126
pip install -U tensorrt --extra-index-url https://pypi.nvidia.com
```


## Installation
```
pip install -U vsscunet
```

If you want to download all models at once, run `python -m vsscunet`. If you prefer to only download the model you
specified at first run, set `auto_download=True` in `scunet()`.


## Usage
```python
from vsscunet import scunet

ret = scunet(clip)
```

See `__init__.py` for the description of the parameters.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "vsscunet",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": "PyTorch, SCUNet, TensorRT, VapourSynth",
    "author": null,
    "author_email": "HolyWu <holywu@gmail.com>",
    "download_url": null,
    "platform": null,
    "description": "# SCUNet\nPractical Blind Denoising via Swin-Conv-UNet and Data Synthesis, based on https://github.com/cszn/SCUNet.\n\n\n## Dependencies\n- [PyTorch](https://pytorch.org/get-started/) 2.6.0.dev or later\n- [VapourSynth](http://www.vapoursynth.com/) R66 or later\n\n`trt` requires additional packages:\n- [TensorRT](https://developer.nvidia.com/tensorrt) 10.4.0 or later\n- [Torch-TensorRT](https://pytorch.org/TensorRT/) 2.6.0.dev or later\n\nTo install the latest nightly build of PyTorch and Torch-TensorRT, run:\n```\npip install -U packaging setuptools wheel\npip install --pre -U torch torchvision --index-url https://download.pytorch.org/whl/nightly/cu126\npip install --no-deps --pre -U torch_tensorrt --index-url https://download.pytorch.org/whl/nightly/cu126\npip install -U tensorrt --extra-index-url https://pypi.nvidia.com\n```\n\n\n## Installation\n```\npip install -U vsscunet\n```\n\nIf you want to download all models at once, run `python -m vsscunet`. If you prefer to only download the model you\nspecified at first run, set `auto_download=True` in `scunet()`.\n\n\n## Usage\n```python\nfrom vsscunet import scunet\n\nret = scunet(clip)\n```\n\nSee `__init__.py` for the description of the parameters.\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "SCUNet function for VapourSynth",
    "version": "2.0.0",
    "project_urls": {
        "Homepage": "https://github.com/HolyWu/vs-scunet",
        "Issues": "https://github.com/HolyWu/vs-scunet/issues"
    },
    "split_keywords": [
        "pytorch",
        " scunet",
        " tensorrt",
        " vapoursynth"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d08b87c4b80e3a6ec874253e1bdb85aabcdf27838b4a8771d0a64ac357f1fbae",
                "md5": "1c6909a3abd29e455b8bbf8cc6c3d68f",
                "sha256": "d364dcd68e205f903fd376edc44a8f908244282f3aaa731e45cee5cb3eeff2df"
            },
            "downloads": -1,
            "filename": "vsscunet-2.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "1c6909a3abd29e455b8bbf8cc6c3d68f",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 14617,
            "upload_time": "2025-01-26T12:09:35",
            "upload_time_iso_8601": "2025-01-26T12:09:35.335396Z",
            "url": "https://files.pythonhosted.org/packages/d0/8b/87c4b80e3a6ec874253e1bdb85aabcdf27838b4a8771d0a64ac357f1fbae/vsscunet-2.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-01-26 12:09:35",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "HolyWu",
    "github_project": "vs-scunet",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "vsscunet"
}
        
Elapsed time: 0.41843s