Goto

Collaborating Authors

 Government


Europe Is Pumping Billions Into New Military Tech

WIRED

The European Commission is pressing the accelerator on investment in weapons and defense technologies. From a total 590 million invested between 2017 and 2020, Brussels has moved to a 7.3 billion ( 7.9 billion) package for the 2021 to 2027 period. This year alone, the European Defense Fund (EDF) has put 1.1 billion on the plate, divided into 34 calls for as many military-related research topics. From developing new drone models to sensors to increase radar capabilities. From systems to counter hypersonic missile attacks to enhancements in the analysis of images collected by satellites. From "smart weapons" to advanced communication technologies.


Secret Service's Trump rally security failures could have been avoided with 'eyes in the skies': Rep Guest

FOX News

BETHAL PARK, Penn โ€“ The U.S. Secret Service had availability to use drones and chose not to at the fateful Pennsylvania rally that spiraled into an assassination attempt against former President Trump, Rep. Michael Guest said. Guest, R-Miss., told Fox News Digital that elected officials were briefed that no counter-drone use from the Secret Service or the Pennsylvania State Police (PSP) was used in preparation for and during the Butler, Pennsylvania, campaign rally on July 13. The Republican said the PSP revealed it did have the availability of drones but that no requests were made. "The Secret Service was responsible for the operational plan," he said. "And they made the decision to not only not fly drones that day but to not station law enforcement on top of a water tower."


Surveys Considered Harmful? Reflecting on the Use of Surveys in AI Research, Development, and Governance

arXiv.org Artificial Intelligence

Calls for engagement with the public in Artificial Intelligence (AI) research, development, and governance are increasing, leading to the use of surveys to capture people's values, perceptions, and experiences related to AI. In this paper, we critically examine the state of human participant surveys associated with these topics. Through both a reflexive analysis of a survey pilot spanning six countries and a systematic literature review of 44 papers featuring public surveys related to AI, we explore prominent perspectives and methodological nuances associated with surveys to date. We find that public surveys on AI topics are vulnerable to specific Western knowledge, values, and assumptions in their design, including in their positioning of ethical concepts and societal values, lack sufficient critical discourse surrounding deployment strategies, and demonstrate inconsistent forms of transparency in their reporting. Based on our findings, we distill provocations and heuristic questions for our community, to recognize the limitations of surveys for meeting the goals of engagement, and to cultivate shared principles to design, deploy, and interpret surveys cautiously and responsibly.


Distributed Multi-robot Online Sampling with Budget Constraints

arXiv.org Artificial Intelligence

In multi-robot informative path planning the problem is to find a route for each robot in a team to visit a set of locations that can provide the most useful data to reconstruct an unknown scalar field. In the budgeted version, each robot is subject to a travel budget limiting the distance it can travel. Our interest in this problem is motivated by applications in precision agriculture, where robots are used to collect measurements to estimate domain-relevant scalar parameters such as soil moisture or nitrates concentrations. In this paper, we propose an online, distributed multi-robot sampling algorithm based on Monte Carlo Tree Search (MCTS) where each robot iteratively selects the next sampling location through communication with other robots and considering its remaining budget. We evaluate our proposed method for varying team sizes and in different environments, and we compare our solution with four different baseline methods. Our experiments show that our solution outperforms the baselines when the budget is tight by collecting measurements leading to smaller reconstruction errors.


A Survey of Malware Detection Using Deep Learning

arXiv.org Artificial Intelligence

The problem of malicious software (malware) detection and classification is a complex task, and there is no perfect approach. There is still a lot of work to be done. Unlike most other research areas, standard benchmarks are difficult to find for malware detection. This paper aims to investigate recent advances in malware detection on MacOS, Windows, iOS, Android, and Linux using deep learning (DL) by investigating DL in text and image classification, the use of pre-trained and multi-task learning models for malware detection approaches to obtain high accuracy and which the best approach if we have a standard benchmark dataset. We discuss the issues and the challenges in malware detection using DL classifiers by reviewing the effectiveness of these DL classifiers and their inability to explain their decisions and actions to DL developers presenting the need to use Explainable Machine Learning (XAI) or Interpretable Machine Learning (IML) programs. Additionally, we discuss the impact of adversarial attacks on deep learning models, negatively affecting their generalization capabilities and resulting in poor performance on unseen data. We believe there is a need to train and test the effectiveness and efficiency of the current state-of-the-art deep learning models on different malware datasets. We examine eight popular DL approaches on various datasets. This survey will help researchers develop a general understanding of malware recognition using deep learning.


The power of Prompts: Evaluating and Mitigating Gender Bias in MT with LLMs

arXiv.org Artificial Intelligence

This paper studies gender bias in machine translation through the lens of Large Language Models (LLMs). Four widely-used test sets are employed to benchmark various base LLMs, comparing their translation quality and gender bias against state-of-the-art Neural Machine Translation (NMT) models for English to Catalan (En $\rightarrow$ Ca) and English to Spanish (En $\rightarrow$ Es) translation directions. Our findings reveal pervasive gender bias across all models, with base LLMs exhibiting a higher degree of bias compared to NMT models. To combat this bias, we explore prompting engineering techniques applied to an instruction-tuned LLM. We identify a prompt structure that significantly reduces gender bias by up to 12% on the WinoMT evaluation dataset compared to more straightforward prompts. These results significantly reduce the gender bias accuracy gap between LLMs and traditional NMT systems.


Unsqueeze [CLS] Bottleneck to Learn Rich Representations

arXiv.org Artificial Intelligence

Distillation-based self-supervised learning typically leads to more compressed representations due to its radical clustering process and the implementation of a sharper target distribution. To overcome this limitation and preserve more information from input, we introduce UDI, conceptualized as Unsqueezed Distillation-based self-supervised learning (SSL). UDI enriches the learned representation by encouraging multimodal prediction distilled from a consolidated profile of local predictions that are derived via stratified sampling. Our evaluations show that UDI not only promotes semantically meaningful representations at instance level, delivering superior or competitive results to state-of-the-art SSL methods in image classification, but also effectively preserves the nuisance of input, which yields significant improvement in dense prediction tasks, including object detection and segmentation. Additionally, UDI performs competitively in low-shot image classification, improving the scalability of joint-embedding pipelines. Various visualizations and ablation studies are presented to further elucidate the mechanisms behind UDI. Our source code is available at https://github.com/ISL-CV/udi.


Binary Bleed: Fast Distributed and Parallel Method for Automatic Model Selection

arXiv.org Artificial Intelligence

In several Machine Learning (ML) clustering and dimensionality reduction approaches, such as non-negative matrix factorization (NMF), RESCAL, and K-Means clustering, users must select a hyper-parameter k to define the number of clusters or components that yield an ideal separation of samples or clean clusters. This selection, while difficult, is crucial to avoid overfitting or underfitting the data. Several ML applications use scoring methods (e.g., Silhouette and Davies Boulding scores) to evaluate the cluster pattern stability for a specific k. The score is calculated for different trials over a range of k, and the ideal k is heuristically selected as the value before the model starts overfitting, indicated by a drop or increase in the score resembling an elbow curve plot. While the grid-search method can be used to accurately find a good k value, visiting a range of k can become time-consuming and computationally resource-intensive. In this paper, we introduce the Binary Bleed method based on binary search, which significantly reduces the k search space for these grid-search ML algorithms by truncating the target k values from the search space using a heuristic with thresholding over the scores. Binary Bleed is designed to work with single-node serial, single-node multi-processing, and distributed computing resources. In our experiments, we demonstrate the reduced search space gain over a naive sequential search of the ideal k and the accuracy of the Binary Bleed in identifying the correct k for NMFk, K-Means pyDNMFk, and pyDRESCALk with Silhouette and Davies Boulding scores. We make our implementation of Binary Bleed for the NMF algorithm available on GitHub.


Spatial Temporal Approach for High-Resolution Gridded Wind Forecasting across Southwest Western Australia

arXiv.org Artificial Intelligence

Accurate forecasting of wind speed and direction is paramount across various domains, playing a pivotal role in weather prediction, renewable energy generation, agricultural management, and bushfire mitigation efforts. Accurate predictions enable meteorologists to deepen their understanding of atmospheric processes, leading to more precise weather forecasts and timely alerts for severe weather events [1]. In the realm of renewable energy, precise forecasts of wind conditions are indispensable to optimise the performance of wind farms and integrate wind energy efficiently into the power grid [2-4]. In agriculture, wind forecasts inform critical decisions such as crop spraying, sprinkler or central pivot irrigation timing, and pest control, ultimately improving crop yields and water management [5]. For bush-fire management, timely and accurate predictions of wind speed and direction are crucial for modelling fire behaviour, planning firefighter deployment, and planning evacuations, thereby reducing the impact of bushfires on communities and ecosystems [6, 7]. Given the multifaceted applications of wind forecasting, advancements in machine learning-based techniques for predicting wind speed and direction hold immense promise for bolstering societal resilience and fostering sustainable development. Traditionally, wind forecasting models fall into three categories: physical, statistical time series analysis and machine learning.


Examining the Influence of Political Bias on Large Language Model Performance in Stance Classification

arXiv.org Artificial Intelligence

Large Language Models (LLMs) have demonstrated remarkable capabilities in executing tasks based on natural language queries. However, these models, trained on curated datasets, inherently embody biases ranging from racial to national and gender biases. It remains uncertain whether these biases impact the performance of LLMs for certain tasks. In this study, we investigate the political biases of LLMs within the stance classification task, specifically examining whether these models exhibit a tendency to more accurately classify politically-charged stances. Utilizing three datasets, seven LLMs, and four distinct prompting schemes, we analyze the performance of LLMs on politically oriented statements and targets. Our findings reveal a statistically significant difference in the performance of LLMs across various politically oriented stance classification tasks. Furthermore, we observe that this difference primarily manifests at the dataset level, with models and prompting schemes showing statistically similar performances across different stance classification datasets. Lastly, we observe that when there is greater ambiguity in the target the statement is directed towards, LLMs have poorer stance classification accuracy. Code & Dataset: http://doi.org/10.5281/zenodo.12938478