Tagged Questions
The topics tag has no wiki summary.
3
votes
1answer
55 views
Hot topics extraction from Twitter
I am building a website of finding and showing the hottest topics curretly on Twitter for my final project. Does anyone know how to extract the topics from the huge amount of tweets in the last week, ...
3
votes
1answer
274 views
Topic Modeling in Mallet; Documentation
I'm looking for some good documentation for Mallet, specifically for its classes related to topic modeling. I've looked at the Java docs but they aren't too helpful. For example:
estimate
public ...
2
votes
1answer
166 views
Why getting different results with MALLET topic inference for single and batch of documents?
I'm trying to perform LDA topic modeling with Mallet 2.0.7. I can train a LDA model and get good results, judging by the output from the training session. Also, I can use the inferencer built in ...
2
votes
0answers
127 views
Yahoo! LDA Implementation Questions
All,
I have been running Y!LDA (https://github.com/shravanmn/Yahoo_LDA) on a set of documents and the results look great (or at least what I would expect). Now I want to use the resulting topics to ...
2
votes
3answers
467 views
about lda inference
not sure if this is the best place to ask this question but here goes..
Right now, I'm using LDA topic modelling tool from the MALLET package to do some topic detection on my documents. Everything's ...
1
vote
2answers
81 views
Best model for topic spotting/discovery
What is the best model for topic spotting within short unstructured documents, ex. SMS or Twitter messages? Latent Dirichlet allocation?
1
vote
3answers
254 views
activemq, jms topics and subscribers with selectors
I need some help with topics and selectors.
I have a scenario with a topic having multiple durable subscribers (each with a selector)
not all messages going into the topic aren't read by the ...
1
vote
2answers
126 views
Defining Trending Topics in a specific collection of tweets
Im doing a Java application where I'll have to determine what are the Trending Topics from a specific collection of tweets, obtained trough the Twitter Search. While searching in the web, I found out ...
1
vote
0answers
45 views
Bean to monitor a topic and give statistics in a portlet?
I'm new to java and i'm not sure how to implement the following.
We have a topic queue where some java apps write various object messages to (Performance with Min,max and avg processing ...
1
vote
1answer
531 views
Passing parameter through notifyTopics in Struts2?
Situation:
Before deleting an entity from a list through notifyTopics it asks for confirmation.
<script type="text/javascript">
(function($) {
...
0
votes
1answer
40 views
how can I load a component from a jsp into another jsp?
I was told I could load a single component from a jsp file through his id, I'm using this:
<sj:div id="div1" class="text"
...
0
votes
1answer
61 views
ActiveMQ Topic Memory Usage
I need to publish a large number of [header only] messages, each of which belongs to a unique category. Consider:
A.B.C.D.E.F
Ideally, all other considerations aside, I would like to publish each ...
0
votes
1answer
11 views
[django]How to get topics user replied?
class Topic(models.Model):
title = models.CharField(max_length=100)
body = models.TextField(_('body'), max_length=TEXT_MAX_LENGTH)
user = models.ForeignKey(User, ...
0
votes
1answer
94 views
activemq NoB: broker not getting messages after reconnect
We have a hub-and-spoke network topology with activemq with topic and durable subscribers.
After a (embedded) broker has been disconnected, it does not get the messages that have been sent during the ...
0
votes
1answer
40 views
How can I prevent receiving JMS messages that I have produced?
Here's the scenario. I have a legacy system with two parts, Part A and Part B, that send messages to each other in a sort of client/server fashion. I've created an adapter that translates these ...
0
votes
0answers
68 views
JMS Topic doesn't dispatch the message to all the suscribers
new problem today,
I'm developping a J2EE application using glassfish 3, J2EE 6 and JMS.
There is two webpages, index.jsp (login) and room.jsp (display all connected players).
I'm using JMS for ...
0
votes
1answer
111 views
How is ordering preserved in ActiveMQ?
I have set up an application to listen to an ActiveMQ topic. Here's the way I have configured it:
<jms:listener-container connection-factory="jmsFactory"
container-type="default" ...
0
votes
1answer
251 views
ActiveMQ CMS: How more than 1 consumer can recieve the same message on the same queue (I don't want load-balancing to happen)?
I have designed and implemented my framework keeping rabbimq in mind and was almost done with that, but at the last state, I have to move to activeMQ, so currently, finding the equivalence of all the ...
0
votes
1answer
379 views
Topic prediction using Latent Dirichlet Allocation
I have used LDA on a corpus of documents and found some Topics. The output of my code is two matrices containing probabilities. one doc-topic probabilities and the other word-topic probabilities. But ...
0
votes
2answers
61 views
mysql php forum list
here are my tables
topics
-id
-title
-category_id
posts
-id
-topic_id
-user_id
-date
-time
-txt
user
-id
-username
i want to list for a category every topic with the following information
the ...
0
votes
1answer
513 views
How does a JMS Topic Subscriber in a clustered application server recieve messages?
Suppose I created a JMS Topic (PropertiesTopic) with one subscriber (PropertiesSubscriber). PropertiesSubscriber is running in a load balanced application server cluster as shown in the picture below. ...
0
votes
1answer
1k views
Struts2 and Dojo (double?) publish
I am publishing with dojo topics:
dojo.event.topic.publish("publishThisTarget");
And in JSP I have listenTopics:
<s:url var="url2publish" action="MyAction" namespace="/public" />
<sx:div ...