Skip to content

Commit

Permalink
Misprint macros fixed, docs extended
Browse files Browse the repository at this point in the history
  • Loading branch information
luav committed Dec 4, 2017
1 parent c30b441 commit 7c94147
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# GenConvNMI
Generalized Conventional Mutual Information (GenConvMI) - NMI for Overlapping clusters compatible with standard [NMI](http://www.cs.plu.edu/courses/csce436/art%202.pdf) value, pure C++ version producing a single executable.
GenConvMI applicable to evaluate both *overlapping (crisp and fuzzy) and multi-resolution clustering*: a single collection can contain all these mixed clusters (communities, modules) and be correctly evaluated, which is a unique feature.
GenConvMI applicable to evaluate both *overlapping (crisp and fuzzy) and multi-resolution clustering*: a single collection can contain all these mixed clusters (communities, modules) and be correctly evaluated, which is a unique feature. Moreover, the evaluating collections may contain duplicated clusters, which is useful for the semantic types evaluation (when differently named types actually have the same members, i.e. equivalent types exist).

The paper: [Comparing network covers using mutual information](https://arxiv.org/abs/1202.0425) by Alcides Viamontes Esquivel, Martin Rosval, 2012.
(c) Alcides Viamontes Esquivel
Expand Down
2 changes: 1 addition & 1 deletion src/deep_complete_simulator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ struct deep_complete_simulator::pimpl_t {
{
const auto& mods = pa1.get_status() == pa_status_t::SUCCESS
? pa2.get_modules() : pa1.get_modules();
#if DEBUG
#ifdef DEBUG
assert(mods.size() && "try_get_sample(), non-empty set should have positive size");
#endif // DEBUG
result.importance /= mods.size();
Expand Down

0 comments on commit 7c94147

Please sign in to comment.