summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--feature_selection.rb2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
new file mode 100644
index 0000000..795a878
--- /dev/null
+++ b/ChangeLog
@@ -0,0 +1,5 @@
+v3.1.0 2012-02-24
+ * lazar.rb: pc type parameter in model, cleaned all parameters,
+ propositionalized learning only for SVM, switch for minimal training
+ performance, removed conf_stdev
+ * fminer.rb: feature match service for datasets, also with number of hits
diff --git a/feature_selection.rb b/feature_selection.rb
index 556ccf8..3e43b9c 100644
--- a/feature_selection.rb
+++ b/feature_selection.rb
@@ -59,7 +59,7 @@ post '/feature_selection/rfe/?' do
tf_ds.puts(ds_csv)
tf_ds.flush()
- prediction_feature = params[:prediction_feature_uri].split('/').last # get col name
+ prediction_feature = URI.escape(params[:prediction_feature_uri].split('/').last) # get col name
fds_csv=OpenTox::RestClientWrapper.get( params[:feature_dataset_uri], {:accept => "text/csv"})
tf_fds=Tempfile.open(['rfe_', '.csv'])