The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
7 views

Lucene: Get document id in CustomScoreProvider

In short, I am trying to determine a document's true document ID in method CustomScoreProvider.CustomScore which only provides a document "ID" relative to a sub-IndexReader. More info: I am trying to ...
1
vote
1answer
14 views

Oracle Text : How to not count a part of the query for scoring?

I have a multicolumn datastore indexed using Oracle Text, and I am running queries using Contains keyword. To weight the different columns differently I proceed as follow. If the user searches for ...
-2
votes
0answers
38 views

Sitecore DMS profiles solution vs. other scoring systems [closed]

Hi to all the Sitecore Masters :) I'd like to ask you for suggestions on the differences/advantages between Sitecore profiling and other systems that provide scoring capability. I know what I can do ...
0
votes
2answers
41 views

Best way to keep highscore in Android

What is the best way to do the highscore for quiz app? I was leaning toward shared preference, but I would like to have the date/time and player name included with the score in highscore page. Would ...
0
votes
1answer
73 views

Controlling character movement, and keeping score while doing so, AS3

I have created a game where you have to follow the suggested arrow (going from right to left) to control the movement of the character. As you go trace the arrow from right to left, the characters ...
0
votes
1answer
61 views

Apache Custom Lucene Scoring

I am trying to modify Lucene's default similarity score as follows. Assume each document and also the query consist of unique words. Our custom similarity score for query q and document d should be ...
0
votes
3answers
126 views

Solr Search score is always coming as 0 .0

We are trying to evaluate Solr as a search solution and facing issues in retrieving scores. We did crawl and index but all the scores are coming as 0.0 despite that we didn't change any configuration ...
1
vote
1answer
77 views

When indexing, what are the factors that can affect a term's score when searched

The question is little confusing. I am new to Lucene and going through the documents. I found out that adding boost to a field, increases the norm of the field and thus, increases the score of the ...
0
votes
0answers
85 views

scoring function in text mining model in C++

Hello guys really need your help i am working on this function already for five hours but it's not working still. I need to do scoring function, this function would need to scan trough two tables ...
10
votes
6answers
429 views

Scoring System Suggestion - weighted mechanism?

I'm trying to validate a series of words that are provided by users. I'm trying to come up with a scoring system that will determine the likelihood that the series of words are indeed valid words. ...
-2
votes
2answers
37 views

How do you compute a basic scoring system? [closed]

Example, we have a shooting balloon game where in balloon flies in the 'world' and an archer or shooter shoots the balloon before it flies out of the world. So, we have this stats: Hits - balloons ...
4
votes
1answer
184 views

Mastermind Scoring Algorithm in C

I am working on a client/server mastermind game in C and I have finished so far. My programs are working and it solves the secret in average 6-7 guesses. Then I was looking over the internet and found ...
0
votes
2answers
186 views

sorting lines of a text file by number present and output the whole lines in descending order

I am trying to make a high score system by saving the names and score to a textfile using this code. String text = name.getText().toString() + " " + score.getText().toString(); ...
0
votes
2answers
104 views

sorting player names by their scores in android game

I am making a scrabble app and i want to make make a system where players can view their scores along with names. The scores should be arranged from highest to lowest. the output should look like ...
2
votes
2answers
127 views

Total Score ranking algorithm

Background; I am looking for a way to calculate the score of a piece of audio based on listeners feedback. Each time a user listens to the track, they must vote if they like it, a simple yes or no. ...
-3
votes
1answer
123 views

Scoring quiz in AS2 to AS3

i have problem making quiz in as3, this is the code in AS2 for scoring, i wonder how the code is in AS3, can anyone help me, thanks a lot.. :) { salah += 1; if (jumlah_frame>=0) { ...
1
vote
1answer
51 views

Improving ordinal ranking

I'm trying to improve an ordinal ranking implementation we are currently using to determine a unique ranking amongst competitors over a set of tasks. The problem is as follows. There are K tasks and ...
1
vote
3answers
188 views

Changing value using innerHTML in Javascript

It's been a while since I've worked with Javascript and HTML coding. I am trying to construct a basic scoreboard system that will add points to the home and away scores as the points are earned. I am ...
0
votes
2answers
127 views

How to calculate popularity based on some known factors

I've got a list of movies for each of which the following factors are known: Number of people that wish to watch the movie in future Number of people that have watched the movie Number of people ...
4
votes
1answer
93 views

What is the best way to properly integrate a “popularity” factor with zend-search lucene?

I've read this and I'm still a bit confused on how to exactly go about it. I have an unindexed field that is counting the number of votes for a set of playlists that are being searched. The main ...
-1
votes
1answer
40 views

Visual Scoring of an Updating Value [closed]

How do I go about adding a visual count of a value that keeps updating to the new score? its for a 2d game and in c# XNA.
3
votes
1answer
199 views

Actionscript 2.0 scoring system

I'm new to flash and I need to make a scoring system where in when you click on a symbol (button) in the stage it will add to the score textbox. I have this simple code: on(release) { ...
-1
votes
4answers
254 views

Python score counter

I'm almost done with this program I'm making to help me study for my Japanese class. All I need to do is figure out how to keep track of how many I got right or wrong and then print the result ...
0
votes
1answer
93 views

How to multiply constants from table A by variable values in table B in PL/SQL?

Newbie PL/SQL question: In order to calculate predicted values for a multivariate linear regression analysis, I'd like to multiply each of the regression parameters in Table A by the corresponding ...
2
votes
2answers
337 views

solr / lucene idf score

I'm trying to get a better understanding of how lucene scored my search so that I can make necessary tweaks to my search configuration or the document content. The below is a part of the score ...
1
vote
2answers
117 views

SOLR index time boost depending on the field value

Is it possible to boost a document on the indexing stage depending on the field value? I'm indexing a text field pulled from the database. I would like to boost results that are shorter over the ...
1
vote
0answers
41 views

how to evaluate one part of a multidimensional array against another? foreach and in_array?

total n00b to PHP but very interested. Struggling right now with using a deep multidimensional array as part of a single-form php quiz, where the multidimensional array must contain both the options ...
0
votes
0answers
105 views

Cumulative scoring in game center [closed]

I want to add a leader board in my game centre (iOS 6) which shows cumulative score, for example distance run in TempleRun In my game logic a player earns points 6-350 when he/she wins and it should ...
-1
votes
2answers
237 views

How to give a score based on time?

In the game I am making, I need to make a scoring system based on time. If you get a match in the first second of gameplay. That match is worth more points, than if I get a match on the last second ...
0
votes
1answer
197 views

Score system for Quiz - Faster you are correct, more points

I'm creating a Flash (as3) quiz that utilizes PHP data and am currently in the midst of creating a score system. The idea is the faster you get a question correct, the higher your score. There is a ...
0
votes
0answers
33 views

unrated versus negative-rated entities with Wilson score — how to handle?

Having read How Not To Sort By Average Rating I thought I should give it a try. CREATE FUNCTION `mydb`.`LowerBoundWilson95` (pos FLOAT, neg FLOAT) RETURNS FLOAT DETERMINISTIC RETURN IF( pos + neg ...
0
votes
0answers
58 views

How long does it take to submit a score to the leaderboard when using game-center?

I'm using the game-center leaderboard functionality where I post my highscore (float value) to gamecenter. I'm doing this as follows: NSNumber * scoreOfPlayer = [NSNumber numberWithFloat:120.0]; ...
1
vote
2answers
186 views

How to use timer for scoring in Android?

I'm planning to use a visible timer that will count down from 30 seconds to 0 seconds. This timer will be the basis for scoring in my game application since each time a moving sprite (containing a ...
0
votes
1answer
252 views

How would I set up a scoring system in a quiz app?

I'm trying to set up a quiz of which each answer will add a certain number of points to a total score. At the moment, I'm concerned with radio buttons. I have set up a radiogroup and I wish for ...
0
votes
0answers
69 views

Game Score Compiling Issues on Xcode

I'm having issues compiling the score for a boxing game. Every time the main character knocks down its opponent, the score resets to 0 and I want the score to be cumulative until the boxing match ...
0
votes
1answer
139 views

Scoring System In Cocos2D

My game has a collision detection where when my missile hits the enemy the enemy disappears. I want to add a scoring system that adds 1 point every time my missile hits the enemy. I'll post my game ...
0
votes
1answer
77 views

Scoring Algorithm in Model using a session variable in rails

I want to return results to a user sorted by a scoring algorithm that is personalized to the user based on their friends. For context, in my app, users have events that they can add to their ...
0
votes
1answer
35 views

Creating scores for an action in a separate table in Ruby

I can create a Game, in that Game I can create Rules, I have a button that "Completes" the Rule, by changing the Rule boolean :completed column to false, which pushes it to the "Rules Completed" view, ...
0
votes
1answer
153 views

Leaderboard for J2ME games? [closed]

Is there any existing leaderboard / scoreboard service for J2ME applications, somewhat like OpenFeint for Android and iOS?
0
votes
1answer
129 views

SOLR 1.4 - sort by flag

I'm using SOLR 1.4. In search index I store products and categories. Each product may have multiple categories. Category should affect document's score. e.g. Category 1 (flag 8) Category 2 (flag 4) ...
2
votes
1answer
226 views

Lucene - Scoring effect on clause count

I had some issues with Lucene as it always had a constant score and it ignored my boost values. Setting the parser rewriteMethod to SCORING_BOOLEAN_QUERY_REWRITE did the trick but it has a weird side ...
1
vote
2answers
190 views

There is a mismatch between the score for a wildcard match and an exact match

There is a mismatch between the score for a wildcard match and an exact match I search for recording:live OR recording:luve* And here is the Explain Output from Search ...
0
votes
1answer
120 views

Does disabling norms on one field give advantage over other fields when searching multiple fields?

I have a number of fields that either only ever contain one term or I don't want them to be disavantaged if they do have a greater number of terms, and I never boost the field so I disable norms for ...
2
votes
2answers
215 views

Combine independent scores to make aggregate score in duplicate detection algorithm

I'm building a duplicate detector, and I have identified a few factors that should be correlated to being a duplicate: Comparison of document lengths Comparison of document titles Comparison of ...
0
votes
1answer
148 views

Getting mixed results while trying to calculate Jaccard coefficiency in Lucene

I am trying to get a Jaccard based score using Lucene. I have succeeded in getting the number of terms of each document and i only need to find the number of terms of my query that are found in each ...
0
votes
1answer
170 views

Deduplication with scoring framework/application/server on Java to work with database input staging

Please suggest me Java product (I would prefer open-source) which does do: data deduplication deduplication scoring allows to customize deduplication rules and scoring rules. Please see the ...
0
votes
1answer
101 views

How can accent can be more accurate with bf and query with solr

i work with solr, i can't fix my problem of result's accuracy (q vs bf taking into account accents) i have a solr index with 2 fields indexed (this is simplified): town, population Félines, 100 ...
1
vote
1answer
105 views

emit every document in the database with lucene

I've got an index where I need to get all documents with a standard search, still ranked by relevance, even if a document isn't a hit. My first idea is to add a field that is always matched, but that ...
0
votes
0answers
196 views

How to sort by tag considering the tags weights related to every document?

I'm building up a Solr search engine to search on a 300k documents collection. Among the many indexed fields, an important one is tags. My idea is to assign to every document a vector of tags, each ...
3
votes
3answers
358 views

R randomForest voting tie break

Does anyone know what the mechanism is that the R randomForest package uses to resolve classification ties - i.e. when the trees end up with equal votes in two or more classes? The documentation ...

1 2