Tagged Questions
The weighting tag has no wiki summary.
10
votes
2answers
204 views
Machine learning for weighting adjustment
I'm trying to work out how to implement some machine learning library to help me find out what the correct weighting for each parameter is in order to make a good decision.
In more detail:
Context: ...
4
votes
4answers
942 views
Sharepoint Search Property Weighting
I'm using the code listed here:
http://msdn.microsoft.com/en-us/library/ms553069.aspx
With an additional line added as a call to .update() after the property is set in order to save the changes, but ...
3
votes
4answers
194 views
Whats the best way to implement weighted random selection, based on 2 types variables (in php)?
Basically my dilemma is this. I have a list of x servers that host files. There is another server, that hosts the site's mysql db and application. When a file is uploaded (to the frontend server), the ...
1
vote
1answer
53 views
An alternative to arithmetic mean for scores/ratings
The arithmetic mean or average is easy to implement since it's often integrated as a function in most programming languages.
However, it's not really appropriate for ratings as several 5 out of 10s ...
1
vote
1answer
50 views
Random selection weighted against recent previous selections
I'd like to select an element of a list where each element is weight by how long since it was last selected.
I could make an LRU (least recently used) list with the weighting a function based on the ...
0
votes
1answer
46 views
Android ImageViews not working correctly when weighted
This piece of XML will correctly display a button which covers the entire row then 2 buttons which are weighted evenly and share 50% of the space like so:
__________________________
...
0
votes
6answers
250 views
weighted RNG speed problem in C++
Edit: to clarify, the problem is with the second algorithm.
I have a bit of C++ code that samples cards from a 52 card deck, which works just fine:
void sample_allcards(int table[5], int holes[], ...
0
votes
2answers
152 views
Sorting a GridView based on weights in another database table
I have a GridView being populated from a non-SQL database that we use internally. One of those fields is a stockroom location. (Example: AAA, AAB, AAC, etc.)
In another database (SQL) I keep a list ...