Edit model card
YAML Metadata Warning: empty or missing yaml metadata in repo card (https://huggingface.co/docs/hub/model-cards#model-card-metadata)

RIDNet IMAGE DENOISOR

Sample Image

Model: https://github.com/lienghongky/RIDNet_Denoisor UI Tools: https://github.com/lienghongky/PicyShake

FILEPATH

"""

Project Structure:

  • main.py: The main entry point of the project.
  • utils.py: Contains utility functions used in the project.
  • datasets/: Directory containing the dataset for training and testing.
  • models/: Directory containing the trained models.
  • model_checkpoints: Save model every epoch

How to Run Train Test:

  1. Install the required dependencies by running pip install -r requirements.txt.
  2. Install the required dependencies by running pip install -r requirements.txt.
  3. Prepare the dataset by placing the training and testing data in the datasets/ directory. or run python preprocess.py, By runing this script the following directories will be created.
    # datasets directory structure
    # datasets
    # β”œβ”€β”€ train
    # β”‚   β”œβ”€β”€ groundtruth
    # β”‚   β”‚   β”œβ”€β”€ 0001.png
    # β”‚   β”‚   β”œβ”€β”€ 0002.png
    # β”‚   β”‚   β”œβ”€β”€ ...
    # β”‚   β”‚   └── 1000.png
    # β”‚   └── input
    # β”‚       β”œβ”€β”€ 0001.png
    # β”‚       β”œβ”€β”€ 0002.png
    # β”‚       β”œβ”€β”€ ...
    # β”‚       └── 1000.png
    # β”œβ”€β”€ test
    # β”‚   β”œβ”€β”€ groundtruth
    # β”‚   β”‚   β”œβ”€β”€ 0001.png
    # β”‚   β”‚   β”œβ”€β”€ 0002.png
    # β”‚   β”‚   β”œβ”€β”€ ...
    # β”‚   β”‚   └── 100.png
    # β”‚   └── input
    # β”‚       β”œβ”€β”€ 0001.png
    # β”‚       β”œβ”€β”€ 0002.png
    # β”‚       β”œβ”€β”€ ...
    # β”‚       └── 100.png
    # └── validation
    #     β”œβ”€β”€ groundtruth
    #     β”‚   β”œβ”€β”€ 0001.png
    #     β”‚   β”œβ”€β”€ 0002.png
    #     β”‚   β”œβ”€β”€ ...
    #     β”‚   └── 100.png
    #     └── input
    #         β”œβ”€β”€ 0001.png
    #         β”œβ”€β”€ 0002.png
    #         β”œβ”€β”€ ...
    #         └── 100.png
    ```
 
4. Run the train script by executing `python train.py`.
5. Run the test script by executing `python test.py`.

Downloads last month
13
Unable to determine this model’s pipeline type. Check the docs .