rbtagger 0.4.5 → 0.4.6

Sign up to get free protection for your applications and to get access to all the features.
@@ -168,8 +168,8 @@ int NWordTagger::execute( std::vector<std::string> &reduced_tags, const char *te
168
168
  do {
169
169
  for(mloc = sorted_tags.begin(); mloc != sorted_tags.end(); ++mloc ) {
170
170
  std::pair< std::string, int > word_freq = *mloc;
171
- printf( "word: %s, frequency: %d\n", word_freq.first.c_str(), word_freq.second );
172
- printf( "word: %s, frequency: %d\n", mloc->first.c_str(), mloc->second );
171
+ //printf( "word: %s, frequency: %d\n", word_freq.first.c_str(), word_freq.second );
172
+ //printf( "word: %s, frequency: %d\n", mloc->first.c_str(), mloc->second );
173
173
  if( word_freq.second < max_count ) {
174
174
  sorted_tags.erase( mloc );
175
175
  break;
@@ -2,7 +2,7 @@ module RbTagger #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 4
5
- TINY = 5
5
+ TINY = 6
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rbtagger
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.5
4
+ version: 0.4.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Todd A. Fisher