Skip to content

Instantly share code, notes, and snippets.

View ahmadali-jamali's full-sized avatar
:octocat:
Focusing

Ahmadali Jamali ahmadali-jamali

:octocat:
Focusing
View GitHub Profile
@ahmadali-jamali
ahmadali-jamali / Tornoment Selection in GA
Last active February 16, 2022 10:20
Solution the Equation by Genetic Algorithm with Tornoment Selection
#introduction:
'''
Solve the Equation with tornoment selection methods in genetic algorithm
The Equation : x1 + x2 + x3 + x4 + ..... xn = b
Ahmadali Jamali student of algorithm and complexity 39912330152004
01.23.2022 Teheran
@ahmadali-jamali
ahmadali-jamali / Genetic VS Back propagation in NeuralNetwork
Last active February 16, 2022 10:19
Comparing CPU and performance Genetic NN with Back propagation neural network
#........................Genetic Algorithm VS BackProPagation..........................#
#..................................Introduction........................................#
'''
Genetic Algorithm VS Backpropagation
Comparing GA with SBP in Artificial Neural Network in terms of CPU Time
@ahmadali-jamali
ahmadali-jamali / image convolution kernel and transformation
Last active February 17, 2022 11:16
image convolution with kernel without using any library
#...............DCNN...................#
#...............inrto..................#
'''
image convolution
with kernel and
transformation without
using any library
@ahmadali-jamali
ahmadali-jamali / CNN
Last active February 18, 2022 17:54
Convolution neural network step by step in function and filters
#...............DCNN...................#
#...............inrto..................#
'''
image processing project
Convolution neuralnetwork
convolution_pooling_dropOut_deconvolution_unpoolin
Ahmadali Jamali
02.15.2022
@ahmadali-jamali
ahmadali-jamali / Segmentation image with SOM neural network
Created February 26, 2022 14:45
image processing project Segmentation image with SOM neural network denoised by wavelet translation and test the quality by ssim and topolygy, psnr quantization error all of the project has beed made without special library
#................SOM...................#
#...............inrto..................#
'''
image processing project
Segmentation
image with SOM neural network
denoised by wavelet translation
@ahmadali-jamali
ahmadali-jamali / Water color paint
Created September 19, 2022 16:57
Image convert to water color paint by python code
#---------------------------
#library
import numpy as np
import pandas as pd
from numpy import argmax
import matplotlib.pyplot as plt
import math
import statistics