PIXNET Logo登入

Music@life

跳到主文

Music@life
生而知之者,上也。
The highest are those who are born wise.
學而知之者,次也。
Next are those who become wise by learning.
困而學之,又其次也。
After them come those who have to toil painfully in order to acquire learning.

部落格全站分類:數位生活

  • 相簿
  • 部落格
  • 留言
  • 名片
  • 3月 31 週二 201519:25
  • 應用擇優策略粒子群結合區域搜索

Slide01 

 
(繼續閱讀...)
文章標籤

kevinjc 發表在 痞客邦 留言(0) 人氣(16)

  • 個人分類:Technology
▲top
  • 3月 31 週二 201519:00
  • 應用Semantic Web優化智慧分析平台,深耕在地網路娛樂內容產業

Slide03.jpg Case Study
http://kevinjc.pixnet.net/album/photo/296640567
 
(繼續閱讀...)
文章標籤

kevinjc 發表在 痞客邦 留言(0) 人氣(12)

  • 個人分類:Technology
▲top
  • 3月 31 週四 201111:25
  • Stigmergy!如白蟻建築般的權力構造

轉載:Stigmergy!如白蟻建築般的權力構造
 
 
(繼續閱讀...)
文章標籤

kevinjc 發表在 痞客邦 留言(2) 人氣(146)

  • 個人分類:Technology
▲top
  • 12月 09 週四 201017:59
  • [Java 範例][KMeans]以[iris data]

KMeans.java
/**************************************************************************************************************************
(c) Copyright: Kevin Chen , No.79912001, 2010~2012. All rights reserved.
Author:         : Kevin Chen  
Desc            :
Change History  : -
Class used in   :
Change History  :   Level              Changed By              Date                        Change description
                   -------------------------------------------------------------------------------------------------------
                    (Initial)          Kevin Chen             20100112                  (Initial)
'**************************************************************************************************************************/
package e9912001;
public class KMeans {
    double[][] m_TestData;
    int m_NumOfClusters;
    int m_TestCases;
    int m_TestVariables;
    double[][] m_Centroid;
    int[][] m_aryResultClusters;
    int  m_MAXLOOP = 100;
    public int getM_NumOfClusters() {
        return m_NumOfClusters;
    }
    public void setM_NumOfClusters(int mNumOfClusters) {
        m_NumOfClusters = mNumOfClusters;
        m_ClusterNo = new int[m_NumOfClusters];
    }
    public double[][] getM_TestData() {
        return m_TestData;
    }
    public int getM_TestCases() {
        return m_TestCases;
    }
    public int getM_TestVariables() {
        return m_TestVariables;
    }
    public int[] getM_ClusterNo() {
        return m_ClusterNo;
    }
    public double[][] getM_Centroid() {
        return m_Centroid;
    }
    int[] m_ClusterNo ;
    
    public KMeans(double[][] input_data){
        m_TestData = input_data;
        m_TestCases = m_TestData.length;
        m_TestVariables = m_TestData[0].length;
        //m_NumOfGroups = (int)Math.Sqrt(m_TestCases) + 1;
        m_NumOfClusters = 3;
        m_ClusterNo = new int[m_NumOfClusters];
    }
    public double[] getGrandCentroid(){
        double[] ret = new double[this.m_TestVariables];
        int sum;
        for(int i=0; i < this.m_TestData.length;i++){
            sum =0;
            for(int j=0; j < this.m_TestData[i].length;j++){
                sum += this.m_TestData[i][j];
            }
            ret[i] = sum / this.m_TestCases;            
        }        
        return ret;
    }
(繼續閱讀...)
文章標籤

kevinjc 發表在 痞客邦 留言(1) 人氣(930)

  • 個人分類:Technology
▲top
  • 12月 06 週一 201018:03
  • [筆記]Exploit vs Explore

Exploit vs Explore
Exploit  翻譯成開採比較能理解,開採有在現有地區(地點、市場、方案)挖掘(找尋),往深度進行(z軸的搜索)。
Explore 翻譯成探勘,有開發新地區、市場,新方案的意思,往廣度進行(x,y軸的搜索)。
(繼續閱讀...)
文章標籤

kevinjc 發表在 痞客邦 留言(0) 人氣(884)

  • 個人分類:Technology
▲top
  • 11月 14 週日 201018:58
  • [筆記] association (聯結, 結合), correlation (關連) analysis

 Association 與 Correlation analysis 差異在哪?
查網路有關詞的解釋
association =>
聯結:結合在一起
(繼續閱讀...)
文章標籤

kevinjc 發表在 痞客邦 留言(0) 人氣(1,426)

  • 個人分類:Technology
▲top
  • 10月 23 週六 201022:56
  • Single-linkage clustering [單一鏈結分群法]

N \times NAlgorithm
The following algorithm is an agglomerative scheme that erases rows and columns in a proximity matrix as old clusters are merged into new ones. The proximity matrix D contains all distances d(i,j). The clusterings are assigned sequence numbers 0,1,......, (n − 1) and L(k) is the level of the kth clustering. A cluster with sequence number m is denoted (m) and the proximity between clusters (r) and (s) is denoted d[(r),(s)].
(繼續閱讀...)
文章標籤

kevinjc 發表在 痞客邦 留言(0) 人氣(317)

  • 個人分類:Technology
▲top
  • 10月 14 週四 201015:58
  • Operations management question

Additional DetailsFormulate and then solve a linear programming model of this problem, to determine how many
containers of each product to produce tomorrow to maximize profits.
The company makes four
juice products using orange, grapefruit, and pineapple juice.
Product Retail Price Per Quart
Orange juice $1.00
Grapefruit juice .90
Pineapple juice .80
All-in-One 1.10
The All-in-One juice has equal parts of orange, grapefruit, and pineapple juice. Each product
is produced in a one- quart size. On hand are 400 gallons of orange juice,300 gallons of grapefruit
juice, and 200 gallons of pineapple juice.
The cost per gallon is $2.00 for orange juice,
$1.60 for grapefruit juice,
and 1.40 for pineapple juice.
In addition, the manager wants grapefruit juice to be used for no more than 30 percent of
the number of containers produced( grapefruit <= 0.3(orange +grapefruit + pineapple + all-in-one). She wants the ratio of the number of containers of orange
juice to the number of containers of pineapple juice to be at least 7 to 5.( orange:pineapple >= 7:5)
1) find how many containers of each product to produce tomorrow to mazimize profits.
2) Find any Surplus and/or Slack.
I've been looking at this for days.. and I can't seem to grasp the idea and work it out.
(繼續閱讀...)
文章標籤

kevinjc 發表在 痞客邦 留言(0) 人氣(270)

  • 個人分類:Technology
▲top
  • 10月 01 週五 201015:39
  • Validate IP address/URL, email address with Regular Expression in Python

email regex pattern
emails = re.findall('[a-zA-Z0-9+_\-\.]+@[0-9a-zA-Z][.-0-9a-zA-Z]*.[a-zA-Z]+', page)
 
(繼續閱讀...)
文章標籤

kevinjc 發表在 痞客邦 留言(0) 人氣(232)

  • 個人分類:Technology
▲top
  • 8月 16 週一 201015:45
  • How to split window in Eclipse [如何在Eclipse分裂編輯視窗]

用看的比用說的容易理解



(繼續閱讀...)
文章標籤

kevinjc 發表在 痞客邦 留言(2) 人氣(967)

  • 個人分類:Technology
▲top
12...5»

BloggerAds

Promo BloggerAds

Top Posts

  • (1,504)Oracle 10g XE 限制條件
  • (322)Call .NET DLL/Object from ASP, VBSCRIPT, VBS or VB6
  • (12,919)心理學研究眼睛盯人透露不友善的行為
  • (983)情境感知運算系統 Contextual Computer System
  • (56)火影508 情報
  • (1,426)[筆記] association (聯結, 結合), correlation (關連) analysis
  • (884)[筆記]Exploit vs Explore
  • (80)Rapture- Nadia Ali

Categories [目錄]

  • Life Style (28)
  • Life Style (1)
  • News (159)
  • Commentary (4)
  • Technology (47)
  • psychology (10)
  • Arts (11)
  • 未分類文章 (1)

Recent Posts [最新文章]

  • 應用擇優策略粒子群結合區域搜索
  • 應用Semantic Web優化智慧分析平台,深耕在地網路娛樂內容產業
  • [情報]火影忍者 607 - 630話
  • 火影 541 情報
  • 火影 540 情報
  • 火影 538 情報
  • 火影 537 情报
  • 火影536 情报
  • 火影 535 情報
  • 火影 534 情報

Archives [封存]

My Search [我的搜尋]

Visitors [最近訪客]

參觀人氣

  • 本日人氣:
  • 累積人氣:

Look.urs.tw [博客觀察]

Privacy [版權宣告]

Creative Common License [創作版權]

Musicing [放送中]