A simple example of coding and estimating the logistic function with the Gauss-Newton algorithm in JAVA

| コメント(0) | トラックバック(0)

At the beginning of this article I explicitly say the data set necessary to estimate the logistic function was generated from the below equations.
$$ y_i\ =\ f\left(x_i\right)+u_i $$
$$ f\left(x_i\right)\ =\ \frac{K}{1+\lambda K \exp\left(-rx_i\right)} $$
$$ u_i\ \sim\ N\left(0,\ \frac{K}{50}\right) $$

The logistic function was the solution acquired by solving the below differential equation with the separation of variables.
$$ \frac{df}{dx}\ =\ ry\left(1-\frac{y}{K}\right)$$

I tentatively interpret r as the growth rate and K as the carrying capacity. The above differential equation was different from the below form I initially thought. I read up on the forms, running my eyes through en.wikipedia. org, fr.wikipedia.org, and de.wikipedia.org. The above form was adopted in American and French Wikipedia and the below form was adopted in German Wikipedia as of October 5, 2010.
$$\frac{df}{dx}\ =\ ry\left(K-y\right)$$

After that I used the Gauss-Newton algorithm to estimate the logistic function. The algorithm is given below.
$$ \left(J_f^TJ_f\right)\Delta\ =\ J_f^Tr$$
$$J_f\ =\ \begin{pmatrix}\frac{\partial f_1}{\partial K} & \frac{\partial f_1}{\partial r} & \frac{\partial f_1}{\partial \lambda} \\ \vdots & \vdots & \vdots \\ \frac{\partial f_n}{\partial K} & \frac{\partial f_n}{\partial r} & \frac{\partial f_n}{\partial \lambda} \end{pmatrix}$$
$$\Delta =\ \begin{pmatrix}K^{\left(i+1\right)}-K^{\left(i\right)}\\r^{\left(i+1\right)}-r^{\left(i\right)}\\\lambda^{\left(i+1\right)}-\lambda^{\left(i\right)} \end{pmatrix}$$
$$r\ =\ -\begin{pmatrix}f\left(r^{i},K^{i},\lambda^{i},x_1\right)-y_1\\\vdots\\f\left(r^{i},K^{i},\lambda^{i},x_n\right)-y_n \end{pmatrix}$$

Then I used the LU decomposition of JfTJf and didn't accordingly find the inverse matrix of JfTJf to economize on computational resources. The example of the LU decomposition is given below.
$$J_f^TJ_f\ =\ LU$$

I also used the method of forward substitution to find b and the method of back substitution to find Δ.
$$Lb\ =\ J_f^Tr$$
$$U\Delta\ =\ b$$

The convergence of r, K, and λ to the theoretical value is given below.

      source code: GaussNewton.java

import java.awt.*;
import java.awt.event.*;
import java.text.DecimalFormat;
import java.applet.Applet;
import javax.swing.JLabel;
import javax.swing.JTextField;

public class GaussNewton extends Applet implements ActionListener{

// variable set
private static final long serialVersionUID = -1173026208646241820L;
public static double r = 1.0;
public static double k = 1.0;
public static double c = 1.0;
public static double[] s1 = new double[1000];
public static double[] s2 = new double[1000];
public static double[] s3 = new double[1000];
public static double[] se1 = new double[1000];
public static double[] k0 = new double[1000];
public static double[] r0 = new double[1000];
public static double[] c0 = new double[1000];
public static double[] dk = new double[1000];
public static double[] dr = new double[1000];
public static double[] dc = new double[1000];
public static double[] k3 = new double [3];
public static double[] k4 = new double [3];
public static double[] r3 = new double [3];
public static int[] xxxx = new int [1000];
public static int[] yyyy = new int [1000];
public static int[] xxxx1 = new int [1000];
public static int[] yyyy1 = new int [1000];
public static double[][] Matrix = new double[3][3];
public static double[][] MatrixL = new double[3][3];
public static double[][] MatrixU = new double[3][3];
public static double[][] MatrixU1 = new double[3][3];
JTextField yx = new JTextField("1.0");
JTextField yn = new JTextField("1.0");
JTextField yr = new JTextField("1.0");
JLabel label1 = new JLabel("The Example of The Gauss-Newton algorithm",JLabel.CENTER);
JLabel label2 = new JLabel("<html><body><font size=3>The Growth Rate (0<r≤10<sup>8</sup>)</font></body></html>",JLabel.CENTER);
JLabel label3 = new JLabel("<html><body><font size=3>The Carrying Capacity (0<K≤10<sup>8</sup>)</font></body></html>",JLabel.CENTER);
JLabel label4 = new JLabel("<html><body><font size=3>The Integration Constant (-10<sup>8</sup><λ≤10<sup>8</sup>)</font></body></html>", JLabel.CENTER);

public void init(){
label1.setPreferredSize(new Dimension(416,24));
label1.setFont(new Font("Serif",Font.BOLD,14));
add(label1);
label2.setPreferredSize(new Dimension(260,23));
label2.setFont(new Font("Serif",Font.BOLD,11));
add(label2);
yx.setPreferredSize(new Dimension(80,23));
add(yx);
label3.setPreferredSize(new Dimension(260,23));
label3.setFont(new Font("Serif",Font.BOLD,11));
add(label3);
yn.setPreferredSize(new Dimension(80,23));
add(yn);
label4.setPreferredSize(new Dimension(260,23));
label4.setFont(new Font("Serif",Font.BOLD,11));
add(label4);
yr.setPreferredSize(new Dimension(80,23));
add(yr);
yx.addActionListener(this);
yn.addActionListener(this);
yr.addActionListener(this);
}

public void actionPerformed(ActionEvent e){
if(e.getSource()==yx){
r=Double.valueOf(yx.getText()).doubleValue();
if(r <= 0 || r > Math.pow(10.0,8)){
r = 1.0;
}
}
if(e.getSource()==yn){
k = Double.valueOf(yn.getText()).doubleValue();
if(k <= 0 || k > Math.pow(10.0,8)){
k = 1.0;
}
}
if(e.getSource()==yr){c = Double.valueOf(yr.getText())
.doubleValue();
if(c < -Math.pow(10.0,8) || c > Math.pow(10.0,8)){c = 1.0;}
}
yx.setText(""+r);
yn.setText(""+k);
yr.setText(""+c);
repaint();
}

public void paint(Graphics g){

s1[0] = (Math.log(Math.abs(c))+Math.log(k)-Math.log(999))/r;
s1[999] = (Math.log(Math.abs(c))+Math.log(k)+Math.log(999))/r;
double aa=(s1[999]-s1[0])/999;
s2[0]=function(k,r,c,s1[0]);
s2[999]=function(k,r,c,s1[999]);
for(int i=1;i<999;i++){
s1[i]=s1[i-1]+aa;
}
for(int i=1;i<999;i++){
s2[i]=function(k,r,c,s1[i]);
}
for(int i=0;i<1000;i++){
se1[i]=normal.sampleNormal(0,k/50);
}
for(int i=0;i<1000;i++){
s3[i]=s2[i]+se1[i];
}
for(int i=0;i<3;i++){
for(int j=0;j<3;j++){
Matrix[i][j]=0;
}
}

k0[0]=k;
r0[0]=r;
c0[0]=c;

for(int h=0;h<999;h++){
for(int i=0;i<1000;i++){
dk[i] = (1+c0[h]*k0[h]*Math.exp(r0[h]*(-s1[i]))-k0[h]*c0[h]*Math.exp(r0[h]*(-s1[i])))/Math.pow(1+c0[h]*k0[h]*Math.exp(r0[h]*(-s1[i])),2);
dr[i] = -Math.pow(k0[h],2)*(-s1[i])*c0[h]*Math.exp(r0[h]*(-s1[i]))/Math.pow(1+c0[h]*k0[h]*Math.exp(r0[h]*(-s1[i])),2);
dc[i] = -Math.pow(k0[h],2)*Math.exp(r0[h]*(-s1[i]))/Math.pow(1+c0[h]*k0[h]*Math.exp(r0[h]*(-s1[i])),2);
Matrix[0][0]=Matrix[0][0]+Math.pow(dk[i],2);
Matrix[0][1]=Matrix[0][1]+dk[i]*dr[i];
Matrix[0][2]=Matrix[0][2]+dk[i]*dc[i];
Matrix[1][0]=Matrix[1][0]+dr[i]*dk[i];
Matrix[1][1]=Matrix[1][1]+Math.pow(dr[i],2);
Matrix[1][2]=Matrix[1][2]+dr[i]*dc[i];
Matrix[2][0]=Matrix[2][0]+dc[i]*dk[i];
Matrix[2][1]=Matrix[2][1]+dc[i]*dr[i];
Matrix[2][2]=Matrix[2][2]+Math.pow(dc[i],2);
}

MatrixU[0][0]=Matrix[0][0];
MatrixU[0][1]=Matrix[0][1];
MatrixU[0][2]=Matrix[0][2];
MatrixU[1][0]=0;
MatrixU[1][1]=Matrix[1][1]-Matrix[0][1]*Matrix[1][0]/Matrix[0][0];
MatrixU[1][2]=Matrix[1][2]-Matrix[0][2]*Matrix[1][0]/Matrix[0][0];
MatrixU[2][0]=0;
MatrixU[2][1]=Matrix[2][1]-Matrix[0][1]*Matrix[2][0]/Matrix[0][0];
MatrixU[2][2]=Matrix[2][2]-Matrix[0][2]*Matrix[2][0]/Matrix[0][0];
MatrixU1[2][0]=0;
MatrixU1[2][1]=0;
MatrixU1[2][2]=MatrixU[2][2]-MatrixU[1][2]*MatrixU[2][1]/MatrixU[1][1];
MatrixL[0][0]=1;
MatrixL[0][1]=0;
MatrixL[0][2]=0;
MatrixL[1][0]=Matrix[1][0]/Matrix[0][0];
MatrixL[1][1]=1;
MatrixL[1][2]=0;
MatrixL[2][0]=Matrix[2][0]/Matrix[0][0];
MatrixL[2][1]=MatrixU[2][1]/MatrixU[1][1];
MatrixL[2][2]=1;

r3[0]=0;
r3[1]=0;
r3[2]=0;

for(int i=0;i<1000;i++){
r3[0]=r3[0]-dk[i]*(k0[h]/(1+c0[h]*k0[h]*Math.exp(r0[h]*(-s1[i])))-s3[i]);
r3[1]=r3[1]-dr[i]*(k0[h]/(1+c0[h]*k0[h]*Math.exp(r0[h]*(-s1[i])))-s3[i]);
r3[2]=r3[2]-dc[i]*(k0[h]/(1+c0[h]*k0[h]*Math.exp(r0[h]*(-s1[i])))-s3[i]);
}

k4[0]=r3[0];
k4[1]=r3[1]-MatrixL[1][0]*k4[0];
k4[2]=r3[2]-MatrixL[2][0]*k4[0]-MatrixL[2][1]*k4[1];
k3[2]=k4[2]/MatrixU1[2][2];
k3[1]=(k4[1]-MatrixU[1][2]*k3[2])/MatrixU[1][1];
k3[0]=(k4[0]-MatrixU[0][1]*k3[1]-MatrixU[0][2]*k3[2])/MatrixU[0][0];
k0[h+1]=k0[h]+k3[0];
r0[h+1]=r0[h]+k3[1];
c0[h+1]=c0[h]+k3[2];
}

double minss3 = s3[0];
double maxss3 = s3[0];

if(c>=0){
for(int i=0;i<1000;i++){
if(s3[i]>maxss3){
maxss3 = s3[i];
}
}
for(int i=0;i<1000;i++){
if(s3[i]<minss3){
minss3 = s3[i];
}
}
}
if(c<0){
for(int i=525;i<1000;i++){
if(s3[i]>maxss3){
maxss3 = s3[i];
}
}
for(int i=0;i<475;i++){
if(s3[i]<minss3){
minss3 = s3[i];
}
}
}
for(int i=0;i<1000;i++){
xxxx[i] = (int)(i*351/999)+33;
yyyy[i] = 474-(int)((s3[i]-minss3)*351/(maxss3-minss3)*345/351+6);
}
for(int i=0;i<1000;i++){
xxxx1[i] = (int)(i*351/999)+33;
yyyy1[i] = 474-(int)((function(k0[999],r0[999],c0[999],s1[i])-minss3)*351/(maxss3-minss3)*345/351+6);
}

Graphics2D g2 = (Graphics2D)g;
GradientPaint gp1 = new GradientPaint(0, 0, new Color(154,181,228), 0,470,new Color(225,232,245), true);
g2.setPaint(gp1);
g2.fillRect(0,0,416,503);
super.paint(g);
GradientPaint gp2 = new GradientPaint(0, 33, new Color(225,232,245), 0,351,new Color(154,181,228), true);
g2.setPaint(gp2);
g2.fillRect(33,123,354,351);
GradientPaint gp4 = new GradientPaint(33, 227, new Color(192,88,77), 33,418,new Color(160,82,45), true);
g2.setPaint(gp4);
if(c>=0){
for (int i=0;i<1000;i++){
g2.fillOval(xxxx[i], yyyy[i], 4, 4);
}
}
if(c<0){
for (int i=0;i<475;i++){
g2.fillOval(xxxx[i], yyyy[i], 4, 4);
}
for (int i=525;i<1000;i++){
g2.fillOval(xxxx[i], yyyy[i], 4, 4);
}
}
GradientPaint gp3 = new GradientPaint(33, 227, new Color(79,129,189), 33,418,new Color(65,105,225), true);
g2.setPaint(gp3);
BasicStroke BoldLine = new BasicStroke(2.8f);
g2.setStroke(BoldLine);
if(c>=0){
for (int i=1;i<1000;i++){
g2.drawLine(xxxx1[i-1], yyyy1[i-1], xxxx1[i], yyyy1[i]);
}
}
if(c<0){
for (int i=1;i<475;i++){
g2.drawLine(xxxx1[i-1], yyyy1[i-1], xxxx1[i], yyyy1[i]);
}
for (int i=526;i<1000;i++){
g2.drawLine(xxxx1[i-1], yyyy1[i-1], xxxx1[i], yyyy1[i]);
}
}
DecimalFormat df0 = new DecimalFormat("0.00");
DecimalFormat df1 = new DecimalFormat("0.000");
DecimalFormat df2 = new DecimalFormat("0.000000");
for(int i=0;i<5;i++){
g2.setFont(new Font ("Serif",Font.BOLD,12));
g2.setColor (new Color(0,0,0));
String subx = df1.format(s1[0+249*i]);
g2.drawString(subx,14+88*i,488);
}
for(int i=1;i<5;i++){
g2.setFont(new Font ("Serif",Font.BOLD,12));
g2.setColor (new Color(0,0,0));
String suby = df0.format(maxss3/4*i);
g2.drawString(suby,3,484-87*i);
}
g2.setFont(new Font ("Serif",Font.BOLD,12));
g2.setColor (new Color(0,0,0));
g2.drawString("n = 1000",280,367);
g2.drawString("r",280,387);
g2.drawString("*",290,386);
g2.drawString(" =",293,387);
g2.drawString(df2.format(r0[999]),315,387);
g2.drawString("k",280,407);
g2.drawString("*",290,407);
g2.drawString(" =",293,407);
g2.drawString(df2.format(k0[999]),315,407);
g2.drawString("c",280,427);
g2.drawString("*",290,427);
g2.drawString(" =",293,427);
g2.drawString(df2.format(c0[999]),315,427);
g2.drawString("y",15,115);
g2.drawString("x",340,488);
}

public static double function(double k,double r,double c,
double x){
return k/(1+c*k*Math.exp(r*(-x)));
}
}

         source code: normal.java

import java.util.*;

public class normal {
private static Random rnd = new Random(Calendar.getInstance().getTimeInMillis()+Thread.currentThread().getId());
private static double u;
public static double sampleNormal(double e0, double e1) {
double e2;
e2=Math.pow(e1,(0.5));
u=e2*rnd.nextGaussian()+e0;
return u;
}
}

In conclusion the estimates of the parameters was susceptible to influences of the initial values of the parameters under the Gauss-Newton algorithm. r and K could converge on the theoretical values when the initial values of the parameters was set to half of the theoretical values but λ couldn't converge under the same condition where a number of times of iteration was between 1000 and 10000. The form of f(xi) was the normal logistic curve when the value of λ was positive and the different curve when the value of λ was negative.

Finally I am happy to assist you in coding and estimating the logistic function with the Gauss- Newton algorithm in JAVA.

トラックバック(0)

トラックバックURL: http://www.suzuki-labor.com/mt/mt-tb.cgi/3080

コメントする

My Photo
プロフィール!
2016・11・15 改訂
spacer01
rssspacer01foaf
spacer01
atom.xml
spacer01

この記事について

このページは、Suzuki TakashiがOctober 6, 2010 3:07 PMに書いた記事です。

ひとつ前の記事は「調査は続行、パート6。」です。

次の記事は「やはりアプレットは重かったか。」です。

最近のコンテンツはインデックスページで見られます。過去に書かれたものはアーカイブのページで見られます。

August 2023

Sun Mon Tue Wed Thu Fri Sat
    1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31    

Recent Posts

月別 アーカイブ

Workbooks

  • Basic Word List
  • Basic Word List 3rd Edition
  • Samuel C. Brownstein (著), Mitchel Weiner (著), Sharon Weiner Green (著)
  • SAT、GRE用の語彙が2000語以上収録され、2009年4月に4th Editionが出版される。又、Synonym Testが750題、Comprehensive Testが75題付記されている。2005年8月に国内向けの訳本として『最強の英語ボキャブラリー1700語』が出版され、Synonym Testが500題、Comprehensive Testが50題付記されている。
  • 1100 Words You Need to Know
  • 1100 Words You Need to Know 4th Edition
  • Murray Bromberg (著), Melvin Gordon (著)
  • SAT用の語彙が920語、熟語が184語収録され、2008年6月に5th Editionが出版される。Review, 24題で1週分の知識の確認を、Analogy Review, 15~20題で10週分の確認を、Final Review Test, 150題で46週分の確認を行うことになる。1周しただけで定着する程簡単なものではなく、繰り返しが重要なことは他のボキャビル本と同様。音声教材として Wordplay: 550+ Words You Need to Know 2nd Edition が出されており、The Rambling Panthersから始まる7つのドラマに新出語句を散りばめている。
  • Kaplan Word Power
  • Kaplan Word Power 3rd Edition
  • Kaplan (著)
  • SAT、GRE用の語彙が750語収録され、Plug Inの10~15題で1課分の知識の確認を行うことになる。収録語彙の水準は類書よりやや高めで、Plug Inでの設問の尋ね方もやや高度なものになっている。具体的には Fill in the blanks. や Match the word closest to the word that means the opposite. といった形式に苦労した。又、音声教材として Kaplan Word Power (CD) があり、CD2枚の構成になっている。
  • Word Smart
  • Word Smart for the GRE, 2nd Edition
  • Princeton Review (著)
  • GRE用の語彙が678語収録され、Quick Quizは65課あり、6~15題で1課分の知識の確認を、Final Exam Drillの570題で57課分の確認を行うことになる。類書にSAT用のWord Smart、Word Smart Ⅱ等があり、それらを含めて繰り返し訓練するとなると、結構時間が掛かるのは当然だろう。又、音声教材としてSAT用だが The Princeton Review Word Smart CD があり、All or Nothingから始まる14のドラマに228語が散りばめられている。
spacer01

Banner


Bookmark

  • Valid XHTML 1.0 Transitionalspacer01
  • Valid CSS!spacer01
OpenID 対応しています OpenIDについて