vsdpir


Namevsdpir JSON
Version 4.1.0 PyPI version JSON
download
home_pageNone
SummaryDPIR function for VapourSynth
upload_time2024-05-19 06:32:35
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
licenseNone
keywords dpir pytorch tensorrt vapoursynth
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # DPIR
Plug-and-Play Image Restoration with Deep Denoiser Prior, based on https://github.com/cszn/DPIR.


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

`trt` requires additional Python packages:
- [TensorRT](https://developer.nvidia.com/tensorrt/) 10.0.1
- [Torch-TensorRT](https://pytorch.org/TensorRT/) 2.4.0.dev

To install TensorRT, run `pip install tensorrt==10.0.1 tensorrt-cu12_bindings==10.0.1 tensorrt-cu12_libs==10.0.1 --extra-index-url https://pypi.nvidia.com`

To install Torch-TensorRT, Windows users can pip install the whl file on [Releases](https://github.com/HolyWu/vs-dpir/releases). Linux users can run `pip install --pre torch-tensorrt --index-url https://download.pytorch.org/whl/nightly/cu121` (requires PyTorch nightly build).


## Installation
```
pip install -U vsdpir
python -m vsdpir
```


## Usage
```python
from vsdpir import dpir

ret = dpir(clip)
```

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

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "vsdpir",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": "DPIR, PyTorch, TensorRT, VapourSynth",
    "author": null,
    "author_email": "HolyWu <holywu@gmail.com>",
    "download_url": null,
    "platform": null,
    "description": "# DPIR\nPlug-and-Play Image Restoration with Deep Denoiser Prior, based on https://github.com/cszn/DPIR.\n\n\n## Dependencies\n- [PyTorch](https://pytorch.org/get-started/) 2.4.0.dev or later\n- [VapourSynth](http://www.vapoursynth.com/) R66 or later\n\n`trt` requires additional Python packages:\n- [TensorRT](https://developer.nvidia.com/tensorrt/) 10.0.1\n- [Torch-TensorRT](https://pytorch.org/TensorRT/) 2.4.0.dev\n\nTo install TensorRT, run `pip install tensorrt==10.0.1 tensorrt-cu12_bindings==10.0.1 tensorrt-cu12_libs==10.0.1 --extra-index-url https://pypi.nvidia.com`\n\nTo install Torch-TensorRT, Windows users can pip install the whl file on [Releases](https://github.com/HolyWu/vs-dpir/releases). Linux users can run `pip install --pre torch-tensorrt --index-url https://download.pytorch.org/whl/nightly/cu121` (requires PyTorch nightly build).\n\n\n## Installation\n```\npip install -U vsdpir\npython -m vsdpir\n```\n\n\n## Usage\n```python\nfrom vsdpir import dpir\n\nret = dpir(clip)\n```\n\nSee `__init__.py` for the description of the parameters.\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "DPIR function for VapourSynth",
    "version": "4.1.0",
    "project_urls": {
        "Homepage": "https://github.com/HolyWu/vs-dpir",
        "Issues": "https://github.com/HolyWu/vs-dpir/issues"
    },
    "split_keywords": [
        "dpir",
        " pytorch",
        " tensorrt",
        " vapoursynth"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c739a510c4a7a4554473b6b373c9be950938b27ad165cce2fd1e57e15fb23095",
                "md5": "4b3c30227de61032a399532bd0392f11",
                "sha256": "ae29587aef4f060a84421f514a978a93ebbd4874e801752178135679f5d921a3"
            },
            "downloads": -1,
            "filename": "vsdpir-4.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "4b3c30227de61032a399532bd0392f11",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 13309,
            "upload_time": "2024-05-19T06:32:35",
            "upload_time_iso_8601": "2024-05-19T06:32:35.279045Z",
            "url": "https://files.pythonhosted.org/packages/c7/39/a510c4a7a4554473b6b373c9be950938b27ad165cce2fd1e57e15fb23095/vsdpir-4.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-19 06:32:35",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "HolyWu",
    "github_project": "vs-dpir",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "vsdpir"
}
        
Elapsed time: 1.43955s