유전자 알고리즘의 시간 복잡도를 계산할 수 있습니까?유전자 알고리즘의 시간 복잡도
These are my parameter settings:
Population size (P) = 100
# of Generations (G) = 1000
Crossover probability (Pc) = 0.5 (fixed)
Mutation probability (Pm) = 0.01 (fixed)
감사
업데이트:
problem: document clustering
Chromosome: 50 genes/chrom, allele value = integer(document index)
crossover: one point crossover (crossover point is randomly selected)
mutation: randomly change one gene
termination criteria: 1000 generation
피트니스 : Davies–Bouldin index
이렇게 작성된 것처럼 대답하기에는 너무 모호합니다. 피트니스를 어떻게 평가합니까? 어떻게 유전자를 결합하고 있습니까? 종결 조건은 무엇입니까? – templatetypedef
@templatetypedef 종료 조건은 1000 세대입니다. 믿을 수 있습니다. –
cs stackexchange에서이 주제에 대한 논문 링크가 있습니다 : https://cs.stackexchange.com/questions/7793/time-complexity-of-genetic-algorithms – bmaddy