Syntesis images noise detection using CNN approach

Jérôme BUISINE 0d651ec858 Create generate dataset 3D il y a 4 ans
modules 6415e68e47 Update of data augmentation il y a 4 ans
.gitignore 7b3768132f Add of new reconstruction metric il y a 4 ans
LICENSE f80a4942e7 Creation of dataset file script added il y a 4 ans
README.md 0d651ec858 Create generate dataset 3D il y a 4 ans
generate_dataset.py 0d651ec858 Create generate dataset 3D il y a 4 ans
generate_dataset_3D.py 0d651ec858 Create generate dataset 3D il y a 4 ans
generate_reconstructed_data.py 6415e68e47 Update of data augmentation il y a 4 ans
predict_noisy_image_svd.py 0d651ec858 Create generate dataset 3D il y a 4 ans
predict_seuil_expe_maxwell_curve.py 0d651ec858 Create generate dataset 3D il y a 4 ans
requirements.txt 153ef98eae Update code with use of IPFML package il y a 5 ans
run.sh 0d651ec858 Create generate dataset 3D il y a 4 ans
run_maxwell_simulation_custom.sh 0d651ec858 Create generate dataset 3D il y a 4 ans
run_test.sh 0d651ec858 Create generate dataset 3D il y a 4 ans
train_model.py 0d651ec858 Create generate dataset 3D il y a 4 ans
transformation_functions.py 7b3768132f Add of new reconstruction metric il y a 4 ans

README.md

Noise detection project

Requirements

pip install -r requirements.txt

How to use

Generate reconstructed data from specific method of reconstruction (run only once time or clean data folder before):

python generate_reconstructed_data.py -h

Generate custom dataset from one reconstructed method or multiples (implemented later)

python generate_dataset.py -h

Reconstruction parameter (--params)

List of expected parameter by reconstruction method:

  • svd_reconstruction: Singular Values Decomposition
    • Param definition: interval data used for reconstruction (begin, end)
    • Example: "100, 200"
  • ipca_reconstruction: Iterative Principal Component Analysis
    • Param definition: number of components used for compression and batch size
    • Example: "50, 32"
  • fast_ica_reconstruction: Fast Iterative Component Analysis
    • Param definition: number of components used for compression
    • Example: "50"

Modules

This project contains modules:

  • modules/utils/config.py: Store all configuration information about the project and dataset information
  • modules/utils/data.py: Usefull methods used for dataset

All these modules will be enhanced during development of the project

License

MIT