Commit caf1024a9080cc67930119734f755def2d80cca7

Authored by Tássia Camões Araújo
1 parent 9332e65e
Exists in master and in 1 other branch add_vagrant

up-to-date survey config file.

Showing 1 changed file with 38 additions and 0 deletions   Show diff stats
src/web/app_recommender.cfg 0 → 100644
... ... @@ -0,0 +1,38 @@
  1 +# Config file for AppRecommender
  2 +
  3 +[general]
  4 +# logging level
  5 +debug = 1
  6 +verbose = 0
  7 +# output file
  8 +output = log/apprec-survey
  9 +
  10 +[data_sources]
  11 +# path to recommender filters
  12 +filters = ~/.app-recommender/filters
  13 +# path to apt-xapian-index
  14 +axi = /root/.app-recommender/axi_program
  15 +# DDE url
  16 +dde_url = http://46.4.235.200:8000/q/udd/packages/all/%s?t=json
  17 +# old, reindex, cluster, recluster
  18 +index_mode = old
  19 +# path to popcon index
  20 +popcon_index = ~/.app-recommender/popcon-index_program
  21 +# path to popcon submissions dir
  22 +popcon_dir = ~/.app-recommender/popcon-entries/
  23 +# path to valid_pkgs file
  24 +pkgs_filter = program
  25 +# path to popcon clusters dir
  26 +clusters_dir = ~/.app-recommender/clusters_dir_full
  27 +# number of medoids for clustering
  28 +k_medoids = 100
  29 +# number of popcon submission for indexing
  30 +max_popcon = 1000
  31 +
  32 +[recommender]
  33 +# recommendation strategy
  34 +strategy = cb
  35 +# search weighting scheme ('trad' or 'bm25')
  36 +weight = bm25
  37 +# user profile size
  38 +profile_size = 50
... ...