UMR CNRS 7253

Outils du site


fr:publis

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentesRévision précédente
Prochaine révision
Révision précédente
fr:publis [2010/06/10 11:47] ggovaertfr:publis [2014/06/04 18:34] (Version actuelle) – modification externe 127.0.0.1
Ligne 1: Ligne 1:
-<html>  +<function=heudiabib?lang=fr>
-  <head><title>Publications</title>  +
-    <link rel="stylesheet" type="text/css" href="Styles/screen.css">      +
-    <script type="text/javascript"> +
-      <!-- +
-   // QuickSearch script for tables +
-   // +
-   // Copyright (c) 2006, Mark Schenk +
-   // +
-   // Permission to use, copy, modify, and distribute this software for any +
-   // purpose with or without fee is hereby granted, provided that the above +
-   // copyright notice and this permission notice appear in all copies. +
-   // +
-    +
-   // Some features: +
-   // + combination of CSS/JavaScript degrades nicely +
-   // + easy to set number of columns to search +
-   // + allows RegExp searches +
-   //   e.g. to search for entries between 1980 and 1989, type:  198[0-9] +
-   //   e.g. for any entry ending with 'symmetry', type:  symmetry$ +
-   //   e.g. for all reftypes that are books: ^book$, or ^article$ +
-   // + easy toggling of Abstract/Review/BibTeX +
-    +
-   if (window.opera) {  +
-   document.addEventListener("load",initSearch,false) }  +
-   else if (window.addEventListener) { +
-   window.addEventListener("load",initSearch,false) } +
-   else if (window.attachEvent) { +
-   window.attachEvent("onload", initSearch);+
-    +
-   function initSearch() { +
-   // basic object detection +
-   if(!document.getElementById || !document.getElementsByTagName) { return; } +
-    +
-   // check if QuickSearch table AND search area is present  +
-   if (!document.getElementById('qstable')||!document.getElementById('qs')) { return; } +
-    +
-   // give id of the table that has QuickSearch +
-   // is global variable on purpose +
-   searchTable document.getElementById('qstable'); +
-    +
-   setStatistics(-1) +
-    +
-   document.getElementById('qs').style.display = 'block'; +
-   document.getElementById('qsfield').onkeyup = testEvent; +
-   } +
-    +
-   function quickSearch(tInput){ +
-   searchText = new RegExp(tInput.value,"i"); +
-   var allRows = searchTable.getElementsByTagName('tbody')[0].getElementsByTagName('tr'); +
-   var inRows = new Array(); +
-    +
-   for (var i=0, k=0; i<allRows.length;i++) { +
-   if (allRows[i].className.indexOf('entry') != -1) { +
-   inRows[k++] = allRows[i]; +
-   } else if (allRows[i].className.indexOf('noshow') == -1) { +
-   allRows[i].className = allRows[i].className + ' noshow'; +
-   } +
-   } +
-    +
-   // find/set number of searchable columns +
-   // by default script searches all columns +
-   var cols = searchTable.getElementsByTagName('thead')[0].getElementsByTagName('th').length; +
-   // to set a fixed number of columns, uncomment next line +
-   // var cols = 4  // search the left 'cols' columns +
-    +
-   // count number of hits +
-   var hits = 0; +
-    +
-   // start looping through all rows +
-   for (var i = 0; cRow = inRows[i]; i++){ +
-    +
-   inCells = cRow.getElementsByTagName('td'); +
-   var gevonden = false;  +
-    +
-   for (var j=0; j<cols; j++) { // only first 'cols' columns +
-   cCell = inCells[j]; +
-   var t = cCell.innerText?cCell.innerText:getTextContent(cCell); +
-   if ((tInput.value.length == 0) || (t.search(searchText) != -1)){ gevonden=true; }  +
-   } +
-    +
-   gevonden == true?cRow.className = 'entry show':cRow.className = 'entry noshow'; +
-   gevonden == true?hits++:hits=hits; +
-   } +
-    +
-   // update statistics +
-   setStatistics(hits) +
-   } +
-    +
-   function toggleInfo(articleid,info) { +
-    +
-   var entry = document.getElementById(articleid); +
-   var abs = document.getElementById('abs_'+articleid); +
-   var rev = document.getElementById('rev_'+articleid); +
-   var bib = document.getElementById('bib_'+articleid); +
-    +
-   if (abs && info == 'abstract') { +
-   if(abs.className.indexOf('abstract') != -1) { +
-   abs.className.indexOf('noshow') == -1?abs.className = 'abstract noshow':abs.className = 'abstract'; +
-   } +
-   } else if (rev && info == 'review') { +
-   if(rev.className.indexOf('review') != -1) { +
-   rev.className.indexOf('noshow') == -1?rev.className = 'review noshow':rev.className = 'review'; +
-   } +
-   } else if (bib && info == 'bibtex') { +
-   if(bib.className.indexOf('bibtex') != -1) { +
-   bib.className.indexOf('noshow') == -1?bib.className = 'bibtex noshow':bib.className = 'bibtex'; +
-   }  +
-   } else {  +
-   return; +
-   } +
-    +
-   // check if one or the other is available +
-   var revshow = false; +
-   var absshow = false; +
-   var bibshow = false; +
-   (abs && abs.className.indexOf('noshow') == -1)? absshow = true: absshow = false; +
-   (rev && rev.className.indexOf('noshow') == -1)? revshow = true: revshow = false;  +
-   (bib && bib.className == 'bibtex')? bibshow = true: bibshow = false; +
-    +
-   // highlight original entry +
-   if(entry) { +
-   if (revshow || absshow || bibshow) { +
-   entry.className = 'entry highlight show'; +
-   } else { +
-   entry.className = 'entry show'; +
-   }  +
-   } +
-    +
-   // When there's a combination of abstract/review/bibtex showing, need to add class for correct styling +
-   if(absshow) { +
-   (revshow||bibshow)?abs.className = 'abstract nextshow':abs.className = 'abstract'; +
-   }  +
-   if (revshow) { +
-   bibshow?rev.className = 'review nextshow': rev.className = 'review'; +
-   } +
-    +
-   } +
-    +
-   function setStatistics (hits) { +
-   var allRows = searchTable.getElementsByTagName('tbody')[0].getElementsByTagName('tr'); +
-   var entries = 0 +
-   for (var i=0; i<allRows.length;i++) { +
-   if (allRows[i].className.indexOf('entry') != -1) { +
-   entries++; +
-   } +
-   } +
-    +
-   if(hits < 0) { hits=entries;+
-    +
-   var stats = document.getElementById('stat'); +
-   if(stats) { stats.firstChild.data = hits + '/' + entries} +
-   } +
-    +
-   function getTextContent(node) { +
-   // Function written by Arve Bersvendsen +
-   // http://www.virtuelvis.com +
-    +
-   if (node.nodeType == 3) { +
-   return node.nodeValue; +
-   } // text node +
-   if (node.nodeType == 1) { // element node +
-   var text = []; +
-   for (var chld = node.firstChild;chld;chld=chld.nextSibling) { +
-   text.push(getTextContent(chld)); +
-   } +
-   return text.join(""); +
-   } return ""; // some other node, won't contain text nodes. +
-   } +
-    +
-   function testEvent(e){ +
-   if (!e) var e = window.event; +
-   quickSearch(this); +
-   } +
-    +
-   function clearQS() { +
-   qsfield = document.getElementById('qsfield');  +
-   qsfield.value = ''; +
-   quickSearch(qsfield); +
-   } +
-    +
-   function redoQS(){ +
-   qsfield = document.getElementById('qsfield');  +
-   quickSearch(qsfield); +
-   } +
- --> +
-    </script> +
-     +
-    <style type="text/css"> +
-      body { background-color: white; font-family: "Trebuchet MS", Arial, sans-serif; font-size: 12px; line-height: 1.2; padding: 1em; } +
-       +
-      #qs { width: auto; border-style: solid; border-color: gray; border-width: 1px 1px 1px 1px; padding: 0.5em 0.5em; display:none; +
-      #qs form { padding: 0px; margin: 0px; } +
-      #qs form p { padding: 0px; margin: 0px; } +
-       +
-      table { border: 0px gray solid; width: 100%; empty-cells: show; } +
-      thead { height: 1px;} +
-      th, td { border: 0px gray solid; padding: 0.5em; vertical-align: top;  } +
-      td { text-align: left; vertical-align: top; } +
-      th { background-color: #FFFFFF; text-align: left;} +
-       +
-       +
-       +
-      td a, td a:hover { color: navy; font-weight: bold; } +
-       +
-      tr.noshow { display: none;} +
-       +
-      tr.highlight td { background-color: #FFFFFF; border-top: 1px black solid; font-weight: bold; } +
-      tr.abstract td, tr.review td, tr.bibtex td { background-color: #FFFFFF; border-bottom: 1px black solid; } +
-      tr.nextshow td { border-bottom: 1px gray solid; } +
-       +
-      tr.bibtex pre { width: 100%; overflow: auto;} +
-       +
-      p.infolinks { margin: 0.5em 0em 0em 0em; padding: 0px; } +
-    </style> +
-  </head> +
-   +
-  <!--=========================================================================================================--> +
-  <body> +
-    <h2>Publications</h2> +
-    <h3>2010</h3> +
-    <!--=======================================================================================================--> +
-    <table id="qstable" border="0"> +
-    <tbody>+
  
-         
-         
-         
-        Volume 39,  
-        Number 3,  
-   Pages 416-425,  
-    
-   2010.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m10a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m10a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{govaert_m10a, 
-  author = {Govaert, G. and Nadif, M.}, 
-  title = {Latent Block Model for Contingency Table}, 
-  journal = {Communications in Statistics - Theory and Methods}, 
-  year = {2010}, 
-  volume = {39}, 
-  number = {3}, 
-  pages = {416-425} 
-} 
-</pre></td> 
-</tr> 
-    </tbody> 
-    </table> 
- 
-    <h3>2009</h3> 
-    <!--=======================================================================================================--> 
-    <table id="qstable" border="0"> 
-    <tbody> 
-aa 
- 
-    </tbody> 
-    </table> 
- 
- 
- 
- 
- 
- 
- 
- 
- 
- 
- 
- 
- 
- 
- 
- 
- 
-    <h3>2008</h3> 
-    <!--=======================================================================================================--> 
-    <table id="qstable" border="0"> 
-      <tbody> 
- <tr id="biernacki_m08b" class="entry"> 
-   <td> 
-     <p class="infolinks"> 
-              C. Biernacki; G. Celeux &amp; G. Govaert. 
-       <I><B>Choosing the number of clusters in the latent class model</B></I>. 
-       Advances in Data Analysis, Data Handling and Business Intelligence, 32th Annual 
-       GFKL (Gesellschaft f&uuml;r Klassifikation),&nbsp; University of the Federal 
-       Armed Forces Hamburg, Germany, July 16-18, 2008.  
-       <a href="javascript:toggleInfo('biernacki_m08b','bibtex')">[BibTeX]</a> 
-     </p> 
-   </td> 
- </tr> 
- <tr id="bib_biernacki_m08b" class="bibtex noshow"> 
-   <td colspan="6"> 
-     <b>BibTeX</b>: 
-     <pre> 
-       @inproceedings{biernacki_m08b, 
-       author = {Biernacki, C. and Celeux, G. and Govaert, G.}, 
-       title = {Choosing the number of clusters in the latent class model}, 
-       booktitle = {Advances in Data Analysis, Data Handling and Business Intelligence, 
-       32th Annual GFKL (Gesellschaft f\"{u}r Klassifikation)}, 
-       address = {University of the Federal Armed Forces Hamburg, Germany}, 
-       month = {July 16-18}, 
-       year = {2008} 
-       } 
-   </pre></td> 
- </tr> 
- 
- <tr id="biernacki_m08a" class="entry"> 
-   <td> 
-     <p class="infolinks"> 
-     
-     
-        C. Biernacki; G. Celeux; G. Govaert &amp; F. Langrognet. 
-   <I><B>Mixmod: a software for model-based classification with continuous and categorical data</B></I> 
-   SFC - CLADAG 2008, First joint meeting of the Soci&eacute;t&eacute; Francophone de Classification and the Classification and Data Analysis Group of the Italian Statistical Society,&nbsp; 
-        Caserta, Italy,  
-        June 11-13th,  
-         
-         
-         
-    
-    
-   2008.  
-       
-    
-   <a href="javascript:toggleInfo('biernacki_m08a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_biernacki_m08a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{biernacki_m08a, 
-  author = {Biernacki, C. and Celeux, G. and Govaert, G. and Langrognet, F.}, 
-  title = {Mixmod: a software for model-based classification with continuous and categorical data}, 
-  booktitle = {SFC - CLADAG 2008, First joint meeting of the Soci{\'e}t{\'e} Francophone de Classification and the Classification and Data Analysis Group of the Italian Statistical Society}, 
-  address = {Caserta, Italy}, 
-  month = {June 11-13th}, 
-  year = {2008} 
-} 
-</pre></td> 
-</tr> 
-<tr id="gaillard_m08a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        P. Gaillard; M. Aupetit &amp; G. Govaert. 
-   <I><B>Learning topology of a labeled data set with the supervised generative Gaussian graph</B></I> 
-   Neurocomputing,&nbsp; 
-         
-         
-         
-        Volume 71,  
-        Number 7-9,  
-   Pages 1283-1299,  
-    
-   2008.  
-      [<a href="javascript:toggleInfo('gaillard_m08a','abstract')">Abstract</a> 
-    
-   <a href="javascript:toggleInfo('gaillard_m08a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="abs_gaillard_m08a" class="abstract noshow"> 
- <td colspan="6"><b>Abstract</b>: Extracting the topology of a set of a labeled data is expected to provide important information in order to analyze the data or to design a better decision system. In this work, we propose to extend the generative Gaussian graph to supervised learning in order to extract the topology of labeled data sets. The graph obtained learns the intra-class and inter-class connectedness and also the manifold-overlapping of the different classes. We propose a way to vizualize these topological features. We apply it to analyze the well-known Iris database and the three-phase pipe flow database.</td> 
-</tr> 
-<tr id="bib_gaillard_m08a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{gaillard_m08a, 
-  author = {Gaillard, P. and Aupetit, M. and Govaert, G.}, 
-  title = {Learning topology of a labeled data set with the supervised generative Gaussian graph}, 
-  journal = {Neurocomputing}, 
-  year = {2008}, 
-  volume = {71}, 
-  number = {7-9}, 
-  pages = {1283-1299} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m08a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert &amp; M. Nadif. 
-   <I><B>Block clustering with Bernoulli mixture models: Comparison of different approaches</B></I> 
-   Computational Statistics and Data Analysis,&nbsp; 
-         
-         
-         
-        Volume 52,  
-         
-   Pages 3233-3245,  
-    
-   2008.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m08a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m08a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{govaert_m08a, 
-  author = {Govaert, G. and Nadif, M.}, 
-  title = {Block clustering with {B}ernoulli mixture models: Comparison of different approaches}, 
-  journal = {Computational Statistics and Data Analysis}, 
-  year = {2008}, 
-  volume = {52}, 
-  pages = {3233-3245} 
-} 
-</pre></td> 
-</tr> 
-<tr id="nadif_m08a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        M. Nadif &amp; G. Govaert. 
-   <I><B>Algorithms for Model-based Block Gaussian Clustering</B></I> 
-   DMIN'08, the 2008 International Conference on Data Mining,&nbsp; 
-        Las Vegas, Nevada, USA,  
-        July 14-17,  
-         
-         
-         
-    
-    
-   2008.  
-       
-    
-   <a href="javascript:toggleInfo('nadif_m08a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_nadif_m08a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{nadif_m08a, 
-  author = {Nadif, M. and Govaert, G.}, 
-  title = {Algorithms for Model-based Block Gaussian Clustering}, 
-  booktitle = {DMIN'08, the 2008 International Conference on Data Mining}, 
-  address = {Las Vegas, Nevada, USA}, 
-  month = {July 14-17}, 
-  year = {2008} 
-} 
-</pre></td> 
-</tr> 
-<tr id="priam_m08b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        R. Priam; M. Nadif &amp; G. Govaert. 
-   <I><B>The Block Generative Topographic Mapping</B></I> 
-   The Third International Workshop on Artificial Neural Networks in Pattern Recognition, Lecture Notes in Artificial Intelligence (LNCS),&nbsp; 
-        Berlin Heidelberg,  
-        September,  
-         
-         
-        Number 5064,  
-   Pages 13-23,  
-   Springer,  
-   2008.  
-       
-    
-   <a href="javascript:toggleInfo('priam_m08b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_priam_m08b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{priam_m08b, 
-  author = {Priam, R. and Nadif, M. and Govaert, G.}, 
-  title = {The Block Generative Topographic Mapping}, 
-  booktitle = {The Third International Workshop on Artificial Neural Networks in Pattern Recognition, Lecture Notes in Artificial Intelligence (LNCS)}, 
-  address = {Berlin Heidelberg}, 
-  month = {September}, 
-  publisher = {Springer}, 
-  year = {2008}, 
-  number = {5064}, 
-  pages = {13-23} 
-} 
-</pre></td> 
-</tr> 
-<tr id="priam_m08a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        Rodolphe Priam; Mohamed Nadif &amp; G&eacute;rard Govaert. 
-   <I><B>Binary Block GTM : Carte auto-organisatrice probabiliste pour les grands tableaux binaires</B></I> 
-   Extraction et gestion des connaissances (EGC'2008), Actes des 8&egrave;mes journ&eacute;es Extraction et Gestion des Connaissances,&nbsp; 
-        Sophia-Antipolis, France,,  
-        29 janvier au 1er  f&eacute;vrier,  
-        Revue des Nouvelles Technologies de l'Information,  
-         
-         
-   Pages 265-272,  
-   C&eacute;padu&egrave;s-&Eacute;ditions,  
-   2008.  
-       
-    
-   <a href="javascript:toggleInfo('priam_m08a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_priam_m08a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{priam_m08a, 
-  author = {Rodolphe Priam and Mohamed Nadif and G{\'e}rard Govaert}, 
-  title = {Binary Block GTM : Carte auto-organisatrice probabiliste pour les grands tableaux binaires}, 
-  booktitle = {Extraction et gestion des connaissances (EGC'2008), Actes des 8{\`e}mes journ{\'e}es Extraction et Gestion des Connaissances}, 
-  address = {Sophia-Antipolis, France,}, 
-  month = {29 janvier au 1er  f{\'e}vrier}, 
-  publisher = {C{\'e}padu{\`e}s-{\'E}ditions}, 
-  year = {2008}, 
-  series = {Revue des Nouvelles Technologies de l'Information}, 
-  pages = {265-272} 
-} 
-</pre></td> 
-</tr> 
-<tr id="vandewalle_m08a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        V. Vandewalle; C. Biernacki; G. Celeux &amp; G. Govaert. 
-   <I><B>Are unlabeled data useful in semi-supervised model-based classification? Combining hypothesis testing and model choice</B></I> 
-   SFC - CLADAG 2008, First joint meeting of the Soci&eacute;t&eacute; Francophone de Classification and the Classification and Data Analysis Group of the Italian Statistical Society,&nbsp; 
-        Caserta, Italy,  
-        June 11-13th,  
-         
-         
-         
-    
-    
-   2008.  
-       
-    
-   <a href="javascript:toggleInfo('vandewalle_m08a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_vandewalle_m08a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{vandewalle_m08a, 
-  author = {Vandewalle,  V. and Biernacki, C. and  Celeux, G. and  Govaert, G.}, 
-  title = {Are unlabeled data useful in semi-supervised model-based classification? Combining hypothesis testing and model choice}, 
-  booktitle = {SFC - CLADAG 2008, First joint meeting of the Soci{\'e}t{\'e} Francophone de Classification and the Classification and Data Analysis Group of the Italian Statistical Society}, 
-  address = {Caserta, Italy}, 
-  month = {June 11-13th}, 
-  year = {2008} 
-} 
-</pre></td> 
-</tr> 
-</tbody> 
- 
- 
-  
-  </table> 
-    <h3>2007</h3> 
-    <!--=======================================================================================================--> 
-    <table id="qstable" border="0"> 
-<tbody><tr id="aupetit_m07" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        M. Aupetit; P. Gaillard &amp; G. Govaert. 
-   <I><B>A generative Gaussian graph to learn the topology of a set of points</B></I> 
-   Statistical workshop on "statistical approaches and validation in clustering: mixture models and nonparametric methods",&nbsp; 
-        Lisieux, France,  
-        June 29,  
-         
-         
-         
-    
-    
-   2007.  
-       
-    
-   <a href="javascript:toggleInfo('aupetit_m07','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_aupetit_m07" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{aupetit_m07, 
-  author = {Aupetit, M. and Gaillard, P. and Govaert, G.}, 
-  title = {A generative Gaussian graph to learn the topology of a set of points}, 
-  booktitle = {Statistical workshop on "statistical approaches and validation in clustering: mixture models and nonparametric methods"}, 
-  address = {Lisieux, France}, 
-  month = {June 29}, 
-  year = {2007} 
-} 
-</pre></td> 
-</tr> 
-<tr id="biernacki_m07b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Biernacki; G. Celeux; G. Govaert &amp; F. Lengrognet. 
-   <I><B>Le logiciel Mixmod d'analyse de m&eacute;lange pour la classification et l'analyse discriminante</B></I> 
-   Revue MODULAD,&nbsp; 
-         
-         
-         
-        Volume 35,  
-         
-   Pages 25-44,  
-    
-   2007.  
-       
-    
-   <a href="javascript:toggleInfo('biernacki_m07b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_biernacki_m07b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{biernacki_m07b, 
-  author = {Biernacki, C. and Celeux, G. and Govaert, G. and Lengrognet, F.}, 
-  title = {Le logiciel Mixmod d'analyse de m{\'e}lange pour la classification et l'analyse discriminante}, 
-  journal = {Revue MODULAD}, 
-  year = {2007}, 
-  volume = {35}, 
-  pages = {25-44} 
-} 
-</pre></td> 
-</tr> 
-<tr id="celeux_m07b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Celeux; C. Biernacki &amp; G. Govaert. 
-   <I><B>Predictive Clustering</B></I> 
-   Workshop on Model-Based Clustering,&nbsp; 
-        Dublin,  
-        July,  
-         
-         
-         
-    
-    
-   2007.  
-       
-    
-   <a href="javascript:toggleInfo('celeux_m07b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_celeux_m07b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{celeux_m07b, 
-  author = {Celeux, G. and Biernacki, C. and Govaert, G.}, 
-  title = {Predictive Clustering}, 
-  booktitle = {Workshop on Model-Based Clustering}, 
-  address = {Dublin}, 
-  month = {July}, 
-  year = {2007} 
-} 
-</pre></td> 
-</tr> 
-<tr id="celeux_m07a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Celeux &amp; G. Govaert. 
-   <I><B>Clustering mixture models : general aspects and model selection criteria, invited</B></I> 
-   Workshop on statistical approaches and validation in clustering: mixture models and nonparametric methods,&nbsp; 
-        Lisieux, France,  
-        June 29,  
-         
-         
-         
-    
-    
-   2007.  
-       
-    
-   <a href="javascript:toggleInfo('celeux_m07a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_celeux_m07a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{celeux_m07a, 
-  author = {Celeux, G. and Govaert, G.}, 
-  title = {Clustering mixture models : general aspects and model selection criteria, invited}, 
-  booktitle = {Workshop on statistical approaches and validation in clustering: mixture models and nonparametric methods}, 
-  address = {Lisieux, France}, 
-  month = {June 29}, 
-  year = {2007} 
-} 
-</pre></td> 
-</tr> 
-<tr id="gaillard_m07b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        P. Gaillard; M. Aupetit &amp; G. Govaert. 
-   <I><B>Apprentissage statistique de la topologie d'un ensemble de donn&eacute;es &eacute;tiquet&eacute;es</B></I> 
-   ESANN2007, 15th European Symposium on Artificial Neural Networks,&nbsp; 
-        Bruges, Belgium,  
-        April 25-26-27,  
-         
-         
-         
-   Pages 235-240,  
-    
-   2007.  
-       
-    
-   <a href="javascript:toggleInfo('gaillard_m07b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_gaillard_m07b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{gaillard_m07b, 
-  author = {Gaillard, P. and Aupetit, M. and Govaert, G.}, 
-  title = {Apprentissage statistique de la topologie d'un ensemble de donn{\'e}es {\'e}tiquet{\'e}es}, 
-  booktitle = {ESANN2007, 15th European Symposium on Artificial Neural Networks}, 
-  address = {Bruges, Belgium}, 
-  month = {April 25-26-27}, 
-  year = {2007}, 
-  pages = {235-240} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m07d" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert &amp; G. Celeux. 
-   <I><B>Some specific aspects of clustering mixture models: block clustering and variable selection</B></I> 
-   Workshop on statistical approaches and validation in clustering: mixture models and nonparametric methods,&nbsp; 
-        Lisieux, France,  
-        June 29,  
-         
-         
-         
-    
-    
-   2007.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m07d','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m07d" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{govaert_m07d, 
-  author = {Govaert, G. and Celeux, G.}, 
-  title = {Some specific aspects of clustering mixture models: block clustering and variable selection}, 
-  booktitle = {Workshop on statistical approaches and validation in clustering: mixture models and nonparametric methods}, 
-  address = {Lisieux, France}, 
-  month = {June 29}, 
-  year = {2007} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m07a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert &amp; M. Nadif. 
-   <I><B>Clustering of contingency table and mixture model</B></I> 
-   European Journal of Operational Research,&nbsp; 
-         
-         
-         
-        Volume 183,  
-         
-   Pages 1055-1066,  
-    
-   2007.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m07a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m07a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{govaert_m07a, 
-  author = {Govaert, G. and Nadif, M.}, 
-  title = {Clustering of contingency table and mixture model}, 
-  journal = {European Journal of Operational Research}, 
-  year = {2007}, 
-  volume = {183}, 
-  pages = {1055-1066} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m07c" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert &amp; M. Nadif. 
-   <I><B>Selected Contributions in Data Analysis and Classification</B></I> 
-   ,&nbsp; 
-        Berlin Heidelberg,  
-        August,  
-        Studies in Classification, Data Analysis, and Knowledge Organization,  
-        Volume 2,  
-         
-   Pages 203-212,  
-   Springer,  
-   2007.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m07c','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m07c" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inbook{govaert_m07c, 
-  author = {Govaert, G. and Nadif, M.}, 
-  title = {Selected Contributions in Data Analysis and Classification}, 
-  address = {Berlin Heidelberg}, 
-  month = {August}, 
-  publisher = {Springer}, 
-  year = {2007}, 
-  series = {Studies in Classification, Data Analysis, and Knowledge Organization}, 
-  volume = {2}, 
-  pages = {203-212} 
-} 
-</pre></td> 
-</tr> 
-<tr id="nadif_m07a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert &amp; M. Nadif. 
-   <I><B>Latent Block Model for Contingency Table - Comparison of different Approaches</B></I> 
-   12th International Conference on Applied Stochastic Models and Data Analysis (ASMDA 2007),&nbsp; 
-        Chania, Crete, Greece,  
-        May 29 - June 1,  
-         
-         
-         
-    
-    
-   2007.  
-       
-    
-   <a href="javascript:toggleInfo('nadif_m07a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_nadif_m07a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{nadif_m07a, 
-  author = {Govaert, G. and Nadif, M.}, 
-  title = {Latent Block Model for Contingency Table - Comparison of different Approaches}, 
-  booktitle = {12th International Conference on Applied Stochastic Models and Data Analysis (ASMDA 2007)}, 
-  address = {Chania, Crete, Greece}, 
-  month = {May 29 - June 1}, 
-  year = {2007} 
-} 
-</pre></td> 
-</tr> 
-<tr id="nadif_m07b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        M. Nadif &amp; G. Govaert. 
-   <I><B>Block clustering and statistical modelling</B></I> 
-   Symposium on mixture modeling,&nbsp; 
-        Leuven, Belgium,  
-        November 20-21,  
-         
-         
-         
-    
-    
-   2007.  
-       
-    
-   <a href="javascript:toggleInfo('nadif_m07b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_nadif_m07b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{nadif_m07b, 
-  author = {Nadif, M. and Govaert, G.}, 
-  title = {Block clustering and statistical modelling}, 
-  booktitle = {Symposium on mixture modeling}, 
-  address = {Leuven, Belgium}, 
-  month = {November 20-21}, 
-  year = {2007} 
-} 
-</pre></td> 
-</tr> 
-<tr id="same_m07b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        A. Sam&eacute;; P. Aknin &amp; G. Govaert. 
-   <I><B>Classification automatique pour la segmentation de signaux unidimensionnels</B></I> 
-   SFC 2007, XIVe Rencontre de la Soci&eacute;t&eacute; francophone de classification,&nbsp; 
-        Paris, France,  
-        5-7 Septembre,  
-         
-         
-         
-    
-    
-   2007.  
-       
-    
-   <a href="javascript:toggleInfo('same_m07b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_same_m07b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{same_m07b, 
-  author = {Sam{\'e}, A. and Aknin, P. and Govaert, G.}, 
-  title = {Classification automatique pour la segmentation de signaux unidimensionnels}, 
-  booktitle = {SFC 2007, XIVe Rencontre de la Soci\'et\'e francophone de classification}, 
-  address = {Paris, France}, 
-  month = {5-7 Septembre}, 
-  year = {2007} 
-} 
-</pre></td> 
-</tr> 
-<tr id="same_m07a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        A. Sam&eacute;; C. Ambroise &amp; G. Govaert. 
-   <I><B>An online Classification EM algorithm based on the mixture model</B></I> 
-   Statistics and Computing,&nbsp; 
-         
-        September,  
-         
-        Volume 17,  
-        Number 3,  
-   Pages 209-218,  
-    
-   2007.  
-       
-    
-   <a href="javascript:toggleInfo('same_m07a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_same_m07a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{same_m07a, 
-  author = {Sam{\'e}, A. and Ambroise, C. and Govaert, G.}, 
-  title = {An online Classification EM algorithm based on the mixture model}, 
-  month = {September}, 
-  journal = {Statistics and Computing}, 
-  year = {2007}, 
-  volume = {17}, 
-  number = {3}, 
-  pages = {209-218} 
-} 
-</pre></td> 
-</tr> 
-<tr id="tessier_m07" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Tessier; M. Schoenauer; C. Biernacki; G. Celeux &amp; G. Govaert. 
-   <I><B>Parameter Setting for Evolutionary Latent Class Clustering</B></I> 
-   Advances in Computation and Intelligence, Lecture Notes in Computer Science (LNCS),&nbsp; 
-        Berlin Heidelberg,  
-         
-         
-         
-        Number 4683,  
-   Pages 472-484,  
-   Springer,  
-   2007.  
-       
-    
-   <a href="javascript:toggleInfo('tessier_m07','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_tessier_m07" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{tessier_m07, 
-  author = {Tessier, G. and Schoenauer, M. and Biernacki, C. and Celeux, G. and Govaert, G.}, 
-  title = {Parameter Setting for Evolutionary Latent Class Clustering}, 
-  booktitle = {Advances in Computation and Intelligence, Lecture Notes in Computer Science (LNCS)}, 
-  address = {Berlin Heidelberg}, 
-  publisher = {Springer}, 
-  year = {2007}, 
-  number = {4683}, 
-  pages = {472-484} 
-} 
-</pre></td> 
-</tr> 
-</tbody> 
-  </table> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <h3>2006</h3> 
-    <table id="qstable" border="0"> 
-<tbody><tr id="ambroise_m06a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Ambroise &amp; G. Govaert. 
-   <I><B>Model based hierarchical co-clustering</B></I> 
-   COMPSTAT 2006,&nbsp; 
-        Rome, Italie,  
-        August, 28 - September, 1,  
-         
-         
-         
-    
-    
-   2006.  
-       
-    
-   <a href="javascript:toggleInfo('ambroise_m06a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_ambroise_m06a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{ambroise_m06a, 
-  author = {Ambroise, C. and Govaert, G.}, 
-  title = {Model based hierarchical co-clustering}, 
-  booktitle = {COMPSTAT 2006}, 
-  address = {Rome, Italie}, 
-  month = {August, 28 - September, 1}, 
-  year = {2006} 
-} 
-</pre></td> 
-</tr> 
-<tr id="biernacki_m06a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Biernacki; G. Celeux; G. Govaert &amp; F. Langrognet. 
-   <I><B>Model-based cluster and discriminant analysis with the MIXMOD software</B></I> 
-   Computational Statistics and Data Analysis,&nbsp; 
-         
-         
-         
-        Volume 51,  
-         
-   Pages 587-600,  
-    
-   2006.  
-       
-    
-   <a href="javascript:toggleInfo('biernacki_m06a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_biernacki_m06a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{biernacki_m06a, 
-  author = {Biernacki, C. and Celeux, G. and Govaert, G. and Langrognet, F.}, 
-  title = {Model-based cluster and discriminant analysis with the MIXMOD software}, 
-  journal = {Computational Statistics and Data Analysis}, 
-  year = {2006}, 
-  volume = {51}, 
-  pages = {587-600} 
-} 
-</pre></td> 
-</tr> 
-<tr id="gouget_m06a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Gouget &amp; G. Govaert. 
-   <I><B>Classification automatique de donn&eacute;es ordinales- Utilisation de mod&egrave;les multinomiaux contraints</B></I> 
-   SFdS'2006, 38ieme journ&eacute;es de Statistiques,&nbsp; 
-        Clamart, France,  
-        29 mai - 2 juin,  
-         
-         
-         
-    
-    
-   2006.  
-       
-    
-   <a href="javascript:toggleInfo('gouget_m06a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_gouget_m06a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{gouget_m06a, 
-  author = {Gouget, C. and Govaert, G.}, 
-  title = {Classification automatique de donn{\'e}es ordinales- Utilisation de mod{\`e}les multinomiaux contraints}, 
-  booktitle = {SFdS'2006, 38\ieme journ{\'e}es de Statistiques}, 
-  address = {Clamart, France}, 
-  month = {29 mai - 2 juin}, 
-  year = {2006} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m06c" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert; R. Hahnle, R. &amp; M. Nadif. 
-   <I><B>Preface</B></I> 
-   Soft Computing,&nbsp; 
-         
-        march,  
-         
-        Volume 10,  
-        Number 5,  
-   Pages 405,  
-    
-   2006.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m06c','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m06c" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{govaert_m06c, 
-  author = {Govaert, G. and Hahnle, R. and Nadif, M.}, 
-  title = {Preface}, 
-  month = {march}, 
-  journal = {Soft Computing}, 
-  year = {2006}, 
-  volume = {10}, 
-  number = {5}, 
-  pages = {405} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m06a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert &amp; M. Nadif. 
-   <I><B>Fuzzy Clustering to estimate the parameters of block mixture models</B></I> 
-   Soft Computing,&nbsp; 
-         
-        march,  
-         
-        Volume 10,  
-        Number 5,  
-   Pages 415-422,  
-    
-   2006.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m06a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m06a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{govaert_m06a, 
-  author = {Govaert, G. and Nadif, M.}, 
-  title = {Fuzzy Clustering to estimate the parameters of block mixture models}, 
-  month = {march}, 
-  journal = {Soft Computing}, 
-  year = {2006}, 
-  volume = {10}, 
-  number = {5}, 
-  pages = {415-422} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m06b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert &amp; M. Nadif. 
-   <I><B>Classification crois&eacute;e d'un tableau de contingence et mod&egrave;le probabiliste</B></I> 
-   RNTI-E-6, Revue des Nouvelles Technologies de l'Information,&nbsp; 
-         
-         
-         
-        Volume 2,  
-         
-   Pages 457-462,  
-    
-   2006.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m06b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m06b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{govaert_m06b, 
-  author = {Govaert, G. and Nadif, M.}, 
-  title = {Classification crois{\'e}e d'un tableau de contingence et mod{\`e}le probabiliste}, 
-  journal = {RNTI-E-6, Revue des Nouvelles Technologies de l'Information}, 
-  year = {2006}, 
-  volume = {2}, 
-  pages = {457-462} 
-} 
-</pre></td> 
-</tr> 
-<tr id="hamdan_m06a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        H. Hamdan &amp; G. Govaert. 
-   <I><B>Mixture model approach for acoustic emission control of cylindrical pressure vessels</B></I> 
-   Journal of Pressure Vessel Technology,&nbsp; 
-         
-        August,  
-         
-        Volume 128,  
-         
-   Pages 479-483,  
-    
-   2006.  
-       
-    
-   <a href="javascript:toggleInfo('hamdan_m06a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_hamdan_m06a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{hamdan_m06a, 
-  author = {Hamdan, H. and Govaert, G.}, 
-  title = {Mixture model approach for acoustic emission control of cylindrical pressure vessels}, 
-  month = {August}, 
-  journal = {Journal of Pressure Vessel Technology}, 
-  year = {2006}, 
-  volume = {128}, 
-  pages = {479-483} 
-} 
-</pre></td> 
-</tr> 
-<tr id="nadif_m06a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        M. Nadif &amp; Govaert. 
-   <I><B>Block clustering with mixture model on large contingency tables</B></I> 
-   21st European Conference on Operational Research,&nbsp; 
-        Reykjavik, Iceland,  
-        July 2-5,  
-         
-         
-         
-    
-    
-   2006.  
-       
-    
-   <a href="javascript:toggleInfo('nadif_m06a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_nadif_m06a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{nadif_m06a, 
-  author = {Nadif, M. and Govaert}, 
-  title = {Block clustering with mixture model on large contingency tables}, 
-  booktitle = {21st European Conference on Operational Research}, 
-  address = {Reykjavik, Iceland}, 
-  month = {July 2-5}, 
-  year = {2006} 
-} 
-</pre></td> 
-</tr> 
-<tr id="nadif_m06b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        M. Nadif &amp; G. Govaert. 
-   <I><B>Block clustering with mixture model on large contingency tables</B></I> 
-   IFCS 2006 Conference: Data Science and Classification,&nbsp; 
-        Ljubljana, Slovenia,  
-        July 25-29,  
-         
-         
-         
-    
-    
-   2006.  
-       
-    
-   <a href="javascript:toggleInfo('nadif_m06b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_nadif_m06b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{nadif_m06b, 
-  author = {Nadif, M. and Govaert, G.}, 
-  title = {Block clustering with mixture model on large contingency tables}, 
-  booktitle = {IFCS 2006 Conference: Data Science and Classification}, 
-  address = {Ljubljana, Slovenia}, 
-  month = {July 25-29}, 
-  year = {2006} 
-} 
-</pre></td> 
-</tr> 
-<tr id="same_m06a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        A. Sam&eacute;; C. Ambroise &amp; G. Govaert. 
-   <I><B>A Classification EM Algorithm for Binned Data</B></I> 
-   Computational Statistics and Data Analysis,&nbsp; 
-         
-         
-         
-        Volume 51,  
-         
-   Pages 466-480,  
-    
-   2006.  
-       
-    
-   <a href="javascript:toggleInfo('same_m06a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_same_m06a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{same_m06a, 
-  author = {Sam{\'e}, A. and Ambroise, C. and Govaert, G. }, 
-  title = {A Classification {EM} Algorithm for Binned Data}, 
-  journal = {Computational Statistics and Data Analysis}, 
-  year = {2006}, 
-  volume = {51}, 
-  pages = {466-480} 
-} 
-</pre></td> 
-</tr> 
-<tr id="tessier_m06" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        D. Tessier; M. Schoenauer; C. Biernacki; G. Celeux &amp; G. Govaert. 
-   <I><B>Evolutionary Latent Class Clustering of Qualitative Data</B></I> 
-   ,&nbsp; 
-        Le Chesnay, France,  
-        December,  
-         
-         
-        Number 6082,  
-    
-    
-   2006.  
-       
-    
-   <a href="javascript:toggleInfo('tessier_m06','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_tessier_m06" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@techreport{tessier_m06, 
-  author = {Tessier, D. and Sch\oe nauer, M. and Biernacki, C. and Celeux, G. and Govaert, G.}, 
-  title = {Evolutionary Latent Class Clustering of Qualitative Data}, 
-  address = {Le Chesnay, France}, 
-  month = {December}, 
-  year = {2006}, 
-  number = {6082} 
-} 
-</pre></td> 
-</tr> 
-</tbody> 
-  </table> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <h3>2005</h3> 
-    <table id="qstable" border="0"> 
- 
- 
-<tbody><tr id="biernacki_m05b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Biernacki; G. Celeux &amp; G. Govaert. 
-   <I><B>Parsimonious Latent Class Models</B></I> 
-   3rd International Association for Statistical Computing (IASC) world conference on Computational Statistics &amp; Data Analysis,&nbsp; 
-        Limassol, Cyprus,  
-        28-31 October,  
-         
-         
-         
-    
-    
-   2005.  
-       
-    
-   <a href="javascript:toggleInfo('biernacki_m05b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_biernacki_m05b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{biernacki_m05b, 
-  author = {Biernacki, C. and Celeux, G. and Govaert, G.}, 
-  title = {Parsimonious Latent Class Models}, 
-  booktitle = {3rd International Association for Statistical Computing (IASC) world conference on Computational Statistics \& Data Analysis}, 
-  address = {Limassol, Cyprus}, 
-  month = {28-31 October}, 
-  year = {2005} 
-} 
-</pre></td> 
-</tr> 
-<tr id="biernacki_m05a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Biernacki; G. Celeux; G. Govaert &amp; F. Langrognet. 
-   <I><B>MIXMOD: a Software for Model-Based Clustering and Classification with Continuous and Categorical Data</B></I> 
-   SFdS'2005, 37ieme journ&eacute;es de Statistiques,&nbsp; 
-        Pau, France,  
-        24-28 Mai,  
-         
-         
-         
-    
-    
-   2005.  
-       
-    
-   <a href="javascript:toggleInfo('biernacki_m05a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_biernacki_m05a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{biernacki_m05a, 
-  author = {Biernacki, C. and Celeux, G. and Govaert, G. and Langrognet, F.}, 
-  title = {{MIXMOD}: a Software for Model-Based Clustering and Classification with Continuous and Categorical Data}, 
-  booktitle = {SFdS'2005, 37\ieme journ{\'e}es de Statistiques}, 
-  address = {Pau, France}, 
-  month = {24-28 Mai}, 
-  year = {2005} 
-} 
-</pre></td> 
-</tr> 
-<tr id="biernacki_m05c" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Biernacki; G. Celeux; G. Govaert &amp; F. Lengrognet. 
-   <I><B>Model-based Cluster and Discriminant Analysis with the Mixmod Software</B></I> 
-   ,&nbsp; 
-        Le Chesnay, France,  
-        January,  
-         
-         
-        Number 0302,  
-    
-    
-   2005.  
-       
-    
-   <a href="javascript:toggleInfo('biernacki_m05c','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_biernacki_m05c" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@techreport{biernacki_m05c, 
-  author = {Biernacki, C. and Celeux, G. and Govaert, G. and Lengrognet, F.}, 
-  title = {Model-based Cluster and Discriminant Analysis with the Mixmod Software}, 
-  address = {Le Chesnay, France}, 
-  month = {January}, 
-  year = {2005}, 
-  number = {0302} 
-} 
-</pre></td> 
-</tr> 
-<tr id="gouget_m05a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Gouget &amp; G. Govaert. 
-   <I><B>Classification automatique de donn&eacute;es ordinales et mod&egrave;le de m&eacute;lange</B></I> 
-   SFdS'2005, 37ieme journ&eacute;es de Statistiques,&nbsp; 
-        Pau, France,  
-        24-28 Mai,  
-         
-         
-         
-    
-    
-   2005.  
-       
-    
-   <a href="javascript:toggleInfo('gouget_m05a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_gouget_m05a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{gouget_m05a, 
-  author = {Gouget, C. and Govaert, G.}, 
-  title = {Classification automatique de donn{\'e}es ordinales et mod{\`e}le de m{\'e}lange}, 
-  booktitle = {SFdS'2005, 37\ieme journ{\'e}es de Statistiques}, 
-  address = {Pau, France}, 
-  month = {24-28 Mai}, 
-  year = {2005} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m05a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert &amp; M. Nadif. 
-   <I><B>Classification d'un tableau de contingence et mod&egrave;le probabiliste</B></I> 
-   RNTI-E-3, Revue des Nouvelles Technologies de l'Information,&nbsp; 
-         
-         
-         
-        Volume 1,  
-         
-   Pages 213-218,  
-    
-   2005.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m05a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m05a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{govaert_m05a, 
-  author = {Govaert, G. and Nadif, M.}, 
-  title = {Classification d'un tableau de contingence et mod{\`e}le probabiliste}, 
-  journal = {RNTI-E-3, Revue des Nouvelles Technologies de l'Information}, 
-  year = {2005}, 
-  volume = {1}, 
-  pages = {213-218} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m05b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert &amp; M. Nadif. 
-   <I><B>An EM algorithm for the Block Mixture Model</B></I> 
-   IEEE Transactions on Pattern Analysis and Machine Intelligence,&nbsp; 
-         
-        April,  
-         
-        Volume 27,  
-        Number 4,  
-   Pages 643-647,  
-    
-   2005.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m05b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m05b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{govaert_m05b, 
-  author = {Govaert, G. and Nadif, M.}, 
-  title = {An {EM} algorithm for the Block Mixture Model}, 
-  month = {April}, 
-  journal = {IEEE Transactions on Pattern Analysis and Machine Intelligence}, 
-  year = {2005}, 
-  volume = {27}, 
-  number = {4}, 
-  pages = {643-647} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m05e" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert &amp; M. Nadif. 
-   <I><B>Clustering of contingency table with Poisson block mixture model</B></I> 
-   Classification and Data Analysis 2005 : Meeting of the Classification and Data Analysis Group of the Italian Statistical Society,&nbsp; 
-        Parme,  
-        6-8 June,  
-         
-         
-         
-   Pages 101-104,  
-   Monte Universit&agrave; Parma,  
-   2005.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m05e','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m05e" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{govaert_m05e, 
-  author = {Govaert, G. and Nadif, M.}, 
-  title = {Clustering of contingency table with Poisson block mixture model}, 
-  booktitle = {Classification and Data Analysis 2005 : Meeting of the Classification and Data Analysis Group of the Italian Statistical Society}, 
-  address = {Parme}, 
-  month = {6-8 June}, 
-  publisher = {Monte Universit\`a Parma}, 
-  year = {2005}, 
-  pages = {101-104} 
-} 
-</pre></td> 
-</tr> 
-<tr id="hamdan_m05a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        H. Hamdan &amp; G. Govaert. 
-   <I><B>WST mixture model strategy for pressure vessel control using acoustic emission</B></I> 
-   Annals of the University of Craiova, Series: automation, computers, electronics and mechatronic,&nbsp; 
-         
-         
-         
-        Volume 2 (29),  
-        Number 1,  
-   Pages 43-51,  
-    
-   2005.  
-       
-    
-   <a href="javascript:toggleInfo('hamdan_m05a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_hamdan_m05a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{hamdan_m05a, 
-  author = {Hamdan, H. and Govaert, G.}, 
-  title = {WST mixture model strategy for pressure vessel control using acoustic emission}, 
-  journal = {Annals of the University of Craiova, Series: automation, computers, electronics and mechatronic}, 
-  year = {2005}, 
-  volume = {2 (29)}, 
-  number = {1}, 
-  pages = {43-51} 
-} 
-</pre></td> 
-</tr> 
-<tr id="hamdan_m05b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        H. Hamdan &amp; G. Govaert. 
-   <I><B>Mixture model clustering of uncertain data</B></I> 
-   IEEE International Conference on Fuzzy Systems,&nbsp; 
-        Reno, Nevada, USA,  
-        22-25 may,  
-         
-         
-         
-   Pages 879-884,  
-    
-   2005.  
-       
-    
-   <a href="javascript:toggleInfo('hamdan_m05b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_hamdan_m05b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{hamdan_m05b, 
-  author = {Hamdan, H. and Govaert, G.}, 
-  title = {Mixture model clustering of uncertain data}, 
-  booktitle = {IEEE International Conference on Fuzzy Systems}, 
-  address = {Reno, Nevada, USA}, 
-  month = {22-25 may}, 
-  year = {2005}, 
-  pages = {879-884} 
-} 
-</pre></td> 
-</tr> 
-<tr id="nadif_m05a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        M. Nadif &amp; G. Govaert. 
-   <I><B>Block clustering via the block GEM and two-way EM algorithms</B></I> 
-   The third ACS/IEEE International conference on Computer Systems and Applications, (in CD ISBN 0-7803-8735-X),&nbsp; 
-        Cairo, Egypt,  
-        03-06 january,  
-         
-         
-         
-    
-    
-   2005.  
-       
-    
-   <a href="javascript:toggleInfo('nadif_m05a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_nadif_m05a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{nadif_m05a, 
-  author = {Nadif, M. and Govaert, G. }, 
-  title = {Block clustering via the block {GEM} and two-way {EM} algorithms}, 
-  booktitle = {The third ACS/IEEE International conference on Computer Systems and Applications, (in CD ISBN 0-7803-8735-X)}, 
-  address = {Cairo, Egypt}, 
-  month = {03-06 january}, 
-  year = {2005} 
-} 
-</pre></td> 
-</tr> 
-<tr id="nadif_m05b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        M. Nadif &amp; G. Govaert. 
-   <I><B>Block clustering with mixture model : Comparison between different approaches</B></I> 
-   AMSDA 2005 : International Symposium on Applied Stochastic Models and Data Analysis,&nbsp; 
-        Brest,  
-        17-20 May,  
-         
-         
-         
-    
-    
-   2005.  
-       
-    
-   <a href="javascript:toggleInfo('nadif_m05b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_nadif_m05b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{nadif_m05b, 
-  author = {Nadif, M. and Govaert, G. }, 
-  title = {Block clustering with mixture model : Comparison between different approaches}, 
-  booktitle = {AMSDA 2005 : International Symposium on Applied Stochastic Models and Data Analysis}, 
-  address = {Brest}, 
-  month = {17-20 May}, 
-  year = {2005} 
-} 
-</pre></td> 
-</tr> 
-<tr id="nadif_m05c" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        M. Nadif &amp; G. Govaert. 
-   <I><B>Block clustering of contingency table and Mixture Model</B></I> 
-   Advances in Intelligent Data Analysis V, Lecture Notes in Computer Science (LNCS),&nbsp; 
-        Berlin Heidelberg,  
-        September,  
-         
-         
-        Number 3646,  
-   Pages 249-259,  
-   Springer,  
-   2005.  
-       
-    
-   <a href="javascript:toggleInfo('nadif_m05c','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_nadif_m05c" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{nadif_m05c, 
-  author = {Nadif, M. and Govaert, G. }, 
-  title = {Block clustering of contingency table and Mixture Model}, 
-  booktitle = {Advances in Intelligent Data Analysis V, Lecture Notes in Computer Science (LNCS)}, 
-  address = {Berlin Heidelberg}, 
-  month = {September}, 
-  publisher = {Springer}, 
-  year = {2005}, 
-  number = {3646}, 
-  pages = {249-259} 
-} 
-</pre></td> 
-</tr> 
-<tr id="nadif_m05d" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        M. Nadif &amp; G. Govaert. 
-   <I><B>A Comparison Between Block CEM and Two-Way CEM Algorithm to Cluster a contingency table</B></I> 
-   Knowledge Discovery in Databases, Lecture Notes on Artificial Intelligence (LNAI),&nbsp; 
-        Berlin Heidelberg,  
-        September,  
-         
-         
-        Number 3721,  
-   Pages 609-616,  
-   Springer,  
-   2005.  
-       
-    
-   <a href="javascript:toggleInfo('nadif_m05d','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_nadif_m05d" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{nadif_m05d, 
-  author = {Nadif, M. and Govaert, G. }, 
-  title = {A Comparison Between Block {CEM} and Two-Way {CEM} Algorithm to Cluster a contingency table}, 
-  booktitle = {Knowledge Discovery in Databases, Lecture Notes on Artificial Intelligence (LNAI)}, 
-  address = {Berlin Heidelberg}, 
-  month = {September}, 
-  publisher = {Springer}, 
-  year = {2005}, 
-  number = {3721}, 
-  pages = {609-616} 
-} 
-</pre></td> 
-</tr> 
-<tr id="nadif_m05e" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        M. Nadif &amp; G. Govaert. 
-   <I><B>An EM algorithm for the Block Mixture Model of contingency table</B></I> 
-   3rd International Association for Statistical Computing (IASC) world conference on Computational Statistics &amp; Data Analysis,&nbsp; 
-        Limassol, Cyprus,  
-        28-31 October,  
-         
-         
-         
-    
-    
-   2005.  
-       
-    
-   <a href="javascript:toggleInfo('nadif_m05e','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_nadif_m05e" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{nadif_m05e, 
-  author = {Nadif, M. and Govaert, G. }, 
-  title = {An {EM} algorithm for the Block Mixture Model of contingency table}, 
-  booktitle = {3rd International Association for Statistical Computing (IASC) world conference on Computational Statistics \& Data Analysis}, 
-  address = {Limassol, Cyprus}, 
-  month = {28-31 October}, 
-  year = {2005} 
-} 
-</pre></td> 
-</tr> 
-<tr id="same_05b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        A. Same; G. Govaert &amp; C. Ambroise. 
-   <I><B>A mixture model-based on-line CEM algorithm</B></I> 
-   Advances in Intelligent Data Analysis V, Lecture Notes in Computer Science (LNCS),&nbsp; 
-        Berlin Heidelberg,  
-        September,  
-         
-         
-        Number 3646,  
-   Pages 373-384,  
-   Springer,  
-   2005.  
-       
-    
-   <a href="javascript:toggleInfo('same_05b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_same_05b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{same_05b, 
-  author = {Same, A. and Govaert, G. and Ambroise, C.}, 
-  title = {A mixture model-based on-line {CEM} algorithm}, 
-  booktitle = {Advances in Intelligent Data Analysis V, Lecture Notes in Computer Science (LNCS)}, 
-  address = {Berlin Heidelberg}, 
-  month = {September}, 
-  publisher = {Springer}, 
-  year = {2005}, 
-  number = {3646}, 
-  pages = {373-384} 
-} 
-</pre></td> 
-</tr> 
-<tr id="sujka_m05a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        N. Sujka; G. Govaert &amp; C. Ambroise. 
-   <I><B>Interpretable Clustering via Model-Based Divisive Hierarchical Classification</B></I> 
-   29th Annual GFKL (Gesellschaft f&uuml;r Klassifikation),&nbsp; 
-        University of Magdeburg, Germany,  
-        9-11 March,  
-         
-         
-         
-    
-    
-   2005.  
-       
-    
-   <a href="javascript:toggleInfo('sujka_m05a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_sujka_m05a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{sujka_m05a, 
-  author = {Sujka, N. and Govaert, G. and Ambroise, C.}, 
-  title = {Interpretable Clustering via Model-Based Divisive Hierarchical Classification}, 
-  booktitle = {29th Annual GFKL (Gesellschaft f\"{u}r Klassifikation)}, 
-  address = {University of Magdeburg, Germany}, 
-  month = {9-11 March}, 
-  year = {2005} 
-} 
-</pre></td> 
-</tr> 
-</tbody> 
-</table> 
- 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <h3>2004</h3> 
-    <table id="qstable" border="0"> 
-<tbody><tr id="govaert_m04a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert. 
-   <I><B>Classification et mod&egrave;le de m&eacute;lange (conf&eacute;rence invit&eacute;e)</B></I> 
-   RFIA 2004, 14&egrave;me Congr&eacute;s Francophone AFRIF-AFIA de Reconnaissance des Formes et Intelligence Artificielle, Worshop Analyse de donn&eacute;es, Statistique et Apprentissage pour la Fouille d'Images,&nbsp; 
-        Toulouse,  
-        27-30 Janvier,  
-         
-         
-         
-    
-    
-   2004.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m04a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m04a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{govaert_m04a, 
-  author = {Govaert, G. }, 
-  title = {Classification et mod{\`e}le de m{\'e}lange (conf{\'e}rence invit{\'e}e)}, 
-  booktitle = {RFIA 2004, 14{\`e}me Congr{\'e}s Francophone AFRIF-AFIA de Reconnaissance des Formes et Intelligence Artificielle, Worshop Analyse de donn{\'e}es, Statistique et Apprentissage pour la Fouille d'Images}, 
-  address = {Toulouse}, 
-  month = {27-30 Janvier}, 
-  year = {2004} 
-} 
-</pre></td> 
-</tr> 
-<tr id="hamdan_m04a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        H. Hamdan &amp; G. Govaert. 
-   <I><B>The fitting of binned data clustering to imprecise data</B></I> 
-   IEEE International conference on Information &amp; Communication Technologies: from Theory to Applications,&nbsp; 
-        Damascus, Syria,  
-        19-23 avril,  
-         
-         
-         
-   Pages 1-6,  
-    
-   2004.  
-       
-    
-   <a href="javascript:toggleInfo('hamdan_m04a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_hamdan_m04a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{hamdan_m04a, 
-  author = {Hamdan, H. and Govaert, G.}, 
-  title = {The fitting of binned data clustering to imprecise data}, 
-  booktitle = {IEEE International conference on Information \& Communication Technologies: from Theory to Applications}, 
-  address = {Damascus, Syria}, 
-  month = {19-23 avril}, 
-  year = {2004}, 
-  pages = {1-6} 
-} 
-</pre></td> 
-</tr> 
-<tr id="hamdan_m04b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        H. Hamdan &amp; G. Govaert. 
-   <I><B>CEM algorithm for imprecise data. Application to flaw diagnostic using acoustic emission</B></I> 
-   IEEE International conference on Systems, Man and Cybernetics,&nbsp; 
-        The Hague, The Netherlands,  
-        10-13 october,  
-         
-        Volume 5,  
-         
-   Pages 4774-4779,  
-    
-   2004.  
-       
-    
-   <a href="javascript:toggleInfo('hamdan_m04b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_hamdan_m04b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{hamdan_m04b, 
-  author = {Hamdan, H. and Govaert, G.}, 
-  title = {{CEM} algorithm for imprecise data. Application to flaw diagnostic using acoustic emission}, 
-  booktitle = {IEEE International conference on Systems, Man and Cybernetics}, 
-  address = {The Hague, The Netherlands}, 
-  month = {10-13 october}, 
-  year = {2004}, 
-  volume = {5}, 
-  pages = {4774-4779} 
-} 
-</pre></td> 
-</tr> 
-<tr id="hamdan_m04d" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        H. Hamdan &amp; G. Govaert. 
-   <I><B>Int-EM-CEM algorithm for imprecise data. Comparison with the CEM algorithm using Monte Carlo simulations</B></I> 
-   IEEE International conference on Cybernetics and Intelligent Systems,&nbsp; 
-        Singapore,  
-        1-3 december,  
-         
-         
-         
-   Pages 410-415,  
-    
-   2004.  
-       
-    
-   <a href="javascript:toggleInfo('hamdan_m04d','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_hamdan_m04d" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{hamdan_m04d, 
-  author = {Hamdan, H. and Govaert, G.}, 
-  title = {Int-{EM}-{CEM} algorithm for imprecise data. Comparison with the {CEM} algorithm using Monte Carlo simulations}, 
-  booktitle = {IEEE International conference on Cybernetics and Intelligent Systems}, 
-  address = {Singapore}, 
-  month = {1-3 december}, 
-  year = {2004}, 
-  pages = {410-415} 
-} 
-</pre></td> 
-</tr> 
-<tr id="hamdan_m04c" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        H. Hamdan; G. Govaert; C. Ambroise &amp; C. Herv&eacute;. 
-   <I><B>A mixture modele approach for acoustic emission control of pressure equipment</B></I> 
-   5th International Conference on Acoustical and Vibratory Surveillance Methods and Diagnostic techniques,&nbsp; 
-        Senlis, France,  
-        11 - 13 october,  
-         
-         
-         
-    
-    
-   2004.  
-       
-    
-   <a href="javascript:toggleInfo('hamdan_m04c','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_hamdan_m04c" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{hamdan_m04c, 
-  author = {Hamdan, H. and Govaert, G. and Ambroise, C. and Herv{\'e}, C.}, 
-  title = {A mixture modele approach for acoustic emission control of pressure equipment}, 
-  booktitle = {5th International Conference on Acoustical and Vibratory Surveillance Methods and Diagnostic techniques}, 
-  address = {Senlis, France}, 
-  month = {11 - 13 october}, 
-  year = {2004} 
-} 
-</pre></td> 
-</tr> 
-<tr id="nadif_m04a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        M. Nadif &amp; G. Govaert. 
-   <I><B>Another version of the Block EM algorithm</B></I> 
-   9th Conference of the International Federation of Classification (Chicago, USA 15-18 July): Classification, Clustering, and Data Mining Applications,&nbsp; 
-        Berlin,  
-        15-18 july,  
-         
-         
-         
-   Pages 69-76,  
-   Springer Verlag,  
-   2004.  
-       
-    
-   <a href="javascript:toggleInfo('nadif_m04a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_nadif_m04a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{nadif_m04a, 
-  author = {Nadif, M. and Govaert, G. }, 
-  title = {Another version of the Block {EM} algorithm}, 
-  booktitle = {9th Conference of the International Federation of Classification (Chicago, USA 15-18 July): Classification, Clustering, and Data Mining Applications}, 
-  address = {Berlin}, 
-  month = {15-18 july}, 
-  publisher = {Springer Verlag}, 
-  year = {2004}, 
-  pages = {69-76} 
-} 
-</pre></td> 
-</tr> 
-<tr id="nadif_m04b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        M. Nadif; F.-X. Jollois &amp; G. Govaert. 
-   <I><B>Block Clustering for large continuous data sets</B></I> 
-   AISTA'2004, International Conference on Advances in Intelligent Systems - Theory and Applications in cooperation with IEEE Computer Society, (in CD ISBN 2-9599776-8-8),&nbsp; 
-        Luxembourg,  
-        15-18 November,  
-         
-         
-         
-    
-    
-   2004.  
-       
-    
-   <a href="javascript:toggleInfo('nadif_m04b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_nadif_m04b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{nadif_m04b, 
-  author = {Nadif, M. and Jollois, F.-X. and Govaert, G. }, 
-  title = {Block Clustering for large continuous data sets}, 
-  booktitle = {AISTA'2004, International Conference on Advances in Intelligent Systems - Theory and Applications in cooperation with IEEE Computer Society, (in CD ISBN 2-9599776-8-8)}, 
-  address = {Luxembourg}, 
-  month = {15-18 November}, 
-  year = {2004} 
-} 
-</pre></td> 
-</tr> 
-<tr id="same_m04a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        A. Same; C. Ambroise &amp; G. Govaert. 
-   <I><B>Classification automatique de donn&eacute;es s&eacute;quentielles et mod&egrave;le de m&eacute;lange</B></I> 
-   SFdS'2004, 36ieme journ&eacute;es de Statistiques,&nbsp; 
-        Montpellier, France,  
-        24-28 Mai,  
-         
-         
-         
-    
-    
-   2004.  
-       
-    
-   <a href="javascript:toggleInfo('same_m04a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_same_m04a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{same_m04a, 
-  author = {Same, A. and Ambroise, C. and Govaert, G.}, 
-  title = {Classification automatique de donn{\'e}es s{\'e}quentielles et mod{\`e}le de m{\'e}lange}, 
-  booktitle = {SFdS'2004, 36\ieme journ{\'e}es de Statistiques}, 
-  address = {Montpellier, France}, 
-  month = {24-28 Mai}, 
-  year = {2004} 
-} 
-</pre></td> 
-</tr> 
-<tr id="same_m04b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        A. Same; C. Ambroise &amp; G. Govaert. 
-   <I><B>A mixture model approach for on-line clustering</B></I> 
-   Compstat 2004, Prodeedings of the 16th Computational Statistics symposium,&nbsp; 
-         
-        August,  
-         
-         
-         
-   Pages 1759-1766,  
-   Physica-Verlag,  
-   2004.  
-       
-    
-   <a href="javascript:toggleInfo('same_m04b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_same_m04b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{same_m04b, 
-  author = {Same, A. and Ambroise, C. and Govaert, G.}, 
-  title = {A mixture model approach for on-line clustering}, 
-  booktitle = {Compstat 2004, Prodeedings of the 16th Computational Statistics symposium}, 
-  month = {August}, 
-  publisher = {Physica-Verlag}, 
-  year = {2004}, 
-  pages = {1759-1766} 
-} 
-</pre></td> 
-</tr> 
-</tbody> 
-</table> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <h3>2003</h3> 
-    <table id="qstable" border="0"> 
- <tbody><tr id="biernacki_m03a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Biernacki; G. Celeux &amp; G. Govaert. 
-   <I><B>Choosing starting values for the EM algorithm for getting the highest likelihood in multivariate Gaussian mixture models</B></I> 
-   Computational Statistics and Data Analysis,&nbsp; 
-         
-        January,  
-         
-        Volume 41,  
-         
-   Pages 561-575,  
-    
-   2003.  
-       
-    
-   <a href="javascript:toggleInfo('biernacki_m03a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_biernacki_m03a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{biernacki_m03a, 
-  author = {Biernacki, C. and Celeux, G. and Govaert, G. }, 
-  title = {Choosing starting values for the {EM} algorithm for getting the highest likelihood in multivariate Gaussian mixture models}, 
-  month = {January}, 
-  journal = {Computational Statistics and Data Analysis}, 
-  year = {2003}, 
-  volume = {41}, 
-  pages = {561-575} 
-} 
-</pre></td> 
-</tr> 
-<tr id="biernacki_m03b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Biernacki; G. Celeux; G. Govaert; F. Langrognet; G. Moulin &amp; Y. Vernaz. 
-   <I><B>MIXMOD : un logiciel pour les mod&egrave;les de m&eacute;lange en classification et en analyse discriminante</B></I> 
-   SFdS'2003, XXXVieme journ&eacute;es de Statistiques,&nbsp; 
-        Lyon, France,  
-        2-6 Juin,  
-         
-         
-         
-    
-    
-   2003.  
-       
-    
-   <a href="javascript:toggleInfo('biernacki_m03b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_biernacki_m03b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{biernacki_m03b, 
-  author = {Biernacki, C. and Celeux, G. and Govaert, G. and Langrognet, F. and Moulin, G. and Vernaz, Y.}, 
-  title = {MIXMOD : un logiciel pour les mod{\`e}les de m{\'e}lange en classification et en analyse discriminante}, 
-  booktitle = {SFdS'2003, XXXV\ieme journ{\'e}es de Statistiques}, 
-  address = {Lyon, France}, 
-  month = {2-6 Juin}, 
-  year = {2003} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m03b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert. 
-   <I><B>Classification et mod&egrave;le de m&eacute;lange</B></I> 
-   Analyse de donn&eacute;es,&nbsp; 
-        Paris,  
-         
-         
-         
-         
-   Pages 263-292,  
-   Hermes,  
-   2003.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m03b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m03b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@incollection{govaert_m03b, 
-  author = {Govaert, G.}, 
-  title = {Classification et mod{\`e}le de m{\'e}lange}, 
-  booktitle = {Analyse de donn{\'e}es}, 
-  address = {Paris}, 
-  publisher = {Hermes}, 
-  year = {2003}, 
-  pages = {263-292} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m03d" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert. 
-   <I><B>Classification partiellement supervis&eacute;e (conf&eacute;rence invit&eacute;e)</B></I> 
-   Journ&eacute;e IS2 sur l'apprentissage statistique,&nbsp; 
-        Grenoble, France,  
-        21 mars,  
-         
-         
-         
-    
-    
-   2003.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m03d','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m03d" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{govaert_m03d, 
-  author = {Govaert, G.}, 
-  title = {Classification partiellement supervis{\'e}e (conf{\'e}rence invit{\'e}e)}, 
-  booktitle = {Journ{\'e}e IS2 sur l'apprentissage statistique}, 
-  address = {Grenoble, France}, 
-  month = {21 mars}, 
-  year = {2003} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m03e" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert. 
-   <I><B>Les m&eacute;langes finis comme mod&egrave;le de classification</B></I> 
-   Journ&eacute;es Analyse de donn&eacute;es, statistiques et apprentissage,&nbsp; 
-        Paris,  
-        Avril,  
-         
-         
-         
-    
-    
-   2003.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m03e','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m03e" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{govaert_m03e, 
-  author = {Govaert, G.}, 
-  title = {Les m{\'e}langes finis comme mod{\`e}le de classification}, 
-  booktitle = {Journ{\'e}es Analyse de donn{\'e}es, statistiques et apprentissage}, 
-  address = {Paris}, 
-  month = {Avril}, 
-  year = {2003} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m03f" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert. 
-   <I><B>Fuzzy clustering via block mixture models (invited)</B></I> 
-   JIM,2003, Fourth International Conference Journ&eacute;es de l'Informatique Messine,&nbsp; 
-        Metz,  
-        Septembre,  
-         
-         
-         
-    
-    
-   2003.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m03f','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m03f" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{govaert_m03f, 
-  author = {Govaert, G.}, 
-  title = {Fuzzy clustering via block mixture models (invited)}, 
-  booktitle = {JIM,2003, Fourth International Conference Journ{\'e}es de l'Informatique Messine}, 
-  address = {Metz}, 
-  month = {Septembre}, 
-  year = {2003} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m03h" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert. 
-   <I><B>Classification et donn&eacute;es temporelles</B></I> 
-   s&eacute;minaire LEAD,&nbsp; 
-        Lisbonne, Portugal,  
-        19 d&eacute;cembre,  
-         
-         
-         
-    
-    
-   2003.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m03h','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m03h" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{govaert_m03h, 
-  author = {Govaert, G.}, 
-  title = {Classification et donn{\'e}es temporelles}, 
-  booktitle = {s{\'e}minaire LEAD}, 
-  address = {Lisbonne, Portugal}, 
-  month = {19 d{\'e}cembre}, 
-  year = {2003} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m03i_bis" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert. 
-   <I><B>Analyse de donn&eacute;es</B></I> 
-   ,&nbsp; 
-         
-         
-         
-         
-         
-    
-   Hermes,  
-   2003.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m03i_bis','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m03i_bis" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@book{govaert_m03i_bis, 
-  author = {Govaert, G.}, 
-  title = {Analyse de donn{\'e}es}, 
-  publisher = {Hermes}, 
-  year = {2003} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m03j" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert. 
-   <I><B>Block clustering and mixture models</B></I> 
-   s&eacute;minaire LEAD,&nbsp; 
-        Lisbonne, Portugal,  
-        18 d&eacute;cembre,  
-         
-         
-         
-    
-    
-   2003.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m03j','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m03j" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{govaert_m03j, 
-  author = {Govaert, G.}, 
-  title = {Block clustering and mixture models}, 
-  booktitle = {s{\'e}minaire LEAD}, 
-  address = {Lisbonne, Portugal}, 
-  month = {18 d{\'e}cembre}, 
-  year = {2003} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m03a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert &amp; M. Nadif. 
-   <I><B>Clustering with block mixture models</B></I> 
-   Pattern Recognition,&nbsp; 
-         
-         
-         
-        Volume 36,  
-         
-   Pages 463-473,  
-    
-   2003.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m03a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m03a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{govaert_m03a, 
-  author = {Govaert, G. and Nadif, M.}, 
-  title = {Clustering with block mixture models}, 
-  journal = {Pattern Recognition}, 
-  year = {2003}, 
-  volume = {36}, 
-  pages = {463-473} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m03c" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert &amp; M. Nadif. 
-   <I><B>Un algorithme EM pour le mod&egrave;le de m&eacute;lange crois&eacute; (conf&eacute;rence invit&eacute;e)</B></I> 
-   SFdS'2003, 35ieme journ&eacute;es de Statistiques,&nbsp; 
-        Lyon, France,  
-        2-6 Juin,  
-         
-         
-         
-    
-    
-   2003.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m03c','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m03c" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{govaert_m03c, 
-  author = {Govaert, G. and Nadif, M.}, 
-  title = {Un algorithme {EM} pour le mod{\`e}le de m{\'e}lange crois{\'e} (conf{\'e}rence invit{\'e}e)}, 
-  booktitle = {SFdS'2003, 35\ieme journ{\'e}es de Statistiques}, 
-  address = {Lyon, France}, 
-  month = {2-6 Juin}, 
-  year = {2003} 
-} 
-</pre></td> 
-</tr> 
-<tr id="hamdan_m03a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        H. Hamdan &amp; G. Govaert. 
-   <I><B>Classification de donn&eacute;es de type intervalle via l'algorithme EM</B></I> 
-   SFdS'2003, 35ieme journ&eacute;es de Statistiques,&nbsp; 
-        Lyon, France,  
-        2-6 Juin,  
-         
-         
-         
-    
-    
-   2003.  
-       
-    
-   <a href="javascript:toggleInfo('hamdan_m03a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_hamdan_m03a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{hamdan_m03a, 
-  author = {Hamdan, H. and Govaert, G.}, 
-  title = {Classification de donn{\'e}es de type intervalle via l'algorithme {EM}}, 
-  booktitle = {SFdS'2003, 35\ieme journ{\'e}es de Statistiques}, 
-  address = {Lyon, France}, 
-  month = {2-6 Juin}, 
-  year = {2003} 
-} 
-</pre></td> 
-</tr> 
-<tr id="hamdan_m03b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        H. Hamdan &amp; G. Govaert. 
-   <I><B>Mod&eacute;lisation et Classification des donn&eacute;es impr&eacute;cises</B></I> 
-   CIMNA 2003, Premier congr&egrave;s international sur les mod&eacute;lisations num&eacute;riques appliqu&eacute;es,&nbsp; 
-        Beyrouth, Liban,  
-        14-15 novembre,  
-         
-         
-         
-    
-    
-   2003.  
-       
-    
-   <a href="javascript:toggleInfo('hamdan_m03b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_hamdan_m03b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{hamdan_m03b, 
-  author = {Hamdan, H. and Govaert, G.}, 
-  title = {Mod{\'e}lisation et Classification des donn{\'e}es impr{\'e}cises}, 
-  booktitle = {CIMNA 2003, Premier congr{\`e}s international sur les mod{\'e}lisations num{\'e}riques appliqu{\'e}es}, 
-  address = {Beyrouth, Liban}, 
-  month = {14-15 novembre}, 
-  year = {2003} 
-} 
-</pre></td> 
-</tr> 
-<tr id="jollois_m03a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        F.X. Jollois; M. Nadif &amp; G. Govaert. 
-   <I><B>Classification crois&eacute;e sur des donn&eacute;es binaires de grande taille</B></I> 
-   Revue d'intelligence artificielle,&nbsp; 
-         
-         
-         
-        Volume 17,  
-         
-   Pages 213-218,  
-    
-   2003.  
-       
-    
-   <a href="javascript:toggleInfo('jollois_m03a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_jollois_m03a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{jollois_m03a, 
-  author = {Jollois, F.X. and Nadif, M. and Govaert, G.}, 
-  title = {Classification crois{\'e}e sur des donn{\'e}es binaires de grande taille}, 
-  journal = {Revue d'intelligence artificielle}, 
-  year = {2003}, 
-  volume = {17}, 
-  pages = {213-218} 
-} 
-</pre></td> 
-</tr> 
-<tr id="jollois_m03b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        F.X. Jollois; M. Nadif &amp; G. Govaert. 
-   <I><B>Classification crois&eacute;e sur des donn&eacute;es binaires de grande taille</B></I> 
-   EGC'2003, Journ&eacute;es francophones d'extraction et de gestion des connaissances,&nbsp; 
-        Lyon,  
-        22-24 Janvier,  
-         
-         
-         
-    
-    
-   2003.  
-       
-    
-   <a href="javascript:toggleInfo('jollois_m03b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_jollois_m03b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{jollois_m03b, 
-  author = {Jollois, F.X. and Nadif, M. and Govaert, G.}, 
-  title = {Classification crois{\'e}e sur des donn{\'e}es binaires de grande taille}, 
-  booktitle = {EGC'2003, Journ{\'e}es francophones d'extraction et de gestion des connaissances}, 
-  address = {Lyon}, 
-  month = {22-24 Janvier}, 
-  year = {2003} 
-} 
-</pre></td> 
-</tr> 
-<tr id="same_m03" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        A. Same; C. Ambroise &amp; G. Govaert. 
-   <I><B>A mixture model approach for binned data clustering</B></I> 
-   Advances in Intelligent Data Analysis V. Proceedings 5th Int. Symposium on Intelligent Data Analysis IDA 2003,&nbsp; 
-        Berlin Heidelberg,  
-         
-        Lecture Notes in Computer Science,  
-        Volume 2810,  
-         
-   Pages 265-274,  
-   Springer-VerlagKluwer Academic Publisher,  
-   2003.  
-       
-    
-   <a href="javascript:toggleInfo('same_m03','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_same_m03" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{same_m03, 
-  author = {Same, A. and Ambroise, C. and and Govaert, G.}, 
-  title = {A mixture model approach for binned data clustering}, 
-  booktitle = {Advances in Intelligent Data Analysis V. Proceedings 5th Int. Symposium on Intelligent Data Analysis IDA 2003}, 
-  address = {Berlin Heidelberg}, 
-  publisher = {Springer-VerlagKluwer Academic Publisher}, 
-  year = {2003}, 
-  series = {Lecture Notes in Computer Science}, 
-  volume = {2810}, 
-  pages = {265-274} 
-} 
-</pre></td> 
-</tr> 
-</tbody> 
-      
-    </table> 
- 
- 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <h3>2002</h3> 
-    <table id="qstable" border="0"> 
-      <tbody><tr id="ambroise_m02" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Ambroise &amp; G. Govaert. 
-   <I><B>A Mixture Model Approach to Datacube Clustering (Invited)</B></I> 
-   26th Annual GFKL (Gesellschaft f&uuml;r Klassifikation),&nbsp; 
-        University of Mannheim, Germany,  
-        July 22-24,  
-         
-         
-         
-    
-    
-   2002.  
-       
-    
-   <a href="javascript:toggleInfo('ambroise_m02','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_ambroise_m02" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{ambroise_m02, 
-  author = {Ambroise, C. and Govaert, G.}, 
-  title = {A Mixture Model Approach to Datacube Clustering (Invited)}, 
-  booktitle = {26th Annual GFKL (Gesellschaft f\"{u}r Klassifikation)}, 
-  address = {University of Mannheim, Germany}, 
-  month = {July 22-24}, 
-  year = {2002} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m02b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert &amp; M. Nadif. 
-   <I><B>Mod&egrave;le de m&eacute;lange crois&eacute;e</B></I> 
-   SFC'2002, IXiemes Rencontres de la soci&eacute;t&eacute; francophone de Classification,&nbsp; 
-        Toulouse,  
-        16-18 Septembre,  
-         
-         
-         
-   Pages 55-61,  
-    
-   2002.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m02b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m02b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{govaert_m02b, 
-  author = {Govaert, G. and Nadif, M.}, 
-  title = {Mod{\`e}le de m{\'e}lange crois{\'e}e}, 
-  booktitle = {SFC'2002, IX\iemes Rencontres de la soci{\'e}t{\'e} francophone de Classification}, 
-  address = {Toulouse}, 
-  month = {16-18 Septembre}, 
-  year = {2002}, 
-  pages = {55-61} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m02c" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert &amp; M. Nadif. 
-   <I><B>Block Clustering on continuous data</B></I> 
-   Workshop on Clustering High Dimensional Data and its Application, Second SIAM International Conference on Data Mining,&nbsp; 
-        Arlington, USA,  
-        11-13 Avril,  
-         
-         
-         
-   Pages 7-16,  
-    
-   2002.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m02c','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m02c" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{govaert_m02c, 
-  author = {Govaert, G. and Nadif, M.}, 
-  title = {Block Clustering on continuous data}, 
-  booktitle = {Workshop on Clustering High Dimensional Data and its Application, Second SIAM International Conference on Data Mining}, 
-  address = {Arlington, USA}, 
-  month = {11-13 Avril}, 
-  year = {2002}, 
-  pages = {7-16} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m02d" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert &amp; M. Nadif. 
-   <I><B>Simultaneous Clustering on Continuous data and Statistical Modelling</B></I> 
-   4th International Conference on Applied Mathematics and Engineering Sciences,&nbsp; 
-        Casablanca, Morocco,  
-        23-25 October,  
-         
-         
-         
-    
-    
-   2002.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m02d','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m02d" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{govaert_m02d, 
-  author = {Govaert, G. and Nadif, M.}, 
-  title = {Simultaneous Clustering on Continuous data and Statistical Modelling}, 
-  booktitle = {4th International Conference on Applied Mathematics and Engineering Sciences}, 
-  address = {Casablanca, Morocco}, 
-  month = {23-25 October}, 
-  year = {2002} 
-} 
-</pre></td> 
-</tr> 
-<tr id="jollois_m02" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        F.X. Jollois; M. Nadif &amp; G. Govaert. 
-   <I><B>Assessing the Number of Clusters of the Latent Class Model</B></I> 
-   Classification, Clustering, and Data Analysis: Recent Advances and Applications, 8th Conference of the International Federation of Classification,&nbsp; 
-        Cracow, Poland,  
-         16-19 july,  
-         
-         
-         
-   Pages 139-146,  
-    
-   2002.  
-       
-    
-   <a href="javascript:toggleInfo('jollois_m02','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_jollois_m02" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{jollois_m02, 
-  author = {Jollois, F.X. and Nadif, M. and Govaert, G. }, 
-  title = {Assessing the Number of Clusters of the Latent Class Model}, 
-  booktitle = {Classification, Clustering, and Data Analysis: Recent Advances and Applications, 8th Conference of the International Federation of Classification}, 
-  address = {Cracow, Poland}, 
-  month = { 16-19 july}, 
-  year = {2002}, 
-  pages = {139-146} 
-} 
-</pre></td> 
-</tr> 
-<tr id="morizet_m02" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        P. Morizet-Mahoudeaux; G. Govaert; P. Trigano &amp; C. Ambroise. 
-   <I><B>Parcours Adaptatif &agrave; Temps Choisi</B></I> 
-   Journ&eacute;e Apprentissage et Interfaces Homme Machines, Coll&egrave;ge Apprentissage, Fouille et Extraction (CAFE),&nbsp; 
-        Institut Henri Poincar&eacute;, Paris,  
-        05 mars,  
-         
-         
-         
-    
-    
-   2002.  
-       
-    
-   <a href="javascript:toggleInfo('morizet_m02','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_morizet_m02" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{morizet_m02, 
-  author = {Morizet-Mahoudeaux, P. and Govaert, G. and Trigano, P. and Ambroise, C.}, 
-  title = {Parcours Adaptatif \`a Temps Choisi}, 
-  booktitle = {Journ\'ee Apprentissage et Interfaces Homme Machines, Coll\`ege Apprentissage, Fouille et Extraction (CAFE)}, 
-  address = {Institut Henri Poincar\'e, Paris}, 
-  month = {05 mars}, 
-  year = {2002} 
-} 
-</pre></td> 
-</tr> 
-<tr id="nadif_m02a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        M. Nadif &amp; G. Govaert. 
-   <I><B>Parameters Estimation of Block Mixture models</B></I> 
-   Compstat 2002, 15th International Conference on Computational Statistics,&nbsp; 
-        Berlin, Germany,  
-        24-28 August,  
-         
-         
-         
-    
-    
-   2002.  
-       
-    
-   <a href="javascript:toggleInfo('nadif_m02a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_nadif_m02a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{nadif_m02a, 
-  author = {Nadif, M. and Govaert, G.}, 
-  title = {Parameters Estimation of Block Mixture models}, 
-  booktitle = {Compstat 2002, 15th International Conference on Computational Statistics}, 
-  address = {Berlin, Germany}, 
-  month = {24-28 August}, 
-  year = {2002} 
-} 
-</pre></td> 
-</tr> 
-<tr id="nadif_m02b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        M. Nadif; G. Govaert &amp; F.X. Jollois. 
-   <I><B>A Hybrid Method for Identifying Homogenous Blocks in Large Data Sets</B></I> 
-   Second Euro-Japanese Workshop on Stochastic Risk Modelling for Finance, Insurance, Production and Reliability,&nbsp; 
-        Chamonix, France,  
-        16-19 September,  
-         
-         
-         
-   Pages 324-333,  
-    
-   2002.  
-       
-    
-   <a href="javascript:toggleInfo('nadif_m02b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_nadif_m02b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{nadif_m02b, 
-  author = {Nadif, M. and Govaert, G. and Jollois, F.X.}, 
-  title = {A Hybrid Method for Identifying Homogenous Blocks in Large Data Sets}, 
-  booktitle = {Second Euro-Japanese Workshop on Stochastic Risk Modelling for Finance, Insurance, Production and Reliability}, 
-  address = {Chamonix, France}, 
-  month = {16-19 September}, 
-  year = {2002}, 
-  pages = {324-333} 
-} 
-</pre></td> 
-</tr> 
-<tr id="same_m02" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        A. Same &amp; G. Govaert. 
-   <I><B>Algorithme CEM pour les donn&eacute;es sous forme d'histogramme</B></I> 
-   ASU'2002, XXXIVieme journ&eacute;es de Statistiques,&nbsp; 
-        Bruxelles, Belgique,  
-        13-17 mai,  
-         
-         
-         
-   Pages 338-339,  
-    
-   2002.  
-       
-    
-   <a href="javascript:toggleInfo('same_m02','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_same_m02" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{same_m02, 
-  author = {Same, A. and Govaert, G.}, 
-  title = {Algorithme {CEM} pour les donn{\'e}es sous forme d'histogramme}, 
-  booktitle = {ASU'2002, XXXIV\ieme journ{\'e}es de Statistiques}, 
-  address = {Bruxelles, Belgique}, 
-  month = {13-17 mai}, 
-  year = {2002}, 
-  pages = {338-339} 
-} 
-</pre></td> 
-</tr> 
-</tbody> 
- 
-    </table> 
- 
- 
- 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <h3>2001</h3> 
-    <table id="qstable" border="0"> 
-      <tbody><tr id="ambroise_m01b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Ambroise; T. Den&#339;ux; G. Govaert &amp; P. Smets. 
-   <I><B>Learning from an Imprecise Teacher: Probabilistic and Evidential Approaches</B></I> 
-   ASMDA 2001 : International Symposium on Applied Stochastic Models and Data Analysis,&nbsp; 
-         
-        June,  
-         
-         
-         
-    
-    
-   2001.  
-       
-    
-   <a href="javascript:toggleInfo('ambroise_m01b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_ambroise_m01b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{ambroise_m01b, 
-  author = {Ambroise, C. and Den{\oe}ux, T. and Govaert, G. and Smets, P.}, 
-  title = {Learning from an Imprecise Teacher: Probabilistic and Evidential Approaches}, 
-  booktitle = {ASMDA 2001 : International Symposium on Applied Stochastic Models and Data Analysis}, 
-  month = {June}, 
-  year = {2001} 
-} 
-</pre></td> 
-</tr> 
-<tr id="ambroise_m01a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Ambroise &amp; G. Govaert. 
-   <I><B>A Mixture Model Approach for Classifying Doubtful labeled Data</B></I> 
-   Mixtures 2001,&nbsp; 
-        Hamburg,  
-        July,  
-         
-         
-         
-    
-    
-   2001.  
-       
-    
-   <a href="javascript:toggleInfo('ambroise_m01a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_ambroise_m01a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{ambroise_m01a, 
-  author = {Ambroise, C. and Govaert, G.}, 
-  title = {A Mixture Model Approach for Classifying Doubtful labeled Data}, 
-  booktitle = {Mixtures 2001}, 
-  address = {Hamburg}, 
-  month = {July}, 
-  year = {2001} 
-} 
-</pre></td> 
-</tr> 
-<tr id="ambroise_m01c" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Ambroise &amp; G. Govaert. 
-   <I><B>Clustering and Models</B></I> 
-   Classification, Automation and New Media,&nbsp; 
-        Berlin,  
-         
-         
-         
-         
-   Pages 3-16,  
-   Springer Verlag,  
-   2001.  
-       
-    
-   <a href="javascript:toggleInfo('ambroise_m01c','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_ambroise_m01c" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@incollection{ambroise_m01c, 
-  author = {Ambroise, C. and Govaert, G.}, 
-  title = {Clustering and Models}, 
-  booktitle = {Classification, Automation and New Media}, 
-  address = {Berlin}, 
-  publisher = {Springer Verlag}, 
-  year = {2001}, 
-  pages = {3-16} 
-} 
-</pre></td> 
-</tr> 
-<tr id="biernacki_m01" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Biernacki; G. Celeux &amp; G. Govaert. 
-   <I><B>Strategies for Getting the Highest Likelihood in Mixture Models</B></I> 
-   ,&nbsp; 
-        Le Chesnay, France,  
-        September,  
-         
-         
-        Number 4255,  
-    
-    
-   2001.  
-       
-    
-   <a href="javascript:toggleInfo('biernacki_m01','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_biernacki_m01" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@techreport{biernacki_m01, 
-  author = {C. Biernacki and G. Celeux and G. Govaert}, 
-  title = {Strategies for Getting the Highest Likelihood in Mixture Models}, 
-  address = {Le Chesnay, France}, 
-  month = {September}, 
-  year = {2001}, 
-  number = {4255} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m01a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert. 
-   <I><B>Les m&eacute;langes finis comme mod&egrave;le de classification</B></I> 
-   Journ&eacute;es INRIA IS2,&nbsp; 
-        Grenoble,  
-        Mars,  
-         
-         
-         
-    
-    
-   2001.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m01a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m01a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{govaert_m01a, 
-  author = {Govaert, G.}, 
-  title = {Les m{\'e}langes finis comme mod{\`e}le de classification}, 
-  booktitle = {Journ{\'e}es INRIA IS2}, 
-  address = {Grenoble}, 
-  month = {Mars}, 
-  year = {2001} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m01c" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert. 
-   <I><B>Classification automatique et m&eacute;lange pour le diagnostic</B></I> 
-   journ&eacute;e analyse de donn&eacute;es et diagnostic,&nbsp; 
-        Paris,  
-        18 mai,  
-         
-         
-         
-    
-    
-   2001.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m01c','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m01c" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{govaert_m01c, 
-  author = {Govaert, G.}, 
-  title = {Classification automatique et m{\'e}lange pour le diagnostic}, 
-  booktitle = {journ{\'e}e analyse de donn{\'e}es et diagnostic}, 
-  address = {Paris}, 
-  month = {18 mai}, 
-  year = {2001} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m01d" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert. 
-   <I><B>Classification automatique et mod&egrave;le de m&eacute;lange pour les donn&eacute;es spatiales</B></I> 
-   s&eacute;minaire de l'Institut Pierre Simon Laplace,&nbsp; 
-        Paris,  
-        28 mai,  
-         
-         
-         
-    
-    
-   2001.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m01d','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m01d" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{govaert_m01d, 
-  author = {Govaert, G.}, 
-  title = {Classification automatique et mod{\`e}le de m{\'e}lange pour les donn{\'e}es spatiales}, 
-  booktitle = {s{\'e}minaire de l'Institut Pierre Simon Laplace}, 
-  address = {Paris}, 
-  month = {28 mai}, 
-  year = {2001} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m01e" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert. 
-   <I><B>Mod&egrave;le de m&eacute;lange et cartes de Kohonen</B></I> 
-   s&eacute;minaire M&eacute;thodes Neuronales,&nbsp; 
-        Institut Henri Poincar&eacute;, Paris,  
-        25 Octobre,  
-         
-         
-         
-    
-    
-   2001.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m01e','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m01e" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{govaert_m01e, 
-  author = {Govaert, G.}, 
-  title = {Mod{\`e}le de m{\'e}lange et cartes de Kohonen}, 
-  booktitle = {s{\'e}minaire M{\'e}thodes Neuronales}, 
-  address = {Institut Henri Poincar{\'e}, Paris}, 
-  month = {25 Octobre}, 
-  year = {2001} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m01b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert &amp; G. Celeux. 
-   <I><B>Mod&egrave;les de m&eacute;lange sur variable qualitatives et binaires</B></I> 
-   Journ&eacute;es INRIA IS2,&nbsp; 
-        Grenoble,  
-        Mars,  
-         
-         
-         
-    
-    
-   2001.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m01b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m01b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{govaert_m01b, 
-  author = {Govaert, G. and Celeux, G.}, 
-  title = {Mod{\`e}les de m{\'e}lange sur variable qualitatives et binaires}, 
-  booktitle = {Journ{\'e}es INRIA IS2}, 
-  address = {Grenoble}, 
-  month = {Mars}, 
-  year = {2001} 
-} 
-</pre></td> 
-</tr> 
-</tbody> 
- 
-    </table> 
- 
- 
- 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <h3>2000</h3> 
-    <table id="qstable" border="0"> 
-      <tbody><tr id="ambroise_m00a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Ambroise &amp; G. Govaert. 
-   <I><B>Mixture Models and Clustering (Invited)</B></I> 
-   24th Annual GfKl (Gesellschaft fur Klassifikation),&nbsp; 
-        University of Passau, Germany,  
-        March 15-17,  
-         
-         
-         
-    
-    
-   2000.  
-       
-    
-   <a href="javascript:toggleInfo('ambroise_m00a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_ambroise_m00a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{ambroise_m00a, 
-  author = {Ambroise, C. and Govaert, G.}, 
-  title = {Mixture Models and Clustering (Invited)}, 
-  booktitle = {24th Annual GfKl (Gesellschaft fur Klassifikation)}, 
-  address = {University of Passau, Germany}, 
-  month = {March 15-17}, 
-  year = {2000} 
-} 
-</pre></td> 
-</tr> 
-<tr id="ambroise_m00b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Ambroise &amp; G. Govaert. 
-   <I><B>EM Algorithm for Partially Known Labels</B></I> 
-   Data Analysis, Classification, and Related Methods, Proceedings of the 7th Conference of the International Federation of Classification Societies (IFCS-2000), University of Namur, Belgium,&nbsp; 
-        Berlin,  
-        11-14 July,  
-         
-         
-         
-   Pages 161-166,  
-   Springer,  
-   2000.  
-       
-    
-   <a href="javascript:toggleInfo('ambroise_m00b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_ambroise_m00b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{ambroise_m00b, 
-  author = {Ambroise, C. and Govaert, G.}, 
-  title = {{EM} Algorithm for Partially Known Labels}, 
-  booktitle = {Data Analysis, Classification, and Related Methods, Proceedings of the 7th Conference of the International Federation of Classification Societies (IFCS-2000), University of Namur, Belgium}, 
-  address = {Berlin}, 
-  month = {11-14 July}, 
-  publisher = {Springer}, 
-  year = {2000}, 
-  pages = {161-166} 
-} 
-</pre></td> 
-</tr> 
-<tr id="ambroise_m00c" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Ambroise &amp; G. Govaert. 
-   <I><B>Clustering by Maximizing a Fuzzy Classification Maximum Likelihood Criterion</B></I> 
-   Compstat 2000, Prodeedings in Computational Statistics, 14th Symposium held in Utrecht, The Netherlands,&nbsp; 
-        Heidelberg,  
-        21-25 August,  
-         
-         
-         
-   Pages 186-192,  
-    
-   2000.  
-       
-    
-   <a href="javascript:toggleInfo('ambroise_m00c','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_ambroise_m00c" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{ambroise_m00c, 
-  author = {Ambroise, C. and Govaert, G.}, 
-  title = {Clustering by Maximizing a Fuzzy Classification Maximum Likelihood Criterion}, 
-  booktitle = {Compstat 2000, Prodeedings in Computational Statistics, 14th Symposium held in Utrecht, The Netherlands}, 
-  address = {Heidelberg}, 
-  month = {21-25 August}, 
-  year = {2000}, 
-  pages = {186-192} 
-} 
-</pre></td> 
-</tr> 
-<tr id="biernacki_m00a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Biernacki; G. Celeux &amp; G. Govaert. 
-   <I><B>Assessing a Mixture Model for Clustering with the Integrated Completed Likelihood</B></I> 
-   IEEE Transactions on Pattern Analysis and Machine Intelligence,&nbsp; 
-         
-        July,  
-         
-        Volume 22,  
-        Number 7,  
-   Pages 719-725,  
-    
-   2000.  
-       
-    
-   <a href="javascript:toggleInfo('biernacki_m00a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_biernacki_m00a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{biernacki_m00a, 
-  author = {Biernacki, C. and Celeux, G. and Govaert, G.}, 
-  title = {Assessing a Mixture Model for Clustering with the Integrated Completed Likelihood}, 
-  month = {July}, 
-  journal = {IEEE Transactions on Pattern Analysis and Machine Intelligence}, 
-  year = {2000}, 
-  volume = {22}, 
-  number = {7}, 
-  pages = {719-725} 
-} 
-</pre></td> 
-</tr> 
-<tr id="biernacki_m00b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Biernacki; G. Celeux &amp; G. Govaert. 
-   <I><B>Strat&eacute;gies algorithmiques pour maximiser la vraisemblance dans les mod&egrave;les de m&eacute;lange</B></I> 
-   ASU'2000, XXXIIieme journ&eacute;es de Statistiques,&nbsp; 
-        Fez, Maroc,  
-        15-19 mai,  
-         
-         
-         
-   Pages 140-143,  
-    
-   2000.  
-       
-    
-   <a href="javascript:toggleInfo('biernacki_m00b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_biernacki_m00b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{biernacki_m00b, 
-  author = {Biernacki, C. and Celeux, G. and Govaert, G.}, 
-  title = {Strat{\'e}gies algorithmiques pour maximiser la vraisemblance dans les mod{\`e}les de m{\'e}lange}, 
-  booktitle = {ASU'2000, XXXII\ieme journ{\'e}es de Statistiques}, 
-  address = {Fez, Maroc}, 
-  month = {15-19 mai}, 
-  year = {2000}, 
-  pages = {140-143} 
-} 
-</pre></td> 
-</tr> 
-<tr id="biernacki_m00c" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Biernacki; G. Celeux &amp; G. Govaert. 
-   <I><B>Strategies for Getting Likelihood in Mixture Models</B></I> 
-   JSM 2000,&nbsp; 
-        Indianapolis,  
-        August,  
-         
-         
-         
-    
-    
-   2000.  
-       
-    
-   <a href="javascript:toggleInfo('biernacki_m00c','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_biernacki_m00c" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{biernacki_m00c, 
-  author = {Biernacki, C. and Celeux, G. and Govaert, G.}, 
-  title = {Strategies for Getting Likelihood in Mixture Models}, 
-  booktitle = {JSM 2000}, 
-  address = {Indianapolis}, 
-  month = {August}, 
-  year = {2000} 
-} 
-</pre></td> 
-</tr> 
-<tr id="biernacki_m00d" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Biernacki; G. Celeux &amp; G. Govaert. 
-   <I><B>Strategies for Getting Likelihood in Mixture Models</B></I> 
-   Workshop Franco-Portugais sur la classification,&nbsp; 
-        Paris,  
-        21-22 September,  
-         
-         
-         
-    
-    
-   2000.  
-       
-    
-   <a href="javascript:toggleInfo('biernacki_m00d','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_biernacki_m00d" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{biernacki_m00d, 
-  author = {Biernacki, C. and Celeux, G. and Govaert, G.}, 
-  title = {Strategies for Getting Likelihood in Mixture Models}, 
-  booktitle = {Workshop Franco-Portugais sur la classification}, 
-  address = {Paris}, 
-  month = {21-22 September}, 
-  year = {2000} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m00a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert. 
-   <I><B>Classification et mod&egrave;les de m&eacute;lange - Application aux donn&eacute;es spatiales</B></I> 
-   Revue Internationale de g&eacute;omatique, European Journal of GIS and Spatial Analysis,&nbsp; 
-         
-         
-         
-        Volume 9,  
-        Number 4,  
-   Pages 457-470,  
-    
-   2000.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m00a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m00a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{govaert_m00a, 
-  author = {Govaert, G.}, 
-  title = {Classification et mod{\`e}les de m{\'e}lange - Application aux donn{\'e}es spatiales}, 
-  journal = {Revue Internationale de g{\'e}omatique, European Journal of GIS and Spatial Analysis}, 
-  year = {2000}, 
-  volume = {9}, 
-  number = {4}, 
-  pages = {457-470} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m00b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert. 
-   <I><B>Classification et mod&egrave;les de m&eacute;lange - Application aux donn&eacute;es spatiales</B></I> 
-   Journ&eacute;es Data Mining et Analyse du risque,&nbsp; 
-        Versailles,  
-        24-25 F&eacute;vrier,  
-         
-         
-         
-    
-    
-   2000.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m00b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m00b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{govaert_m00b, 
-  author = {Govaert, G.}, 
-  title = {Classification et mod{\`e}les de m{\'e}lange - Application aux donn{\'e}es spatiales}, 
-  booktitle = {Journ{\'e}es Data Mining et Analyse du risque}, 
-  address = {Versailles}, 
-  month = {24-25 F{\'e}vrier}, 
-  year = {2000} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m00c" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert. 
-   <I><B>Classification de donn&eacute;es temporelles</B></I> 
-   Workshop Franco-Portugais sur la classification,&nbsp; 
-        Paris,  
-        21-22 September,  
-         
-         
-         
-    
-    
-   2000.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m00c','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m00c" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{govaert_m00c, 
-  author = {Govaert, G.}, 
-  title = {Classification de donn{\'e}es temporelles}, 
-  booktitle = {Workshop Franco-Portugais sur la classification}, 
-  address = {Paris}, 
-  month = {21-22 September}, 
-  year = {2000} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m00d" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert. 
-   <I><B>Classification et Mod&egrave;le de m&eacute;lange ; application aux donn&eacute;es spatiales</B></I> 
-   s&eacute;minaire LEAD,&nbsp; 
-        Lisbonne, Portugal,  
-        30 Novembre,  
-         
-         
-         
-    
-    
-   2000.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m00d','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m00d" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{govaert_m00d, 
-  author = {Govaert, G.}, 
-  title = {Classification et Mod{\`e}le de m{\'e}lange ; application aux donn{\'e}es spatiales}, 
-  booktitle = {s{\'e}minaire LEAD}, 
-  address = {Lisbonne, Portugal}, 
-  month = {30 Novembre}, 
-  year = {2000} 
-} 
-</pre></td> 
-</tr> 
-<tr id="putz_m00" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Putz &amp; G. Govaert. 
-   <I><B>Mod&egrave;le de m&eacute;lange Gaussien et qualit&eacute; des mesures</B></I> 
-   ASU'2000, XXXIIieme journ&eacute;es de Statistiques,&nbsp; 
-        Fez, Maroc,  
-        15-19 mai,  
-         
-         
-         
-   Pages 645-648,  
-    
-   2000.  
-       
-    
-   <a href="javascript:toggleInfo('putz_m00','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_putz_m00" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{putz_m00, 
-  author = {Putz, G. and Govaert, G.}, 
-  title = {Mod{\`e}le de m{\'e}lange Gaussien et qualit{\'e} des mesures}, 
-  booktitle = {ASU'2000, XXXII\ieme journ{\'e}es de Statistiques}, 
-  address = {Fez, Maroc}, 
-  month = {15-19 mai}, 
-  year = {2000}, 
-  pages = {645-648} 
-} 
-</pre></td> 
-</tr> 
-</tbody> 
- 
-    </table> 
- 
- 
- 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <h3>1999</h3> 
-    <table id="qstable" border="0"> 
-      <tbody><tr id="ambroise_m99" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Ambroise &amp; G. Govaert. 
-   <I><B>Classification spatiale utilisant des &eacute;chantillons partiellement class&eacute;s</B></I> 
-   ASU'99, XXXIieme journ&eacute;es de Statistiques,&nbsp; 
-        Grenoble,  
-        mai,  
-         
-         
-         
-   Pages 407-410,  
-    
-   1999.  
-       
-    
-   <a href="javascript:toggleInfo('ambroise_m99','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_ambroise_m99" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{ambroise_m99, 
-  author = {Ambroise, C. and Govaert, G.}, 
-  title = {Classification spatiale utilisant des {\'e}chantillons partiellement class{\'e}s}, 
-  booktitle = {ASU'99, XXXI\ieme journ{\'e}es de Statistiques}, 
-  address = {Grenoble}, 
-  month = {mai}, 
-  year = {1999}, 
-  pages = {407-410} 
-} 
-</pre></td> 
-</tr> 
-<tr id="biernacki_m99a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Biernacki; G. Celeux &amp; G. Govaert. 
-   <I><B>An improvement of the NEC criterion for assessing the number of clusters in a mixture model</B></I> 
-   Pattern Recognition Letters,&nbsp; 
-         
-         
-         
-        Volume 20,  
-         
-   Pages 267-272,  
-    
-   1999.  
-       
-    
-   <a href="javascript:toggleInfo('biernacki_m99a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_biernacki_m99a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{biernacki_m99a, 
-  author = {Biernacki, C. and G. Celeux and G. Govaert}, 
-  title = {An improvement of the NEC criterion for assessing the number of clusters in a mixture model}, 
-  journal = {Pattern Recognition Letters}, 
-  year = {1999}, 
-  volume = {20}, 
-  pages = {267-272} 
-} 
-</pre></td> 
-</tr> 
-<tr id="biernacki_m99b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Biernacki &amp; G. Govaert. 
-   <I><B>Choosing Models in Model-Based Clustering and Discriminant Analysis</B></I> 
-   Journal of Statistical Computation and Simulation,&nbsp; 
-         
-         
-         
-        Volume 64,  
-         
-   Pages 49-71,  
-    
-   1999.  
-       
-    
-   <a href="javascript:toggleInfo('biernacki_m99b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_biernacki_m99b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{biernacki_m99b, 
-  author = {Biernacki, C. and G. Govaert}, 
-  title = {Choosing Models in Model-Based Clustering and Discriminant Analysis}, 
-  journal = {Journal of Statistical Computation and Simulation}, 
-  year = {1999}, 
-  volume = {64}, 
-  pages = {49-71} 
-} 
-</pre></td> 
-</tr> 
-<tr id="bzioui_m99a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        M. Bzioui; M. Nadif &amp; G. Govaert. 
-   <I><B>Mod&egrave;le de m&eacute;lange crois&eacute;, estimation et classification</B></I> 
-   ASU'99, XXXIieme journ&eacute;es de Statistiques,&nbsp; 
-        Grenoble,  
-        mai,  
-         
-         
-         
-   Pages 107-110,  
-    
-   1999.  
-       
-    
-   <a href="javascript:toggleInfo('bzioui_m99a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_bzioui_m99a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{bzioui_m99a, 
-  author = {Bzioui, M. and Nadif, M. and Govaert, G.}, 
-  title = {Mod{\`e}le de m{\'e}lange crois{\'e}, estimation et classification}, 
-  booktitle = {ASU'99, XXXI\ieme journ{\'e}es de Statistiques}, 
-  address = {Grenoble}, 
-  month = {mai}, 
-  year = {1999}, 
-  pages = {107-110} 
-} 
-</pre></td> 
-</tr> 
-<tr id="bzioui_m99b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        M. Bzioui; M. Nadif &amp; G. Govaert. 
-   <I><B>M&eacute;langes de Bernoulli et Gaussiens dans la classification crois&eacute;e</B></I> 
-   SFC-99, 7e journ&eacute;es de Classification,&nbsp; 
-        Nancy,  
-        Septembre,  
-         
-         
-         
-   Pages 165-172,  
-    
-   1999.  
-       
-    
-   <a href="javascript:toggleInfo('bzioui_m99b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_bzioui_m99b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{bzioui_m99b, 
-  author = {Bzioui, M. and Nadif, M. and Govaert, G.}, 
-  title = {M{\'e}langes de Bernoulli et Gaussiens dans la classification crois{\'e}e}, 
-  booktitle = {SFC-99, 7e journ{\'e}es de Classification}, 
-  address = {Nancy}, 
-  month = {Septembre}, 
-  year = {1999}, 
-  pages = {165-172} 
-} 
-</pre></td> 
-</tr> 
-<tr id="dang_m99a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        M. Dang &amp; G. Govaert. 
-   <I><B>Clustering of Spatial Incomplete Data Using a Fuzzy Classifying Likelihood</B></I> 
-   14th International Workshop on Statistical Modelling,&nbsp; 
-        Graz (Austria),  
-        July, 19-23,  
-         
-         
-         
-   Pages 150-157,  
-    
-   1999.  
-       
-    
-   <a href="javascript:toggleInfo('dang_m99a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_dang_m99a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{dang_m99a, 
-  author = {Dang, M. and Govaert, G.}, 
-  title = {Clustering of Spatial Incomplete Data Using a Fuzzy Classifying Likelihood}, 
-  booktitle = {14th International Workshop on Statistical Modelling}, 
-  address = {Graz (Austria)}, 
-  month = {July, 19-23}, 
-  year = {1999}, 
-  pages = {150-157} 
-} 
-</pre></td> 
-</tr> 
-<tr id="dang_m99b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        M. Dang &amp; G. Govaert. 
-   <I><B>Clustering of Spatial by Optimizing a Fuzzy Classifying Likelihood</B></I> 
-   Second European Conference on Highly Structured Stochastic Systems,&nbsp; 
-        Pavia (Italy),  
-        14 - 18 September,  
-         
-         
-         
-   Pages 78-81,  
-    
-   1999.  
-       
-    
-   <a href="javascript:toggleInfo('dang_m99b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_dang_m99b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{dang_m99b, 
-  author = {Dang, M. and Govaert, G.}, 
-  title = {Clustering of Spatial by Optimizing a Fuzzy Classifying Likelihood}, 
-  booktitle = {Second European Conference on Highly Structured Stochastic Systems}, 
-  address = {Pavia (Italy)}, 
-  month = {14 - 18 September}, 
-  year = {1999}, 
-  pages = {78-81} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m99" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert. 
-   <I><B>Classification automatique et mod&egrave;le de m&eacute;lange, conf&eacute;rence invit&eacute;e</B></I> 
-   ASU'99, XXXIieme journ&eacute;es de Statistiques,&nbsp; 
-        Grenoble,  
-        mai,  
-         
-         
-         
-   Pages 99-102,  
-    
-   1999.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m99','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m99" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{govaert_m99, 
-  author = {Govaert, G.}, 
-  title = {Classification automatique et mod{\`e}le de m{\'e}lange, conf{\'e}rence invit{\'e}e}, 
-  booktitle = {ASU'99, XXXI\ieme journ{\'e}es de Statistiques}, 
-  address = {Grenoble}, 
-  month = {mai}, 
-  year = {1999}, 
-  pages = {99-102} 
-} 
-</pre></td> 
-</tr> 
-<tr id="lambert_m99" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        A. Lambert; M. Dang &amp; G. Govaert. 
-   <I><B>Generating validity regions using markovian spatial clustering</B></I> 
-   9-th Int. conf. on Advanced Robotics,&nbsp; 
-        Tokyo (Japan),  
-         
-         
-         
-         
-   Pages 369-374,  
-    
-   1999.  
-       
-    
-   <a href="javascript:toggleInfo('lambert_m99','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_lambert_m99" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{lambert_m99, 
-  author = {Lambert, A. and Dang, M. and Govaert, G.}, 
-  title = {Generating validity regions using markovian spatial clustering}, 
-  booktitle = {9-th Int. conf. on Advanced Robotics}, 
-  address = {Tokyo (Japan)}, 
-  year = {1999}, 
-  pages = {369-374} 
-} 
-</pre></td> 
-</tr> 
-</tbody> 
- 
-    </table> 
- 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <h3>1998</h3> 
-    <table id="qstable" border="0"> 
-      <tbody><tr id="ambroise_m98" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Ambroise &amp; G. Govaert. 
-   <I><B>Convergence of an EM-type algorithm for spatial clustering</B></I> 
-   Pattern Recognition Letters,&nbsp; 
-         
-         
-         
-        Volume 19,  
-         
-   Pages 919-927,  
-    
-   1998.  
-       
-    
-   <a href="javascript:toggleInfo('ambroise_m98','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_ambroise_m98" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{ambroise_m98, 
-  author = {Ambroise, C. and Govaert, G.}, 
-  title = {Convergence of an {EM}-type algorithm for spatial clustering}, 
-  journal = {Pattern Recognition Letters}, 
-  year = {1998}, 
-  volume = {19}, 
-  pages = {919-927} 
-} 
-</pre></td> 
-</tr> 
-<tr id="biernacki_m98a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Biernacki &amp; G. Govaert. 
-   <I><B>Choosing Models in Model-based Clustering and Discriminant Analysis</B></I> 
-   ,&nbsp; 
-        Le Chesnay, France,  
-        October,  
-         
-         
-        Number 3509,  
-    
-    
-   1998.  
-       
-    
-   <a href="javascript:toggleInfo('biernacki_m98a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_biernacki_m98a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@techreport{biernacki_m98a, 
-  author = {Biernacki, C. and Govaert, G.}, 
-  title = {Choosing Models in Model-based Clustering and Discriminant Analysis}, 
-  address = {Le Chesnay, France}, 
-  month = {October}, 
-  year = {1998}, 
-  number = {3509} 
-} 
-</pre></td> 
-</tr> 
-<tr id="biernacki_m98b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Biernacki, C.and Celeux &amp; G. Govaert. 
-   <I><B>Assessing a Mixture Model for Clustering with the Integrated Classification Likelihood</B></I> 
-   ,&nbsp; 
-        Le Chesnay, France,  
-        October,  
-         
-         
-        Number 3521,  
-    
-    
-   1998.  
-       
-    
-   <a href="javascript:toggleInfo('biernacki_m98b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_biernacki_m98b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@techreport{biernacki_m98b, 
-  author = {Biernacki, C.and Celeux, G. and Govaert, G.}, 
-  title = {Assessing a Mixture Model for Clustering with the Integrated Classification Likelihood}, 
-  address = {Le Chesnay, France}, 
-  month = {October}, 
-  year = {1998}, 
-  number = {3521} 
-} 
-</pre></td> 
-</tr> 
-<tr id="bzioui_m98" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        M. Bzioui; M. Nadif &amp; G. Govaert. 
-   <I><B>Classification crois&eacute;e et mod&egrave;le</B></I> 
-   ASU'98, XXXieme journ&eacute;es de Statistiques,&nbsp; 
-        Rennes,  
-        mai,  
-         
-         
-         
-   Pages 86-88,  
-    
-   1998.  
-       
-    
-   <a href="javascript:toggleInfo('bzioui_m98','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_bzioui_m98" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{bzioui_m98, 
-  author = {Bzioui, M. and Nadif, M. and Govaert, G.}, 
-  title = {Classification crois{\'e}e et mod{\`e}le}, 
-  booktitle = {ASU'98, XXXieme journ{\'e}es de Statistiques}, 
-  address = {Rennes}, 
-  month = {mai}, 
-  year = {1998}, 
-  pages = {86-88} 
-} 
-</pre></td> 
-</tr> 
-<tr id="dang_m98a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        M. Dang &amp; G. Govaert. 
-   <I><B>Fuzzy Clustering of Spatial Binary Data</B></I> 
-   Kybernetika,&nbsp; 
-         
-         
-         
-        Volume 34,  
-        Number 4,  
-   Pages 393-398,  
-    
-   1998.  
-       
-    
-   <a href="javascript:toggleInfo('dang_m98a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_dang_m98a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{dang_m98a, 
-  author = {Dang, M. and Govaert, G.}, 
-  title = {Fuzzy Clustering of Spatial Binary Data}, 
-  journal = {Kybernetika}, 
-  year = {1998}, 
-  volume = {34}, 
-  number = {4}, 
-  pages = {393-398} 
-} 
-</pre></td> 
-</tr> 
-<tr id="dang_m98b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        M. Dang &amp; G. Govaert. 
-   <I><B>Spatial Fuzzy Clustering using EM and Markov Random Fields</B></I> 
-   International Journal of System Research and Information Science,&nbsp; 
-         
-         
-         
-        Volume 8,  
-        Number 4,  
-   Pages 183-202,  
-    
-   1998.  
-       
-    
-   <a href="javascript:toggleInfo('dang_m98b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_dang_m98b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{dang_m98b, 
-  author = {Dang, M. and Govaert, G.}, 
-  title = {Spatial Fuzzy Clustering using {EM} and Markov Random Fields}, 
-  journal = {International Journal of System Research and Information Science}, 
-  year = {1998}, 
-  volume = {8}, 
-  number = {4}, 
-  pages = {183-202} 
-} 
-</pre></td> 
-</tr> 
-<tr id="dang_m98c" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        M. Dang &amp; G. Govaert. 
-   <I><B>Classification automatique de donn&eacute;es spatiales incompl&egrave;tes</B></I> 
-   ASU'98, XXXieme journ&eacute;es de Statistiques,&nbsp; 
-        Rennes,  
-        mai,  
-         
-         
-         
-   Pages 153-155,  
-    
-   1998.  
-       
-    
-   <a href="javascript:toggleInfo('dang_m98c','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_dang_m98c" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{dang_m98c, 
-  author = {Dang, M. and Govaert, G.}, 
-  title = {Classification automatique de donn{\'e}es spatiales incompl{\`e}tes}, 
-  booktitle = {ASU'98, XXXieme journ{\'e}es de Statistiques}, 
-  address = {Rennes}, 
-  month = {mai}, 
-  year = {1998}, 
-  pages = {153-155} 
-} 
-</pre></td> 
-</tr> 
-<tr id="dang_m98d" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        M. Dang &amp; G. Govaert. 
-   <I><B>A Clustering for Spatial Data: Evaluating Different Strategies</B></I> 
-   IFCS-98, 6th Conference of the International Federation of Classification Societies,&nbsp; 
-        R&ocirc;me,  
-        21-24 July,  
-         
-         
-         
-   Pages 96-99,  
-    
-   1998.  
-       
-    
-   <a href="javascript:toggleInfo('dang_m98d','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_dang_m98d" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{dang_m98d, 
-  author = {Dang, M. and Govaert, G.}, 
-  title = {A Clustering for Spatial Data: Evaluating Different Strategies}, 
-  booktitle = {IFCS-98, 6th Conference of the International Federation of Classification Societies}, 
-  address = {R\^ome}, 
-  month = {21-24 July}, 
-  year = {1998}, 
-  pages = {96-99} 
-} 
-</pre></td> 
-</tr> 
-<tr id="dang_m98e" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        M. Dang &amp; G. Govaert. 
-   <I><B>Spatial Clustering Techniques: an Experimental Comparison</B></I> 
-   COMPSTAT 1998,&nbsp; 
-        Bristol (England),  
-        24-28 August,  
-         
-         
-         
-    
-    
-   1998.  
-       
-    
-   <a href="javascript:toggleInfo('dang_m98e','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_dang_m98e" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{dang_m98e, 
-  author = {Dang, M. and Govaert, G.}, 
-  title = {Spatial Clustering Techniques: an Experimental Comparison}, 
-  booktitle = {COMPSTAT 1998}, 
-  address = {Bristol (England)}, 
-  month = {24-28 August}, 
-  year = {1998} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m98" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert. 
-   <I><B>Classification Automatique et mod&egrave;le de m&eacute;lange</B></I> 
-   SFC-98, 6e journ&eacute;es de Classification,&nbsp; 
-        Montpellier,  
-        21-23 Septembre,  
-         
-         
-         
-    
-    
-   1998.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m98','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m98" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{govaert_m98, 
-  author = {G. Govaert}, 
-  title = {Classification Automatique et mod{\`e}le de m{\'e}lange}, 
-  booktitle = {SFC-98, 6e journ{\'e}es de Classification}, 
-  address = {Montpellier}, 
-  month = {21-23 Septembre}, 
-  year = {1998} 
-} 
-</pre></td> 
-</tr> 
-<tr id="nadif_m98" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        M. Nadif &amp; G. Govaert. 
-   <I><B>Clustering for binary data and mixture models: Choice of the model</B></I> 
-   Applied Stochastic Models and Data Analysis,&nbsp; 
-         
-         
-         
-        Volume 13,  
-         
-   Pages 269-278,  
-    
-   1998.  
-       
-    
-   <a href="javascript:toggleInfo('nadif_m98','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_nadif_m98" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{nadif_m98, 
-  author = {Nadif, M. and Govaert, G.}, 
-  title = {Clustering for binary data and mixture models: Choice of the model}, 
-  journal = {Applied Stochastic Models and Data Analysis}, 
-  year = {1998}, 
-  volume = {13}, 
-  pages = {269-278} 
-} 
-</pre></td> 
-</tr> 
-</tbody> 
- 
-    </table> 
- 
- 
- 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <h3>1997</h3> 
-    <table id="qstable" border="0"> 
-      <tbody><tr id="ambroise_m97b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        A. Ambroise &amp; G. Govaert. 
-   <I><B>Spatial Clustering Based on Both Classified and Unclassified Observations</B></I> 
-   10th European Colloquium on Theoretical and Quantitative Geography,&nbsp; 
-        Rostock, Germany,  
-        September,  
-         
-         
-         
-    
-    
-   1997.  
-       
-    
-   <a href="javascript:toggleInfo('ambroise_m97b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_ambroise_m97b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{ambroise_m97b, 
-  author = {Ambroise, A. and Govaert, G.}, 
-  title = {Spatial Clustering Based on Both Classified and Unclassified Observations}, 
-  booktitle = {10th European Colloquium on Theoretical and Quantitative Geography}, 
-  address = {Rostock, Germany}, 
-  month = {September}, 
-  year = {1997} 
-} 
-</pre></td> 
-</tr> 
-<tr id="ambroise_m97a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Ambroise; M. V. Dang &amp; G. Govaert. 
-   <I><B>Clustering of Spatial Data by The EM Algorithm</B></I> 
-   Geostatistics for Environmental Applications,&nbsp; 
-         
-         
-        Quantitative Geology and Geostatistics,  
-        Volume 9,  
-         
-   Pages 493-504,  
-   Kluwer Academic Publisher,  
-   1997.  
-       
-    
-   <a href="javascript:toggleInfo('ambroise_m97a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_ambroise_m97a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@incollection{ambroise_m97a, 
-  author = {Ambroise, C. and Dang, M. V. and Govaert, G.}, 
-  title = {Clustering of Spatial Data by The {EM} Algorithm}, 
-  booktitle = {Geostatistics for Environmental Applications}, 
-  publisher = {Kluwer Academic Publisher}, 
-  year = {1997}, 
-  series = {Quantitative Geology and Geostatistics}, 
-  volume = {9}, 
-  pages = {493-504} 
-} 
-</pre></td> 
-</tr> 
-<tr id="biernacki_m97a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Biernacki &amp; G. Govaert. 
-   <I><B>Using the classification likelihood to choose the number of clusters</B></I> 
-   Computing Science and Statistics,&nbsp; 
-         
-         
-         
-        Volume 29,  
-        Number 2,  
-   Pages 451-457,  
-    
-   1997.  
-       
-    
-   <a href="javascript:toggleInfo('biernacki_m97a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_biernacki_m97a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{biernacki_m97a, 
-  author = {Biernacki, C. and Govaert, G.}, 
-  title = {Using the classification likelihood to choose the number of clusters}, 
-  journal = {Computing Science and Statistics}, 
-  year = {1997}, 
-  volume = {29}, 
-  number = {2}, 
-  pages = {451-457} 
-} 
-</pre></td> 
-</tr> 
-<tr id="biernacki_m97b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Biernacki &amp; G. Govaert. 
-   <I><B>Using the classification likelihood to choose the number of clusters</B></I> 
-   Second World Conference of the International Association for Statistical Computing,&nbsp; 
-        Pasadena, USA,  
-        February,  
-         
-         
-         
-    
-    
-   1997.  
-       
-    
-   <a href="javascript:toggleInfo('biernacki_m97b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_biernacki_m97b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{biernacki_m97b, 
-  author = {Biernacki, C. and Govaert, G.}, 
-  title = {Using the classification likelihood to choose the number of clusters}, 
-  booktitle = {Second World Conference of the International Association for Statistical Computing}, 
-  address = {Pasadena, USA}, 
-  month = {February}, 
-  year = {1997} 
-} 
-</pre></td> 
-</tr> 
-<tr id="biernacki_m97c" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Biernacki &amp; G. Govaert. 
-   <I><B>Choosing Gaussian Models in Discriminant Analysis</B></I> 
-   IV International Meeting of Multidimensional Data Analysis,&nbsp; 
-        Bilbao, Spain,  
-        September,  
-         
-         
-         
-    
-    
-   1997.  
-       
-    
-   <a href="javascript:toggleInfo('biernacki_m97c','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_biernacki_m97c" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{biernacki_m97c, 
-  author = {Biernacki, C. and Govaert, G.}, 
-  title = {Choosing Gaussian Models in Discriminant Analysis}, 
-  booktitle = {IV International Meeting of Multidimensional Data Analysis}, 
-  address = {Bilbao, Spain}, 
-  month = {September}, 
-  year = {1997} 
-} 
-</pre></td> 
-</tr> 
-<tr id="celeux_m97" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Celeux; C. Biernacki &amp; G. Govaert. 
-   <I><B>Choosing models in model-based clustering and discriminant analysis</B></I> 
-   JSM'97,&nbsp; 
-        Anaheim, USA,  
-        August,  
-         
-         
-         
-    
-    
-   1997.  
-       
-    
-   <a href="javascript:toggleInfo('celeux_m97','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_celeux_m97" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{celeux_m97, 
-  author = {Celeux, G. and Biernacki, C. and Govaert, G.}, 
-  title = {Choosing models in model-based clustering and discriminant analysis}, 
-  booktitle = {JSM'97}, 
-  address = {Anaheim, USA}, 
-  month = {August}, 
-  year = {1997} 
-} 
-</pre></td> 
-</tr> 
-<tr id="dang_m97a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        M. Dang &amp; G. Govaert. 
-   <I><B>Fuzzy Clustering of Spatial Binary Data</B></I> 
-   Worshop on Statistical Techniques in Pattern Recognition,&nbsp; 
-        Prague,  
-        June,  
-         
-         
-         
-    
-    
-   1997.  
-       
-    
-   <a href="javascript:toggleInfo('dang_m97a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_dang_m97a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{dang_m97a, 
-  author = {Dang, M. and Govaert, G.}, 
-  title = {Fuzzy Clustering of Spatial Binary Data}, 
-  booktitle = {Worshop on Statistical Techniques in Pattern Recognition}, 
-  address = {Prague}, 
-  month = {June}, 
-  year = {1997} 
-} 
-</pre></td> 
-</tr> 
-<tr id="dang_m97b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        M. Dang &amp; G. Govaert. 
-   <I><B>Classification automatique de donn&eacute;es spatiales binaires</B></I> 
-   XXIXieme journ&eacute;es de Statistiques,&nbsp; 
-        Carcassonne,  
-        mai,  
-         
-         
-         
-    
-    
-   1997.  
-       
-    
-   <a href="javascript:toggleInfo('dang_m97b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_dang_m97b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{dang_m97b, 
-  author = {Dang, M. and Govaert, G.}, 
-  title = {Classification automatique de donn{\'e}es spatiales binaires}, 
-  booktitle = {XXIXieme journ{\'e}es de Statistiques}, 
-  address = {Carcassonne}, 
-  month = {mai}, 
-  year = {1997} 
-} 
-</pre></td> 
-</tr> 
-<tr id="denoeux_m97" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        T. Denoeux &amp; G. Govaert. 
-   <I><B>Un algorithme de classification automatique non param&eacute;trique</B></I> 
-   Compte rendus de l'Acad&eacute;mie des Sciences, S&eacute;rie 1: Math&eacute;matique,&nbsp; 
-         
-         
-         
-        Volume 324,  
-        Number 6,  
-   Pages 673-678,  
-    
-   1997.  
-       
-    
-   <a href="javascript:toggleInfo('denoeux_m97','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_denoeux_m97" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{denoeux_m97, 
-  author = {Denoeux, T. and Govaert, G.}, 
-  title = {Un algorithme de classification automatique non param{\'e}trique}, 
-  journal = {Compte rendus de l'Acad{\'e}mie des Sciences, S{\'e}rie 1: Math{\'e}matique}, 
-  year = {1997}, 
-  volume = {324}, 
-  number = {6}, 
-  pages = {673-678} 
-} 
-</pre></td> 
-</tr> 
-</tbody> 
- 
-    </table> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <h3>1996</h3> 
-    <table id="qstable" border="0"> 
-<tbody><tr id="ambroise_m96c" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Ambroise; M. V. Dang &amp; G. Govaert. 
-   <I><B>Clustering of spatial data by the EM algorithm</B></I> 
-   Model-Based Clustering and Spatial Process Workshop,&nbsp; 
-        Seattle, USA,  
-        July,  
-         
-         
-         
-   Pages 263-272,  
-   University of Washington,  
-   1996.  
-       
-    
-   <a href="javascript:toggleInfo('ambroise_m96c','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_ambroise_m96c" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{ambroise_m96c, 
-  author = {Ambroise, C. and Dang, M. V. and Govaert, G.}, 
-  title = {Clustering of spatial data by the {EM} algorithm}, 
-  booktitle = {Model-Based Clustering and Spatial Process Workshop}, 
-  address = {Seattle, USA}, 
-  month = {July}, 
-  publisher = {University of Washington}, 
-  year = {1996}, 
-  pages = {263-272} 
-} 
-</pre></td> 
-</tr> 
-<tr id="ambroise_m96d" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Ambroise; M. V. Dang &amp; G. Govaert. 
-   <I><B>Clustering of spatial data by the EM algorithm</B></I> 
-   GeoENV-96, 1st European Conference on Geostatistics for Environmental Application,&nbsp; 
-        Lisbonne (Portugal),  
-        November,  
-         
-         
-         
-   Pages 20-22,  
-    
-   1996.  
-       
-    
-   <a href="javascript:toggleInfo('ambroise_m96d','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_ambroise_m96d" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{ambroise_m96d, 
-  author = {Ambroise, C. and Dang, M. V. and Govaert, G.}, 
-  title = {Clustering of spatial data by the {EM} algorithm}, 
-  booktitle = {GeoENV-96, 1st European Conference on Geostatistics for Environmental Application}, 
-  address = {Lisbonne (Portugal)}, 
-  month = {November}, 
-  year = {1996}, 
-  pages = {20-22} 
-} 
-</pre></td> 
-</tr> 
-<tr id="ambroise_m96a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Ambroise &amp; G. Govaert. 
-   <I><B>Constrained Clustering and Kohonen Self-Organizing Maps</B></I> 
-   Journal of Classification,&nbsp; 
-         
-         
-         
-        Volume 13,  
-        Number 2,  
-   Pages 299-313,  
-    
-   1996.  
-       
-    
-   <a href="javascript:toggleInfo('ambroise_m96a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_ambroise_m96a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{ambroise_m96a, 
-  author = {Ambroise, C. and Govaert, G.}, 
-  title = {Constrained Clustering and Kohonen Self-Organizing Maps}, 
-  journal = {Journal of Classification}, 
-  year = {1996}, 
-  volume = {13}, 
-  number = {2}, 
-  pages = {299-313} 
-} 
-</pre></td> 
-</tr> 
-<tr id="ambroise_m96b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Ambroise &amp; G. Govaert. 
-   <I><B>Analyzing Dissimilarity Matrices via Kohonen Maps</B></I> 
-   IFCS-96, 5th Conference of the International Federation of Classification Societies,&nbsp; 
-        Kobe (Japan),  
-        27-30 Mars,  
-         
-        Volume 2,  
-         
-   Pages 96-99,  
-    
-   1996.  
-       
-    
-   <a href="javascript:toggleInfo('ambroise_m96b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_ambroise_m96b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{ambroise_m96b, 
-  author = {Ambroise, C. and Govaert, G.}, 
-  title = {Analyzing Dissimilarity Matrices via Kohonen Maps}, 
-  booktitle = {IFCS-96, 5th Conference of the International Federation of Classification Societies}, 
-  address = {Kobe (Japan)}, 
-  month = {27-30 Mars}, 
-  year = {1996}, 
-  volume = {2}, 
-  pages = {96-99} 
-} 
-</pre></td> 
-</tr> 
-<tr id="biernacki_m96" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Biernacki &amp; G. Govaert. 
-   <I><B>Comparaison de crit&egrave;res en classification pour la d&eacute;tection de mod&egrave;les gaussiens parcimonieux</B></I> 
-   7ieme Journees de la Soci&eacute;t&eacute; Francophone de Classification,&nbsp; 
-        Vannes,  
-        Septembre,  
-         
-         
-         
-   Pages 7-10,  
-    
-   1996.  
-       
-    
-   <a href="javascript:toggleInfo('biernacki_m96','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_biernacki_m96" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{biernacki_m96, 
-  author = {Biernacki, C. and Govaert, G.}, 
-  title = {Comparaison de crit{\`e}res en classification pour la d{\'e}tection de mod{\`e}les gaussiens parcimonieux}, 
-  booktitle = {7ieme Journees de la Soci{\'e}t{\'e} Francophone de Classification}, 
-  address = {Vannes}, 
-  month = {Septembre}, 
-  year = {1996}, 
-  pages = {7-10} 
-} 
-</pre></td> 
-</tr> 
-<tr id="denoeux_m96" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        T. Denoeux &amp; G. Govaert. 
-   <I><B>Combined supervised and unsupervised learning for system diagnosis using Dempster-Shafer theory</B></I> 
-   CESA'96 IMACS Multiconference, Computational Engineering in Systems Applications. Symposium on Control, Optimization and Supervision,&nbsp; 
-        Lille,  
-        July 9-12,  
-         
-        Volume 1,  
-         
-   Pages 104-109,  
-    
-   1996.  
-       
-    
-   <a href="javascript:toggleInfo('denoeux_m96','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_denoeux_m96" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{denoeux_m96, 
-  author = {Denoeux, T. and Govaert, G.}, 
-  title = {Combined supervised and unsupervised learning for system diagnosis using Dempster-Shafer theory}, 
-  booktitle = {CESA'96 IMACS Multiconference, Computational Engineering in Systems Applications. Symposium on Control, Optimization and Supervision}, 
-  address = {Lille}, 
-  month = {July 9-12}, 
-  year = {1996}, 
-  volume = {1}, 
-  pages = {104-109} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m96b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert. 
-   <I><B>Analyse des donn&eacute;es multidimensionnelles by H. Rouanet et B. Le Roux (Book review)</B></I> 
-   Journal of Classification,&nbsp; 
-         
-         
-         
-        Volume 13,  
-        Number 1,  
-   Pages 173-174,  
-    
-   1996.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m96b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m96b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{govaert_m96b, 
-  author = {Govaert, G.}, 
-  title = {Analyse des donn{\'e}es multidimensionnelles by H. Rouanet et B. Le Roux (Book review)}, 
-  journal = {Journal of Classification}, 
-  year = {1996}, 
-  volume = {13}, 
-  number = {1}, 
-  pages = {173-174} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m96a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert &amp; N. Nadif. 
-   <I><B>Comparison of the mixture and the classification maximum likelihood in cluster analysis when data are binary</B></I> 
-   Computational Statistics and Data Analysis,&nbsp; 
-         
-         
-         
-        Volume 23,  
-         
-   Pages 65-81,  
-    
-   1996.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m96a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m96a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{govaert_m96a, 
-  author = {Govaert, G. and Nadif, N.}, 
-  title = {Comparison of the mixture and the classification maximum likelihood in cluster analysis when data are binary}, 
-  journal = {Computational Statistics and Data Analysis}, 
-  year = {1996}, 
-  volume = {23}, 
-  pages = {65-81} 
-} 
-</pre></td> 
-</tr> 
-<tr id="nadif_m96" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        M. Nadif; F. Marchetti &amp; G. Govaert. 
-   <I><B>Approche vraisemblance et vraisemblance classifiante en classification de donn&eacute;es qualitatives</B></I> 
-   XXVIII &egrave;mes Journ&eacute;es de Statistiques,&nbsp; 
-        Quebec (Canada),  
-        27-30 mai,  
-         
-         
-         
-    
-    
-   1996.  
-       
-    
-   <a href="javascript:toggleInfo('nadif_m96','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_nadif_m96" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{nadif_m96, 
-  author = {Nadif, M. and Marchetti, F. and Govaert, G. }, 
-  title = {Approche vraisemblance et vraisemblance classifiante en classification de donn{\'e}es qualitatives}, 
-  booktitle = {XXVIII {\`e}mes Journ{\'e}es de Statistiques}, 
-  address = {Quebec (Canada)}, 
-  month = {27-30 mai}, 
-  year = {1996} 
-} 
-</pre></td> 
-</tr> 
-</tbody> 
- 
-    </table> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <h3>1995</h3> 
-    <table id="qstable" border="0"> 
-<tbody><tr id="ambroise_m95a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Ambroise &amp; G Govaert. 
-   <I><B>Contiguity Constraints and the EM algorithm</B></I> 
-   International Workshop on statistical Mixture Modelling,&nbsp; 
-        Aussois (France),  
-        17-21 Septembre,  
-         
-         
-         
-    
-    
-   1995.  
-       
-    
-   <a href="javascript:toggleInfo('ambroise_m95a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_ambroise_m95a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{ambroise_m95a, 
-  author = {Ambroise, C. and Govaert, G}, 
-  title = {Contiguity Constraints and the {EM} algorithm}, 
-  booktitle = {International Workshop on statistical Mixture Modelling}, 
-  address = {Aussois (France)}, 
-  month = {17-21 Septembre}, 
-  year = {1995} 
-} 
-</pre></td> 
-</tr> 
-<tr id="ambroise_m95b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Ambroise &amp; G. Govaert. 
-   <I><B>Self-Organisation for Gaussian Parsimonious Clustering</B></I> 
-   Proceeding of ICANN1995,&nbsp; 
-        Paris,  
-        Octobre,  
-         
-        Volume 1,  
-         
-   Pages 425-430,  
-    
-   1995.  
-       
-    
-   <a href="javascript:toggleInfo('ambroise_m95b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_ambroise_m95b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{ambroise_m95b, 
-  author = {Ambroise, C. and Govaert, G.}, 
-  title = {Self-Organisation for Gaussian Parsimonious Clustering}, 
-  booktitle = {Proceeding of ICANN1995}, 
-  address = {Paris}, 
-  month = {Octobre}, 
-  year = {1995}, 
-  volume = {1}, 
-  pages = {425-430} 
-} 
-</pre></td> 
-</tr> 
-<tr id="biernacki_m95" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Biernacki &amp; G Govaert. 
-   <I><B>Penalized Criterion and Model Selection for Clustering</B></I> 
-   International Workshop on statistical Mixture Modelling,&nbsp; 
-        Aussois (France),  
-        17-21 Septembre,  
-         
-         
-         
-    
-    
-   1995.  
-       
-    
-   <a href="javascript:toggleInfo('biernacki_m95','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_biernacki_m95" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{biernacki_m95, 
-  author = {Biernacki, C. and Govaert, G}, 
-  title = {Penalized Criterion and Model Selection for Clustering}, 
-  booktitle = {International Workshop on statistical Mixture Modelling}, 
-  address = {Aussois (France)}, 
-  month = {17-21 Septembre}, 
-  year = {1995} 
-} 
-</pre></td> 
-</tr> 
-<tr id="celeux_m95" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Celeux &amp; G. Govaert. 
-   <I><B>Gaussian Parsimonious Clustering Models</B></I> 
-   Pattern Recognition,&nbsp; 
-         
-         
-         
-        Volume 28,  
-        Number 5,  
-   Pages 781-793,  
-    
-   1995.  
-       
-    
-   <a href="javascript:toggleInfo('celeux_m95','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_celeux_m95" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{celeux_m95, 
-  author = {Celeux, G. and Govaert, G.}, 
-  title = {Gaussian Parsimonious Clustering Models}, 
-  journal = {Pattern Recognition}, 
-  year = {1995}, 
-  volume = {28}, 
-  number = {5}, 
-  pages = {781-793} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m95b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        J. Fechtenbaum; C. Roux; G Govaert; M. Dougados &amp; B. Amor. 
-   <I><B>Comparaison des param&egrave;tres morphom&eacute;triques dans les populations europ&eacute;ennes</B></I> 
-   Revue du Rhumatisme, 62e ann&eacute;e,&nbsp; 
-         
-         
-         
-        Volume 10,  
-        Number abstract B124,  
-    
-    
-   1995.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m95b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m95b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{govaert_m95b, 
-  author = {Fechtenbaum, J. and Roux, C. and Govaert, G and Dougados, M. and Amor, B.}, 
-  title = {Comparaison des param{\`e}tres morphom{\'e}triques dans les populations europ{\'e}ennes}, 
-  journal = {Revue du Rhumatisme, 62e ann{\'e}e}, 
-  year = {1995}, 
-  volume = {10}, 
-  number = {abstract B124} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m95a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert. 
-   <I><B>Simultaneous Clustering of Rows and Columns</B></I> 
-   Control and Cybernetics ,&nbsp; 
-         
-         
-         
-        Volume 24,  
-        Number 4,  
-   Pages 437-458,  
-    
-   1995.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m95a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m95a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{govaert_m95a, 
-  author = {Govaert, G.}, 
-  title = {Simultaneous Clustering of Rows and Columns}, 
-  journal = {Control and Cybernetics }, 
-  year = {1995}, 
-  volume = {24}, 
-  number = {4}, 
-  pages = {437-458} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m95d" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert. 
-   <I><B>Gaussian Parsimonious Clustering Models</B></I> 
-   International Workshop on statistical Mixture Modelling,&nbsp; 
-        Aussois (France),  
-        17-21 Septembre,  
-         
-         
-         
-    
-    
-   1995.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m95d','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m95d" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{govaert_m95d, 
-  author = {Govaert, G.}, 
-  title = {Gaussian Parsimonious Clustering Models}, 
-  booktitle = {International Workshop on statistical Mixture Modelling}, 
-  address = {Aussois (France)}, 
-  month = {17-21 Septembre}, 
-  year = {1995} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m95c" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert &amp; M. Nadif. 
-   <I><B>Clustering for binary data and mixture models. Choice of the model</B></I> 
-   7th International Symposium on Applied Stochastic Models and Data Analysis,&nbsp; 
-        Dublin (Irlande),  
-        12-15 Juin,  
-         
-         
-         
-   Pages 430-439,,  
-    
-   1995.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m95c','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m95c" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{govaert_m95c, 
-  author = {Govaert, G. and Nadif, M.}, 
-  title = {Clustering for binary data and mixture models. Choice of the model}, 
-  booktitle = {7th International Symposium on Applied Stochastic Models and Data Analysis}, 
-  address = {Dublin (Irlande)}, 
-  month = {12-15 Juin}, 
-  year = {1995}, 
-  pages = {430-439,} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m95e" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert &amp; M. Van Dang. 
-   <I><B>Classification et mod&egrave;les de m&eacute;lange, m&eacute;thode de d&eacute;tection du mod&egrave;le sous-jacent</B></I> 
-   3e Journ&eacute;es de la Soci&eacute;t&eacute; Francophones de Classification,&nbsp; 
-        Namur (Belgique),  
-        28-29 Septembre,  
-         
-         
-         
-   Pages 12-13,  
-    
-   1995.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m95e','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m95e" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{govaert_m95e, 
-  author = {Govaert, G. and Van Dang, M.}, 
-  title = {Classification et mod{\`e}les de m{\'e}lange, m{\'e}thode de d{\'e}tection du mod{\`e}le sous-jacent}, 
-  booktitle = {3e Journ{\'e}es de la Soci{\'e}t{\'e} Francophones de Classification}, 
-  address = {Namur (Belgique)}, 
-  month = {28-29 Septembre}, 
-  year = {1995}, 
-  pages = {12-13} 
-} 
-</pre></td> 
-</tr> 
-</tbody> 
- 
- 
- 
-    </table> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <h3>1994</h3> 
-    <table id="qstable" border="0"> 
- 
-<tbody><tr id="ambroise_m94a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Ambroise &amp; G. Govaert. 
-   <I><B>Mapping Water Preserving Quality with Topology Preserving Algorithmms</B></I> 
-   Conference on Environmetrics,&nbsp; 
-        Burlington (Canada),  
-        12-15 August,  
-         
-         
-         
-    
-    
-   1994.  
-       
-    
-   <a href="javascript:toggleInfo('ambroise_m94a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_ambroise_m94a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{ambroise_m94a, 
-  author = {Ambroise, C. and Govaert, G.}, 
-  title = {Mapping Water Preserving Quality with Topology Preserving Algorithmms}, 
-  booktitle = {Conference on Environmetrics}, 
-  address = {Burlington (Canada)}, 
-  month = {12-15 August}, 
-  year = {1994} 
-} 
-</pre></td> 
-</tr> 
-<tr id="ambroise_m94b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        C. Ambroise &amp; G. Govaert. 
-   <I><B>Une Interpr&eacute;tation des Cartes Auto-organisatrices de Kohonen via l'Algorithme EM </B></I> 
-   Secondes Rencontres de la Soci&eacute;t&eacute; Francophone de Classification,&nbsp; 
-        Tours (France),  
-        12-13 Septembre,  
-         
-         
-         
-    
-    
-   1994.  
-       
-    
-   <a href="javascript:toggleInfo('ambroise_m94b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_ambroise_m94b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{ambroise_m94b, 
-  author = {Ambroise, C. and Govaert, G.}, 
-  title = {Une Interpr{\'e}tation des Cartes Auto-organi\-satrices de Kohonen via l'Algorithme {EM} }, 
-  booktitle = {Secondes Rencontres de la Soci{\'e}t{\'e} Francophone de Classification}, 
-  address = {Tours (France)}, 
-  month = {12-13 Septembre}, 
-  year = {1994} 
-} 
-</pre></td> 
-</tr> 
-<tr id="celeux_m94a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Celeux &amp; G. Govaert. 
-   <I><B>Fuzzy Clustering and Mixture Models</B></I> 
-   COMPSTAT 1994,&nbsp; 
-        Vienne (Autriche),  
-        22-26 August,  
-         
-         
-         
-    
-    
-   1994.  
-       
-    
-   <a href="javascript:toggleInfo('celeux_m94a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_celeux_m94a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{celeux_m94a, 
-  author = {Celeux, G. and Govaert, G.}, 
-  title = {Fuzzy Clustering and Mixture Models}, 
-  booktitle = {COMPSTAT 1994}, 
-  address = {Vienne (Autriche)}, 
-  month = {22-26 August}, 
-  year = {1994} 
-} 
-</pre></td> 
-</tr> 
-<tr id="collin_m94a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        I. Collin; D. Meizel; N. Le Fort &amp; G. Govaert. 
-   <I><B>Local Map Design and Task Fonction Planning for Mobile Robots</B></I> 
-   International Symposium on Intelligent Robotic System'94,&nbsp; 
-        Grenoble,  
-        11-15 Juillet,  
-         
-         
-         
-    
-    
-   1994.  
-       
-    
-   <a href="javascript:toggleInfo('collin_m94a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_collin_m94a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{collin_m94a, 
-  author = {Collin, I. and Meizel, D. and Le Fort, N. and Govaert, G.}, 
-  title = {Local Map Design and Task Fonction Planning for Mobile Robots}, 
-  booktitle = {International Symposium on Intelligent Robotic System'94}, 
-  address = {Grenoble}, 
-  month = {11-15 Juillet}, 
-  year = {1994} 
-} 
-</pre></td> 
-</tr> 
-<tr id="collin_m94b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        I. Collin; D. Meizel; N. Le Fort &amp; G. Govaert. 
-   <I><B>Local Map Design and Task Fonction Planning for Mobile Robots</B></I> 
-   IROS'94,&nbsp; 
-        Munich (Allemagne),  
-        12-16 September,  
-         
-         
-         
-    
-    
-   1994.  
-       
-    
-   <a href="javascript:toggleInfo('collin_m94b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_collin_m94b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{collin_m94b, 
-  author = {Collin, I. and Meizel, D. and Le Fort, N. and Govaert, G.}, 
-  title = {Local Map Design and Task Fonction Planning for Mobile Robots}, 
-  booktitle = {IROS'94}, 
-  address = {Munich (Allemagne)}, 
-  month = {12-16 September}, 
-  year = {1994} 
-} 
-</pre></td> 
-</tr> 
-<tr id="celeux_m94b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        Celeux G. &amp; Govaert G.. 
-   <I><B>Gaussian Parsimonious Clustering Models</B></I> 
-   Workshop on Mixture Modeling in Cluster Analysis and Times Series,&nbsp; 
-        Seattle (USA),  
-        july,  
-         
-         
-         
-   Pages 181-203,  
-   University of Washington,  
-   1994.  
-       
-    
-   <a href="javascript:toggleInfo('celeux_m94b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_celeux_m94b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{celeux_m94b, 
-  author = {Celeux G. and Govaert G.}, 
-  title = {Gaussian Parsimonious Clustering Models}, 
-  booktitle = {Workshop on Mixture Modeling in Cluster Analysis and Times Series}, 
-  address = {Seattle (USA)}, 
-  month = {july}, 
-  publisher = {University of Washington}, 
-  year = {1994}, 
-  pages = {181-203} 
-} 
-</pre></td> 
-</tr> 
-<tr id="marchetti_m94" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        F. Marchetti; M. Nadif &amp; G. Govaert. 
-   <I><B>Comparaison de M&eacute;thodes de Classification de Donn&eacute;es Qualitatives Bas&eacute;es sur des Mod&egrave;les Probabilistes</B></I> 
-   XXVI &egrave;mes Journ&eacute;es de Statistiques,&nbsp; 
-        Neuch&acirc;tel (Suisse),  
-        24-27 mai,  
-         
-         
-         
-    
-    
-   1994.  
-       
-    
-   <a href="javascript:toggleInfo('marchetti_m94','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_marchetti_m94" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{marchetti_m94, 
-  author = {Marchetti, F. and Nadif, M. and Govaert, G. }, 
-  title = {Comparaison de M{\'e}thodes de Classification de Donn{\'e}es Qualitatives Bas{\'e}es sur des Mod{\`e}les Probabilistes}, 
-  booktitle = {XXVI {\`e}mes Journ{\'e}es de Statistiques}, 
-  address = {Neuch{\^a}tel (Suisse)}, 
-  month = {24-27 mai}, 
-  year = {1994} 
-} 
-</pre></td> 
-</tr> 
-</tbody> 
- 
-    </table> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <h3>1993</h3> 
-    <table id="qstable" border="0"> 
-<tbody><tr id="celeux_m93a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Celeux &amp; G. Govaert. 
-   <I><B>Comparison of the mixture and the classification maximum likelihood in cluster analysis</B></I> 
-   J. Statist. Comput. Simul.,&nbsp; 
-         
-         
-         
-        Volume 47,  
-         
-   Pages 127-146,  
-    
-   1993.  
-       
-    
-   <a href="javascript:toggleInfo('celeux_m93a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_celeux_m93a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{celeux_m93a, 
-  author = {Celeux,G. and Govaert, G.}, 
-  title = {Comparison of the mixture and the classification maximum likelihood in cluster analysis}, 
-  journal = {J. Statist. Comput. Simul.}, 
-  year = {1993}, 
-  volume = {47}, 
-  pages = {127-146} 
-} 
-</pre></td> 
-</tr> 
-<tr id="celeux_m93b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Celeux &amp; G. Govaert. 
-   <I><B>A Gaussian Parsimonious Clustering Model Allowing different size clusters</B></I> 
-   IFCS 93, 4th Conference of the International Federation of Classification Societies,&nbsp; 
-        Paris (France),  
-         
-         
-         
-         
-    
-    
-   1993.  
-       
-    
-   <a href="javascript:toggleInfo('celeux_m93b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_celeux_m93b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{celeux_m93b, 
-  author = {Celeux, G. and Govaert, G.}, 
-  title = {A Gaussian Parsimonious Clustering Model Allowing different size clusters}, 
-  booktitle = {IFCS 93, 4th Conference of the International Federation of Classification Societies}, 
-  address = {Paris (France)}, 
-  year = {1993} 
-} 
-</pre></td> 
-</tr> 
-<tr id="celeux_m93c" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Celeux &amp; G. Govaert. 
-   <I><B>A Gaussian Parsimonious Clustering Model Allowing different size clusters</B></I> 
-   ,&nbsp; 
-        Le Chesnay, France,  
-        Setembre,  
-         
-         
-        Number 2028,  
-    
-    
-   1993.  
-       
-    
-   <a href="javascript:toggleInfo('celeux_m93c','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_celeux_m93c" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@techreport{celeux_m93c, 
-  author = {Celeux, G. and Govaert, G.}, 
-  title = {A Gaussian Parsimonious Clustering Model Allowing different size clusters}, 
-  address = {Le Chesnay, France}, 
-  month = {Setembre}, 
-  year = {1993}, 
-  number = {2028} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m93a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert &amp; M Nadif. 
-   <I><B>Comparaison des approches vraisemblance et vraisemblance Classifiante en Classification de donn&eacute;es binaires</B></I> 
-   XXVi&egrave;mes Journ&eacute;es de Statistiques,&nbsp; 
-        Vannes (France),  
-         
-         
-         
-         
-    
-    
-   1993.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m93a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m93a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{govaert_m93a, 
-  author = {Govaert, G. and Nadif, M}, 
-  title = {Comparaison des approches vraisemblance et vraisemblance Classifiante en Classification de donn{\'e}es binaires}, 
-  booktitle = {XXVi{\`e}mes Journ{\'e}es de Statistiques}, 
-  address = {Vannes (France)}, 
-  year = {1993} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m93b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert &amp; M. Nadif. 
-   <I><B>Mod&egrave;les de m&eacute;langes binaires; approches vraisemblance et vraisemblance classifiante</B></I> 
-   Rencontres Franco-Belges des statisticiens,&nbsp; 
-        Namur (Belgique),  
-         
-         
-         
-         
-    
-    
-   1993.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m93b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m93b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{govaert_m93b, 
-  author = {Govaert, G. and Nadif, M.}, 
-  title = {Mod{\`e}les de m{\'e}langes binaires; approches vraisemblance et vraisemblance classifiante}, 
-  booktitle = {Rencontres Franco-Belges des statisticiens}, 
-  address = {Namur (Belgique)}, 
-  year = {1993} 
-} 
-</pre></td> 
-</tr> 
-<tr id="nadif_m93" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        M. Nadif &amp; G. Govaert. 
-   <I><B>Binary clustering with missing data</B></I> 
-   Applied Stochastic Models and Data Analysis,&nbsp; 
-         
-         
-         
-        Volume 10,  
-         
-   Pages 59-71,  
-    
-   1993.  
-       
-    
-   <a href="javascript:toggleInfo('nadif_m93','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_nadif_m93" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{nadif_m93, 
-  author = {Nadif, M. and Govaert, G.}, 
-  title = {Binary clustering with missing data}, 
-  journal = {Applied Stochastic Models and Data Analysis}, 
-  year = {1993}, 
-  volume = {10}, 
-  pages = {59-71} 
-} 
-</pre></td> 
-</tr> 
-</tbody> 
- 
- 
-    </table> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <h3>1992</h3> 
-    <table id="qstable" border="0"> 
-<tbody><tr id="celeux_m92a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Celeux &amp; G. Govaert. 
-   <I><B>A Classification EM Algorithm for Clustering and Two Stochastic Versions</B></I> 
-   Computational Statistics and Data Analysis,&nbsp; 
-         
-         
-         
-        Volume 14,  
-        Number 3,  
-   Pages 315-332,  
-    
-   1992.  
-       
-    
-   <a href="javascript:toggleInfo('celeux_m92a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_celeux_m92a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{celeux_m92a, 
-  author = {Celeux,G. and Govaert, G.}, 
-  title = {A Classification {EM} Algorithm for Clustering and Two Stochastic Versions}, 
-  journal = {Computational Statistics and Data Analysis}, 
-  year = {1992}, 
-  volume = {14}, 
-  number = {3}, 
-  pages = {315-332} 
-} 
-</pre></td> 
-</tr> 
-<tr id="celeux_m92b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Celeux &amp; G. Govaert. 
-   <I><B>A Gaussian Parsimonious Clustering Model Allowing different size clusters</B></I> 
-   7th International Conference on Multivariate Analysis,&nbsp; 
-        Barcelone (Espagne),  
-         
-         
-         
-         
-    
-    
-   1992.  
-       
-    
-   <a href="javascript:toggleInfo('celeux_m92b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_celeux_m92b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{celeux_m92b, 
-  author = {Celeux, G. and Govaert, G.}, 
-  title = {A Gaussian Parsimonious Clustering Model Allowing different size clusters}, 
-  booktitle = {7th International Conference on Multivariate Analysis}, 
-  address = {Barcelone (Espagne)}, 
-  year = {1992} 
-} 
-</pre></td> 
-</tr> 
-</tbody> 
- 
- 
-    </table> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <h3>1991</h3> 
-    <table id="qstable" border="0"> 
-<tbody><tr id="celeux_m91a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Celeux &amp; G. Govaert. 
-   <I><B>Clustering Criteria for Discrete Data and Latent Class Models</B></I> 
-   Journal of Classification,&nbsp; 
-         
-         
-         
-        Volume 8,  
-        Number 2,  
-   Pages 157-176,  
-    
-   1991.  
-       
-    
-   <a href="javascript:toggleInfo('celeux_m91a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_celeux_m91a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{celeux_m91a, 
-  author = {Celeux,G. and Govaert, G.}, 
-  title = {Clustering Criteria for Discrete Data and Latent Class Models}, 
-  journal = {Journal of Classification}, 
-  year = {1991}, 
-  volume = {8}, 
-  number = {2}, 
-  pages = {157-176} 
-} 
-</pre></td> 
-</tr> 
-<tr id="celeux_m91b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Celeux &amp; G. Govaert. 
-   <I><B>Practical Behaviour of a penalized CML criterion for clustering small samples</B></I> 
-   IFCS 91, 3th Conference of the International Federation of Classification Societies,&nbsp; 
-        Edimbourg (Scotland),  
-         
-         
-         
-         
-    
-    
-   1991.  
-       
-    
-   <a href="javascript:toggleInfo('celeux_m91b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_celeux_m91b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{celeux_m91b, 
-  author = {Celeux, G. and Govaert, G.}, 
-  title = {Practical Behaviour of a penalized CML criterion for clustering small samples}, 
-  booktitle = {IFCS 91, 3th Conference of the International Federation of Classification Societies}, 
-  address = {Edimbourg (Scotland)}, 
-  year = {1991} 
-} 
-</pre></td> 
-</tr> 
-<tr id="celeux_m91c" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Celeux &amp; G. Govaert. 
-   <I><B>A classification EM algorithm for clustering and two stochastic versions</B></I> 
-   ,&nbsp; 
-        Le Chesnay, France,  
-        Setembre,  
-         
-         
-        Number 1364,  
-    
-    
-   1991.  
-       
-    
-   <a href="javascript:toggleInfo('celeux_m91c','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_celeux_m91c" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@techreport{celeux_m91c, 
-  author = {Celeux, G. and Govaert, G.}, 
-  title = {A classification {EM} algorithm for clustering and two stochastic versions}, 
-  address = {Le Chesnay, France}, 
-  month = {Setembre}, 
-  year = {1991}, 
-  number = {1364} 
-} 
-</pre></td> 
-</tr> 
-<tr id="celeux_m91d" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Celeux &amp; G. Govaert. 
-   <I><B>Comparison of the mixture and the classification maximum likelihood in cluster analysis</B></I> 
-   ,&nbsp; 
-        Le Chesnay, France,  
-        Setembre,  
-         
-         
-        Number 1517,  
-    
-    
-   1991.  
-       
-    
-   <a href="javascript:toggleInfo('celeux_m91d','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_celeux_m91d" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@techreport{celeux_m91d, 
-  author = {Celeux, G. and Govaert, G.}, 
-  title = {Comparison of the mixture and the classification maximum likelihood in cluster analysis}, 
-  address = {Le Chesnay, France}, 
-  month = {Setembre}, 
-  year = {1991}, 
-  number = {1517} 
-} 
-</pre></td> 
-</tr> 
-</tbody> 
- 
-    </table> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <h3>1990</h3> 
-    <table id="qstable" border="0"> 
-<tbody><tr id="celeux_m90" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Celeux &amp; G. Govaert. 
-   <I><B>Stochastic Algorithms for Clustering</B></I> 
-   Compstat 2000, Prodeedings in Computational Statistics, 14th Symposium,&nbsp; 
-        Dubrovnik,  
-         
-         
-         
-         
-    
-    
-   1990.  
-       
-    
-   <a href="javascript:toggleInfo('celeux_m90','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_celeux_m90" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{celeux_m90, 
-  author = {Celeux, G. and Govaert, G.}, 
-  title = {Stochastic Algorithms for Clustering}, 
-  booktitle = {Compstat 2000, Prodeedings in Computational Statistics, 14th Symposium}, 
-  address = {Dubrovnik}, 
-  year = {1990} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m90a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert. 
-   <I><B>Classification binaire et mod&egrave;les</B></I> 
-   Revue de Statistique Appliqu&eacute;e,&nbsp; 
-         
-         
-         
-        Volume XXXVIII,  
-        Number 1,  
-   Pages 67-81,  
-    
-   1990.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m90a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m90a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{govaert_m90a, 
-  author = {Govaert, G.}, 
-  title = {Classification binaire et mod{\`e}les}, 
-  journal = {Revue de Statistique Appliqu{\'e}e}, 
-  year = {1990}, 
-  volume = {XXXVIII}, 
-  number = {1}, 
-  pages = {67-81} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m90b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert. 
-   <I><B>Mod&egrave;le de classification et distance dans le cas discret</B></I> 
-   ,&nbsp; 
-        Compi&egrave;gne, France,  
-         
-         
-         
-         
-    
-    
-   1990.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m90b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m90b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@techreport{govaert_m90b, 
-  author = {Govaert, G.}, 
-  title = {Mod{\`e}le de classification et distance dans le cas discret}, 
-  address = {Compi{\`e}gne, France}, 
-  year = {1990} 
-} 
-</pre></td> 
-</tr> 
-</tbody> 
- 
- 
-    </table> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <!--=======================================================================================================--> 
-    <h3>Before 1990</h3> 
-    <table id="qstable" border="0"> 
-<tbody><tr id="celeux_m89a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Celeux; E. Diday; G. Govaert; Y. Lechevallier &amp; H. Ralambondrainy. 
-   <I><B> Classification automatique des donn&eacute;es : environnement statistique et informatique </B></I> 
-   ,&nbsp; 
-        Paris,  
-         
-         
-         
-         
-    
-   Dunod,  
-   1989.  
-       
-    
-   <a href="javascript:toggleInfo('celeux_m89a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_celeux_m89a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@book{celeux_m89a, 
-  author = {Celeux, G. and Diday, E. and Govaert, G. and Lechevallier, Y. and Ralambondrainy, H.}, 
-  title = { Classification automatique des donn{\'e}es : environnement statistique et informatique }, 
-  address = {Paris}, 
-  publisher = {Dunod}, 
-  year = {1989} 
-} 
-</pre></td> 
-</tr> 
-<tr id="celeux_m89b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Celeux &amp; G. Govaert. 
-   <I><B>Clustering Criteria for Discrete Data and Latent Class Models</B></I> 
-   IFCS 89, 2th Conference of the International Federation of Classification Societies,&nbsp; 
-        Charlottsville (USA),  
-         
-         
-         
-         
-    
-    
-   1989.  
-       
-    
-   <a href="javascript:toggleInfo('celeux_m89b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_celeux_m89b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{celeux_m89b, 
-  author = {Celeux, G. and Govaert, G.}, 
-  title = {Clustering Criteria for Discrete Data and Latent Class Models}, 
-  booktitle = {IFCS 89, 2th Conference of the International Federation of Classification Societies}, 
-  address = {Charlottsville (USA)}, 
-  year = {1989} 
-} 
-</pre></td> 
-</tr> 
-<tr id="celeux_m89c" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Celeux &amp; G. Govaert. 
-   <I><B>Clustering criteria for discrete data and latent class models</B></I> 
-   ,&nbsp; 
-        Le Chesnay, France,  
-        Novembre,  
-         
-         
-        Number 1122,  
-    
-    
-   1989.  
-       
-    
-   <a href="javascript:toggleInfo('celeux_m89c','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_celeux_m89c" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@techreport{celeux_m89c, 
-  author = {Celeux, G. and Govaert, G.}, 
-  title = {Clustering criteria for discrete data and latent class models}, 
-  address = {Le Chesnay, France}, 
-  month = {Novembre}, 
-  year = {1989}, 
-  number = {1122} 
-} 
-</pre></td> 
-</tr> 
-<tr id="diday_m77" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        E. Diday &amp; G. Govaert. 
-   <I><B>Classification automatique avec distances adaptatives</B></I> 
-   RAIRO Informatique/Computer Science,&nbsp; 
-         
-         
-         
-        Volume 11,  
-        Number 4,  
-   Pages 329-349,  
-    
-   1977.  
-       
-    
-   <a href="javascript:toggleInfo('diday_m77','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_diday_m77" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{diday_m77, 
-  author = {Diday, E. and Govaert, G.}, 
-  title = {Classification automatique avec distances adaptatives}, 
-  journal = {RAIRO Informatique/Computer Science}, 
-  year = {1977}, 
-  volume = {11}, 
-  number = {4}, 
-  pages = {329-349} 
-} 
-</pre></td> 
-</tr> 
-<tr id="diday_m76" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        E. Diday &amp; G. Govaert. 
-   <I><B>Apprentissage et mesures de ressemblance adaptatives</B></I> 
-   Computer Oriented Learning Processes,&nbsp; 
-        Leyden,  
-         
-        Nato Advanced Study Institutes Series, series E: Applied Science,  
-        Volume 9,  
-        Number 14,  
-   Pages 299-320,  
-   Noordhoff,  
-   1976.  
-       
-    
-   <a href="javascript:toggleInfo('diday_m76','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_diday_m76" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{diday_m76, 
-  author = {Diday, E. and Govaert, G.}, 
-  title = {Apprentissage et mesures de ressemblance adaptatives}, 
-  booktitle = {Computer Oriented Learning Processes}, 
-  address = {Leyden}, 
-  publisher = {Noordhoff}, 
-  year = {1976}, 
-  series = {Nato Advanced Study Institutes Series, series E: Applied Science}, 
-  volume = {9}, 
-  number = {14}, 
-  pages = {299-320} 
-} 
-</pre></td> 
-</tr> 
-<tr id="diday_m74a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        E. Diday &amp; G. Govaert. 
-   <I><B>Classification avec distance adaptative</B></I> 
-   C. R. Acad. Sc. Paris, s&eacute;rie A,&nbsp; 
-         
-         
-         
-        Volume 278,  
-         
-   Pages 993-995,  
-    
-   1974.  
-       
-    
-   <a href="javascript:toggleInfo('diday_m74a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_diday_m74a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{diday_m74a, 
-  author = {Diday, E. and Govaert, G.}, 
-  title = {Classification avec distance adaptative}, 
-  journal = {C. R. Acad. Sc. Paris, s{\'e}rie A}, 
-  year = {1974}, 
-  volume = {278}, 
-  pages = {993-995} 
-} 
-</pre></td> 
-</tr> 
-<tr id="diday_m74b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        E. Diday &amp; G. Govaert. 
-   <I><B>Apprentissage et mesures de ressemblance adaptatives</B></I> 
-   Nato Advanced Study Institutes Series on Computer Oriented Learning Processes,&nbsp; 
-        Bonas,  
-        Septembre,  
-         
-         
-         
-    
-    
-   1974.  
-       
-    
-   <a href="javascript:toggleInfo('diday_m74b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_diday_m74b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@proceedings{diday_m74b, 
-  author = {Diday, E. and Govaert, G.}, 
-  title = {Apprentissage et mesures de ressemblance adaptatives}, 
-  booktitle = {Nato Advanced Study Institutes Series on Computer Oriented Learning Processes}, 
-  address = {Bonas}, 
-  month = {Septembre}, 
-  year = {1974} 
-} 
-</pre></td> 
-</tr> 
-<tr id="diday_m74c" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        E. Diday &amp; G. Govaert. 
-   <I><B>Apprentissage et mesures de ressemblance adaptatives</B></I> 
-   ,&nbsp; 
-        Le Chesnay, France,  
-        Novembre,  
-         
-         
-        Number 89,  
-    
-    
-   1974.  
-       
-    
-   <a href="javascript:toggleInfo('diday_m74c','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_diday_m74c" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@techreport{diday_m74c, 
-  author = {Diday, E. and Govaert, G.}, 
-  title = {Apprentissage et mesures de ressemblance adaptatives}, 
-  address = {Le Chesnay, France}, 
-  month = {Novembre}, 
-  year = {1974}, 
-  number = {89} 
-} 
-</pre></td> 
-</tr> 
-<tr id="diday_m80a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        E Diday; G. Govaert; Y. Lechevallier &amp; J. Sidi. 
-   <I><B>Clustering in Pattern Recognition</B></I> 
-   NATO Conference Series, (Series) 4: Marine Sciences,&nbsp; 
-        Holland,  
-        July,  
-         
-         
-         
-   Pages 424-429,  
-   Dordrecht,  
-   1980.  
-       
-    
-   <a href="javascript:toggleInfo('diday_m80a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_diday_m80a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{diday_m80a, 
-  author = {Diday, E and Govaert, G. and Lechevallier, Y. and Sidi, J.}, 
-  title = {Clustering in Pattern Recognition}, 
-  booktitle = {NATO Conference Series, (Series) 4: Marine Sciences}, 
-  address = {Holland}, 
-  month = {July}, 
-  publisher = {Dordrecht}, 
-  year = {1980}, 
-  pages = {424-429} 
-} 
-</pre></td> 
-</tr> 
-<tr id="diday_m80b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        E Diday; G. Govaert; Y. Lechevallier &amp; J. Sidi. 
-   <I><B>Clustering in Pattern Recognition</B></I> 
-   Fourth International Joint Conference on Pattern Recognition,&nbsp; 
-        Miami,  
-         
-         
-         
-         
-   Pages 284-290,  
-    
-   1980.  
-       
-    
-   <a href="javascript:toggleInfo('diday_m80b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_diday_m80b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{diday_m80b, 
-  author = {Diday, E and Govaert, G. and Lechevallier, Y. and Sidi, J.}, 
-  title = {Clustering in Pattern Recognition}, 
-  booktitle = {Fourth International Joint Conference on Pattern Recognition}, 
-  address = {Miami}, 
-  year = {1980}, 
-  pages = {284-290} 
-} 
-</pre></td> 
-</tr> 
-<tr id="diday_m78" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        E Diday; G. Govaert &amp; Lemoine Y.. 
-   <I><B>A new kind of representation in clustering</B></I> 
-   Fourth International Joint Conference on Pattern Recognition,&nbsp; 
-        Kyoto,  
-         
-         
-         
-         
-   Pages 284-290,  
-    
-   1978.  
-       
-    
-   <a href="javascript:toggleInfo('diday_m78','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_diday_m78" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{diday_m78, 
-  author = {Diday, E and Govaert, G. and Lemoine Y.}, 
-  title = {A new kind of representation in clustering}, 
-  booktitle = {Fourth International Joint Conference on Pattern Recognition}, 
-  address = {Kyoto}, 
-  year = {1978}, 
-  pages = {284-290} 
-} 
-</pre></td> 
-</tr> 
-<tr id="diday_m79" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        Diday, E. et Collaborateurs. 
-   <I><B>Optimisation et classification automatique</B></I> 
-   ,&nbsp; 
-        Rocquencourt,  
-         
-         
-         
-         
-    
-   INRIA,  
-   1979.  
-       
-    
-   <a href="javascript:toggleInfo('diday_m79','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_diday_m79" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@book{diday_m79, 
-  author = {{Diday, E. et Collaborateurs}}, 
-  title = {Optimisation et classification automatique}, 
-  address = {Rocquencourt}, 
-  publisher = {INRIA}, 
-  year = {1979} 
-} 
-</pre></td> 
-</tr> 
-<tr id="facy_m82b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        F. Facy; G. Govaert &amp; F. Davidson. 
-   <I><B>Analyse Typologique de Donn&eacute;es Qualitatives en Epid&eacute;miologie du petit enfant</B></I> 
-   XIVe Journ&eacute;es de Statistiques,&nbsp; 
-        Bruselles (Belgique),  
-         
-         
-         
-         
-    
-    
-   1982.  
-       
-    
-   <a href="javascript:toggleInfo('facy_m82b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_facy_m82b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{facy_m82b, 
-  author = {Facy, F. and Govaert, G. and Davidson, F.}, 
-  title = {Analyse Typologique de Donn\'ees Qualitatives en Epid\'emiologie du petit enfant}, 
-  booktitle = {XIVe Journ\'ees de Statistiques}, 
-  address = {Bruselles (Belgique)}, 
-  year = {1982} 
-} 
-</pre></td> 
-</tr> 
-<tr id="facy_m84" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        F. Facy; G. Govaert &amp; F. Laurent. 
-   <I><B>Analyse typologique de donn&eacute;es chronologiques en sant&eacute; publique</B></I> 
-   Revue de Statistique Appliqu&eacute;e,&nbsp; 
-         
-         
-         
-        Volume XXXII,  
-        Number 3,  
-   Pages 43-61,  
-    
-   1984.  
-       
-    
-   <a href="javascript:toggleInfo('facy_m84','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_facy_m84" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{facy_m84, 
-  author = {Facy, F. and Govaert, G. and Laurent, F.}, 
-  title = {Analyse typologique de donn\'ees chronologiques en sant\'e publique}, 
-  journal = {Revue de Statistique Appliqu\'ee}, 
-  year = {1984}, 
-  volume = {XXXII}, 
-  number = {3}, 
-  pages = {43-61} 
-} 
-</pre></td> 
-</tr> 
-<tr id="facy_m82a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        F. Facy; G. Govaert &amp; F. Laurent. 
-   <I><B>Analyse Typologique de Donn&eacute;es Qualitatives Chronologiques en Sant&eacute; Publique</B></I> 
-   XIIe Journ&eacute;es de Statistiques,&nbsp; 
-        Bruselles (Belgique),  
-         
-         
-         
-         
-    
-    
-   1982.  
-       
-    
-   <a href="javascript:toggleInfo('facy_m82a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_facy_m82a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{facy_m82a, 
-  author = {Facy, F. and Govaert, G. and Laurent, F.}, 
-  title = {Analyse Typologique de Donn\'ees Qualitatives Chronologiques en Sant\'e Publique}, 
-  booktitle = {XIIe Journ\'ees de Statistiques}, 
-  address = {Bruselles (Belgique)}, 
-  year = {1982} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m89a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert. 
-   <I><B>La classification crois&eacute;e</B></I> 
-   La revue de Modulad,&nbsp; 
-         
-        D&eacute;cembre,  
-         
-        Volume 4,  
-         
-   Pages 9-36,  
-    
-   1989.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m89a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m89a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@article{govaert_m89a, 
-  author = {Govaert, G.}, 
-  title = {La classification crois{\'e}e}, 
-  month = {D{\'e}cembre}, 
-  journal = {La revue de Modulad}, 
-  year = {1989}, 
-  volume = {4}, 
-  pages = {9-36} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m89b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert. 
-   <I><B>Clustering Model and Metric with Continuous Data</B></I> 
-   Data Analysis, Learning Symbolic and Numeric Knowledge,&nbsp; 
-        New York,  
-         
-         
-         
-         
-   Pages 95-102,  
-   Nova Science Publishers, Inc.,  
-   1989.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m89b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m89b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{govaert_m89b, 
-  author = {Govaert, G.}, 
-  title = {Clustering Model and Metric with Continuous Data}, 
-  booktitle = {Data Analysis, Learning Symbolic and Numeric Knowledge}, 
-  address = {New York}, 
-  publisher = {Nova Science Publishers, Inc.}, 
-  year = {1989}, 
-  pages = {95-102} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m89e" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert. 
-   <I><B>Mod&egrave;le de classification et distance dans le cas continu</B></I> 
-   ,&nbsp; 
-        Le Chesnay, France,  
-        Mars,  
-         
-         
-        Number 988,  
-    
-    
-   1989.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m89e','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m89e" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@techreport{govaert_m89e, 
-  author = {Govaert,G.}, 
-  title = {Mod{\`e}le de classification et distance dans le cas continu}, 
-  address = {Le Chesnay, France}, 
-  month = {Mars}, 
-  year = {1989}, 
-  number = {988} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m84a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert. 
-   <I><B>Classification simultan&eacute;e de tableaux binaires</B></I> 
-   Data analysis and informatics 3,&nbsp; 
-        Amsterdam,  
-         
-         
-         
-         
-   Pages 223-236,  
-   North-Holland,  
-   1984.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m84a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m84a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{govaert_m84a, 
-  author = {Govaert, G.}, 
-  title = {Classification simultan\'ee de tableaux binaires}, 
-  booktitle = {Data analysis and informatics 3}, 
-  address = {Amsterdam}, 
-  publisher = {North-Holland}, 
-  year = {1984}, 
-  pages = {223-236} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m84b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert. 
-   <I><B>Classification crois&eacute;e de questionnaires</B></I> 
-   XVIe Journ&eacute;es de Statistiques,&nbsp; 
-        Montpellier,  
-         
-         
-         
-         
-    
-    
-   1984.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m84b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m84b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{govaert_m84b, 
-  author = {Govaert, G.}, 
-  title = {Classification crois\'ee de questionnaires}, 
-  booktitle = {XVIe Journ\'ees de Statistiques}, 
-  address = {Montpellier}, 
-  year = {1984} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m83" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert. 
-   <I><B>Classification crois&eacute;e</B></I> 
-   <i>School</i>: Universit&eacute; Paris 6,&nbsp; 
-        France,  
-         
-         
-         
-         
-    
-    
-   1983.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m83','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m83" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@phdthesis{govaert_m83, 
-  author = {Govaert, G.}, 
-  title = {Classification crois\'ee}, 
-  address = {France}, 
-  school = {Universit\'e Paris 6}, 
-  year = {1983} 
-} 
-</pre></td> 
-</tr> 
-<tr id="facy_m81" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert. 
-   <I><B>Classification automatique et analyse factorielle</B></I> 
-   XIIIe Journ&eacute;es de Statistiques,&nbsp; 
-        Nancy,  
-         
-         
-         
-         
-    
-    
-   1981.  
-       
-    
-   <a href="javascript:toggleInfo('facy_m81','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_facy_m81" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{facy_m81, 
-  author = {Govaert, G.}, 
-  title = {Classification automatique et analyse factorielle}, 
-  booktitle = {XIIIe Journ\'ees de Statistiques}, 
-  address = {Nancy}, 
-  year = {1981} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m80" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert. 
-   <I><B>Classification dans le temps</B></I> 
-   Xe Journ&eacute;es de Statistiques,&nbsp; 
-        Toulouse,  
-         
-         
-         
-         
-    
-    
-   1980.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m80','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m80" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{govaert_m80, 
-  author = {Govaert, G.}, 
-  title = {Classification dans le temps}, 
-  booktitle = {Xe Journ\'ees de Statistiques}, 
-  address = {Toulouse}, 
-  year = {1980} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m77" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert. 
-   <I><B>Algorithme de classification d'un tableau de contingence</B></I> 
-   First international symposium on data analysis and informatics,&nbsp; 
-        Versailles,  
-         
-         
-         
-         
-   Pages 487-500,  
-   INRIA,  
-   1977.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m77','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m77" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{govaert_m77, 
-  author = {Govaert, G.}, 
-  title = {Algorithme de classification d'un tableau de contingence}, 
-  booktitle = {First international symposium on data analysis and informatics}, 
-  address = {Versailles}, 
-  publisher = {INRIA}, 
-  year = {1977}, 
-  pages = {487-500} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m75" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert. 
-   <I><B>Classification automatique et distances adaptatives</B></I> 
-   <i>School</i>: Universit&eacute; Paris 6,&nbsp; 
-        France,  
-         
-         
-         
-         
-    
-    
-   1975.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m75','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m75" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@phdthesis{govaert_m75, 
-  author = {Govaert, G.}, 
-  title = {Classification automatique et distances adaptatives}, 
-  address = {France}, 
-  school = {Universit{\'e} Paris 6}, 
-  year = {1975} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m89d" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert &amp; F. Marchetti. 
-   <I><B>Classification binaire et mod&egrave;le probabiliste</B></I> 
-   XXIe Journ&eacute;es de Statistiques,&nbsp; 
-        Rennes,  
-         
-         
-         
-         
-    
-    
-   1989.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m89d','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m89d" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{govaert_m89d, 
-  author = {Govaert, G. and Marchetti, F.}, 
-  title = {Classification binaire et mod{\`e}le probabiliste}, 
-  booktitle = {XXIe Journ{\'e}es de Statistiques}, 
-  address = {Rennes}, 
-  year = {1989} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m88a" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert &amp; F. Marchetti. 
-   <I><B>Classification de donn&eacute;es binaires et mesure d'information</B></I> 
-   XXIe Journ&eacute;es de Statistiques,&nbsp; 
-        Grenoble,  
-         
-         
-         
-         
-    
-    
-   1988.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m88a','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m88a" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{govaert_m88a, 
-  author = {Govaert, G. and Marchetti, F.}, 
-  title = {Classification de donn{\'e}es binaires et mesure d'information}, 
-  booktitle = {XXIe Journ{\'e}es de Statistiques}, 
-  address = {Grenoble}, 
-  year = {1988} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m88b" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert &amp; F. Marchetti. 
-   <I><B>Mod&egrave;le de classification et distance dans le cas discret</B></I> 
-   ,&nbsp; 
-        Metz, France,  
-         
-         
-         
-         
-    
-    
-   1988.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m88b','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m88b" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@techreport{govaert_m88b, 
-  author = {Govaert, G. and Marchetti, F.}, 
-  title = {Mod{\`e}le de classification et distance dans le cas discret}, 
-  address = {Metz, France}, 
-  year = {1988} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m88c" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert &amp; F. Marchetti. 
-   <I><B>Classification binaire et Mod&egrave;le</B></I> 
-   ,&nbsp; 
-        Le Chesnay, France,  
-        Decembre,  
-         
-         
-        Number 949,  
-    
-    
-   1988.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m88c','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m88c" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@techreport{govaert_m88c, 
-  author = {Govaert, G. and Marchetti, F.}, 
-  title = {Classification binaire et Mod\`ele}, 
-  address = {Le Chesnay, France}, 
-  month = {Decembre}, 
-  year = {1988}, 
-  number = {949} 
-} 
-</pre></td> 
-</tr> 
-<tr id="govaert_m87" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        G. Govaert &amp; F. Marchetti. 
-   <I><B>Classification de donn&eacute;es binaires et qualitatives</B></I> 
-   XIXe Journ&eacute;es de Statistiques,&nbsp; 
-        Lausanne,  
-         
-         
-         
-         
-    
-    
-   1987.  
-       
-    
-   <a href="javascript:toggleInfo('govaert_m87','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_govaert_m87" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@inproceedings{govaert_m87, 
-  author = {Govaert, G. and Marchetti, F.}, 
-  title = {Classification de donn\'ees binaires et qualitatives}, 
-  booktitle = {XIXe Journ\'ees de Statistiques}, 
-  address = {Lausanne}, 
-  year = {1987} 
-} 
-</pre></td> 
-</tr> 
-<tr id="lechevallier_m86" class="entry"> 
- <td> 
-<p class="infolinks"> 
-     
-     
-        Y. Lechevallier; H. Ralambondrainy &amp; G. Govaert. 
-   <I><B>Le syst&egrave;me Sicla : principe et architecture</B></I> 
-   ,&nbsp; 
-        Le Chesnay, France,  
-        Mars,  
-         
-         
-        Number 500,  
-    
-    
-   1986.  
-       
-    
-   <a href="javascript:toggleInfo('lechevallier_m86','bibtex')">[BibTeX]</a> 
-     
-         
-    
-   </p> 
-      </td> 
-</tr> 
-<tr id="bib_lechevallier_m86" class="bibtex noshow"> 
-<td colspan="6"> 
-<b>BibTeX</b>: 
-<pre> 
-@techreport{lechevallier_m86, 
-  author = {Lechevallier, Y. and Ralambondrainy, H. and Govaert, G.}, 
-  title = {Le syst{\`e}me Sicla : principe et architecture}, 
-  address = {Le Chesnay, France}, 
-  month = {Mars}, 
-  year = {1986}, 
-  number = {500} 
-} 
-</pre></td> 
-</tr> 
-</tbody> 
- 
-    </table> 
-</body> 
-</html> 

Outils pour utilisateurs