• Proliferation of micro blogging and the importance of on-topic tweets for time-critical situational awareness to disaster-affected communities and professional responders
• Challenges
o finding informative and relevant information to accelerate disaster response
o Information overload: Labor-intensive content moderation process as a bottleneck to quickly identify task-related information from incoming messages from the crowd
Auto filtering of relative and informative messages
Automatic categorization of messages
• Research Gap
o Several machine learning techniques have been applied in this domain but all features considered in the classifiers are selected in a data-driven approach without a sound understanding of decision-makers’ information needs and requirements, may result in ineffective filtering and mis classification.
o By incorporating the key words generated by a top-down approach with structured domain-knowledge proposed, the accuracy of classification still has the potentials for improvement
Last Completed Projects
| topic title | academic level | Writer | delivered |
|---|
jQuery(document).ready(function($) { var currentPage = 1; // Initialize current page
function reloadLatestPosts() { // Perform AJAX request $.ajax({ url: lpr_ajax.ajax_url, type: 'post', data: { action: 'lpr_get_latest_posts', paged: currentPage // Send current page number to server }, success: function(response) { // Clear existing content of the container $('#lpr-posts-container').empty();
// Append new posts and fade in $('#lpr-posts-container').append(response).hide().fadeIn('slow');
// Increment current page for next pagination currentPage++; }, error: function(xhr, status, error) { console.error('AJAX request error:', error); } }); }
// Initially load latest posts reloadLatestPosts();
// Example of subsequent reloads setInterval(function() { reloadLatestPosts(); }, 7000); // Reload every 7 seconds });

