Index: app/src/dgp/tre.rb
===================================================================
--- app/src/dgp/tre.rb	(revision adb4c8d65ba8b406a1703d1c091bcf1af4bdfb3c)
+++ app/src/dgp/tre.rb	(revision 19760efd7bb36c499d7149474a4898332fa60a7c)
@@ -1,5 +1,9 @@
 #!/usr/bin/ruby -I /usr/local/lib/utt -I $HOME/.local/lib/utt
 
+$: << "#{ENV['HOME']}/.local/lib/utt"
+$: << "/usr/local/lib/utt"
+
 require 'getoptlong'
+require 'seg.rb'
 
 opts = GetoptLong.new(
@@ -60,7 +64,4 @@
   end
 end
-
-#require File.expand_path(File.dirname(__FILE__) + "../lib/utt/seg.rb")
-require 'seg.rb'
 
 $dgpsep=';'
Index: app/src/gue/cmdline_guess.ggo
===================================================================
--- app/src/gue/cmdline_guess.ggo	(revision 8d3e6ab33b2b6727eb54bb3498a0ba2af9ca9ea1)
+++ app/src/gue/cmdline_guess.ggo	(revision 19760efd7bb36c499d7149474a4898332fa60a7c)
@@ -8,5 +8,5 @@
 option "dictionary"		d	"File with dictionary information" string typestr="filename" default="gue.bin" no
 option "per-info"		v	"Display performance information" flag off
-option "weights"		w	"Print weights" flag off hidden
+option "weights"		w	"Print weights" flag off
 option "no-uppercase"		-	"Do not process form containing uppercase letters" flag off
 
Index: app/src/gue/common_guess.cc
===================================================================
--- app/src/gue/common_guess.cc	(revision 6ac84d8bba375e6caf620f62d632c4fb07aa95d4)
+++ app/src/gue/common_guess.cc	(revision 19760efd7bb36c499d7149474a4898332fa60a7c)
@@ -8,5 +8,5 @@
 char dictionary[255];
 bool per_info=false;
-bool weights=true;
+bool weights=false;
 
 void process_guess_options(gengetopt_args_info* args)
@@ -56,5 +56,5 @@
 
   if(args->weights_given)
-    weights=false;
+    weights=true;
 
 }
