From 9c32f9bb857998e2476814b0e1155efa67a21339 Mon Sep 17 00:00:00 2001 From: Shohei Hido Date: Fri, 22 Nov 2013 13:51:34 +0900 Subject: [PATCH] Remove config.json and use installed one --- README.md | 4 +++- config.json | 20 -------------------- 2 files changed, 3 insertions(+), 21 deletions(-) delete mode 100644 config.json diff --git a/README.md b/README.md index 888de68..94a5cba 100644 --- a/README.md +++ b/README.md @@ -22,8 +22,10 @@ $ ./waf build To test the client, run: ``` -$ jubarecommender --configpath config.json & +$ jubarecommender --configpath /usr/local/share/jubatus/example/config/recommender/lsh.json & $ build/client ``` +We assume that Jubatus was installed into /usr/local/. Otherwise, please modify the path. + Now, write your own code in `client.cpp`, then rebuild and run the client again. diff --git a/config.json b/config.json deleted file mode 100644 index 02f150f..0000000 --- a/config.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "converter" : { - "string_filter_types": {}, - "string_filter_rules":[], - "num_filter_types": {}, - "num_filter_rules": [], - "string_types": {}, - "string_rules":[ - {"key" : "*", "type" : "str", "sample_weight":"bin", "global_weight" : "bin"} - ], - "num_types": {}, - "num_rules": [ - {"key" : "*", "type" : "num"} - ] - }, - "parameter" : { - "hash_num" : 64 - }, - "method": "lsh" -}