Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
4answers
245 views

How can I recall the argument of the previous bash command?

Is there a way in Bash to recall the argument of the previous command? I usually do vi file.c followed by gcc file.c. Is there a way in Bash to recall the argument of the previous command?
2
votes
2answers
156 views

How to recall function under jquery plugin

I have created one jQuery plugin to use in my own system. The problem: I would like the system to update every 1 second. Normally I recall the function by use setTimeout with the name of its function. ...
2
votes
1answer
646 views

Recommender system: simple user-based collaborative filtering to evaluate with precision and recall

I'm looking for a very simple implementation in Java of a user-based collaborative filtering. I would like to evaluate the precision and recall of this CF with the movielens dataset. I've seen that ...
1
vote
1answer
64 views

How to retrieve data point into edit text from matlab workspace to gui?

I have 8*1 cell matrix in my matlab workspace called textdata. It contains tickers in each row. How do i use pushbutton and edit1_Callbacks to program a this basic data point retrieval operaton(what ...
1
vote
1answer
312 views

recall and precision in rapidminer

there is a dataset in excel containing some labels in column A(I call it cluster label) and some attributes in column B(I call them cluster component). These data show the best clustering result. ...
1
vote
2answers
1k views

How can I recall a javascript function after updatepanel update

<asp:UpdatePanel ID="UpdatePanel2" runat="server" OnLoad="UpdatePanel2_Load" UpdateMode="Conditional"> <ContentTemplate> <script type="text/javascript"> ...
0
votes
0answers
95 views

how to draw the precision recall curve

I am working on a project related to information retrieval. The data set is pretty huge and I have taken a sample of 500 data-items to calculate the precision and recall. I have got a precision of 0.9 ...
0
votes
1answer
128 views

Precision,Recall and F-score

I am working on a developing a new system which is based on information retrieval concept. My system retrieve's pdf and ppt files of research articles from the web. When i calculated precision,recall ...
0
votes
1answer
61 views

Recalling a Method [ What Am I Doing Wrong? ]

So I am trying to create a program which takes two integers i input, and returns the bigger of the two. So it would function like this when I type it in Terminal java Assign5 23 67 the bigger value ...
0
votes
0answers
50 views

Reinitialize table plugin to reflect filtered data

I'm trying to combine the functionalities of the jTPS plugin and the tablefilter plugin. Both are working fine, but i need the jTPS plugin to reinitialize after the tablefilter is applied. Without ...
0
votes
6answers
705 views

Make a application retrieve data from MySQL database

I'm looking to make a application that shows something from a MySQL data base. They should go in Order according to which ever one is next. The user would set a time that the events should happen, ...
0
votes
5answers
2k views

How to compute precision and recall in clustering?

I am really confused how to compute precision and recall in clustering applications. I have the following situation: Given two sets A and B. By using a unique key for each element I can determine ...
-1
votes
1answer
29 views

Precision/recall for multiclass-multilabel classification

I'm wondering how to calculate precision and recall measures for multiclass multilabel classification, i.e. classification where there are more than two labels, and where each instance can have ...