Next Article in Journal
A Proposal of Behavior-Based Consumption Profiles for Green Software Design
Previous Article in Journal
Modifications to ArduSub That Improve BlueROV SITL Accuracy and Design of Hybrid Autopilot
Previous Article in Special Issue
Prediction and Analysis of Airport Surface Taxi Time: Classification, Features, and Methodology
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Review

Large Language Models for Intelligent Transportation: A Review of the State of the Art and Challenges

State Key Lab of CNS/ATM, Beihang University, Beijing 100191, China
*
Author to whom correspondence should be addressed.
Appl. Sci. 2024, 14(17), 7455; https://doi.org/10.3390/app14177455 (registering DOI)
Submission received: 30 July 2024 / Revised: 18 August 2024 / Accepted: 20 August 2024 / Published: 23 August 2024

Abstract

:
Large Language Models (LLMs), based on their highly developed ability to comprehend and generate human-like text, promise to revolutionize all aspects of society. These LLMs facilitate complex language understanding, translation, content generation, and problem-solving, enabled by vast historical data processing and fine-tuning. Throughout the past year, with the initial release of ChatGPT to the public, many papers have appeared on how to exploit LLMs for the ways we operate and interact with intelligent transportation systems. In this study, we review more than 130 papers on the subject and group them according to their major contributions into the following five categories: autonomous driving, safety, tourism, traffic, and others. Based on the aggregated proposals and findings in the extant literature, this paper concludes with a set of challenges and research recommendations, hopefully contributing to guide research in this young, yet extremely active research domain.

1. Introduction

Artificial Intelligence (AI) has become a cornerstone of Intelligent Transportation Systems (ITS). By harnessing the power of AI, ITS can process and analyze massive volumes of data from various sources, including traffic sensors, GPS, and surveillance cameras, for traffic signal control [1], car driver surveillance [2], autonomous driving [3], routing optimization [4], activity recognition [5], mode choice prediction [6], and multi-modal UAV classification [7], collaborative decision making [8] and airline efficiency [9]. Traditional AI approaches, while effective in many scenarios, often rely on structured data and require extensive feature engineering and domain-specific knowledge to address specific problems. These methods, though powerful, are often limited by their need for predefined algorithms and structured datasets, which may not fully capture the complexities and nuances of real-world environments [10,11,12]. This is where Large Language Models (LLMs) promise a groundbreaking advancement. Unlike traditional AI, LLMs are designed to process and understand unstructured data, such as natural language, images, and even complex sensor data, in a way that is more akin to human cognition [13,14,15]. This capability allows LLMs to handle the vast and diverse data inputs characteristic of modern transportation systems, making them more adaptable and responsive to the dynamic nature of transportation challenges. Moreover, LLMs can significantly enhance human–machine interaction. Accordingly, the integration of LLMs into ITS marks a significant step forward, enabling the development of smarter, more responsive transportation systems that are better equipped to meet the demands of the future.
Given the huge potential of LLMs for transportation, there is not only a tremendous interest among the general public, but also a surge in research papers. The rapid evolution of LLMs encourages continual iteration and improvement, as well as enabling new application areas. The scholarly work, however, has become scattered across scientific domains/outlets as well as preprint repositories. Our study aims to address this problem by providing a comprehensive overview of the current state of LLM applications in ITS research, identify key challenges, and propose future research directions to guide this emerging field. In total, we have collected more than 130 scientific papers on a wide range of LLM applications in ITS. These papers were grouped into five categories: autonomous driving, safety, tourism, traffic, and others. For each category, we provide a discussion of major results and challenges. Contrary to existing studies, which have predominantly explored individual applications of LLMs in transportation, our review systematically categorizes the literature, identifies important challenges, and suggests avenues for future research.
The remainder of this study is structured as follows. Section 2 summarizes the technical preliminaries for LLMs. Section 3 reviews the extant literature on the actual and potential impact of LLMs on the transportation system. Section 4 discusses a set of open challenges for the successful dissemination of LLMs in transportation. Section 5 concludes our study.

2. Preliminaries on Large Language Models

In this section, we provide a brief overview of the methodological foundations of LLMs; for detailed descriptions, please refer to surveys in the related literature, e.g., [10,16,17,18]. Traditional Recurrent Neural Networks (RNNs) had two major drawbacks: the inability to (a) effectively deal with long-range dependencies and (b) perform parallel computations, leading to low computational efficiency. The need for modern large-scale models required the development of novel methodologies, and transformers filled this role by revolutionizing natural language processing through the introduction of a self-attention mechanism. This mechanism allows models to capture relationships between distinct words much more effectively, weighing the importance of different words in a sentence when generating or understanding the text. Modern LLMs, including GPT, are largely built on the transformer architecture proposed by [19]. The transformer mainly addresses the Seq2Seq problem, where the input and output sequences are often of different lengths; it consists of two main components: the encoder and the decoder. The encoder takes an input sequence of tokens and processes them in parallel. It consists of multiple layers of self-attention and feed-forward neural networks. Each layer has multiple attention heads that capture different aspects of the input sequence. The decoder, on the other hand, generates the output sequence autoregressively, token by token. It also consists of multiple layers of self-attention and feed-forward networks but with an additional attention mechanism over the encoder’s output. During training, the model is fed with the input sequence, and the decoder learns to predict the next token given the previous tokens. Figure 1 shows an example of the encoder–decoder architecture. x 1 , x 2 , x 3 represent the input sequence, which, after passing through the encoder, produces hidden states h 1 , h 2 , h 3 . The purpose of the decoder is to generate words sequentially. Initially, the special token < b o s > (the beginning of sentence) is given, and the decoder generates y 1 . Given y 1 , the decoder generates y 2 , and so on, until the decoder generates the special token < e o s > (end of sentence), indicating the completion of the sentence.
The attention mechanism is a key component of Large Language Models and plays a vital role in capturing dependencies and relationships among words in a sentence. Attention allows the model to focus on different parts of the input sequence when generating or understanding each token. Given an input sequence, the attention mechanism computes a weighted sum of the values associated with each token, where the weights are determined by the relevance of each token. The relevance is computed by comparing the query vector, derived from the current position, with the key vectors derived from all positions in the sequence. Let each word be represented as ( x 1 , x 2 , , x n ) . Compute the corresponding query vectors q, key vectors k, and value vectors v through linear transformations:
q i = W q x i , k i = W k x i , v i = W v x i
Split the query vectors q, key vectors k, and value vectors v into multiple heads q i h , k i h , v i h = W q h x i , W k h x i , W v h x i , where h denotes the h-th attention head, and W q h , W k h , W v h are the corresponding linear transformation weights. The core formula for the transformer’s attention mechanism is Attention ( Q , K , V ) = softmax Q K T d k V , where, Q , K , V represent queries, keys, and values, respectively, and d k is the dimension of the keys. The attention mechanism allows the model to assign higher weights to relevant tokens and lower weights to irrelevant ones, enabling it to focus on the most important information for a given context. For the i-th input word, we compute the attention scores as e i j h = q i h · ( k j h ) T / d k , where j represents the position in the input sequence and d k represents the dimension of the query and key vectors. The attention scores are normalized to obtain attention weights as follows: α i j h = exp ( e i j h ) j exp ( e i j h ) . Weight the value vectors using the attention weights to obtain the attention output for each head, which are computed as z i h = j α i j h v j h . Next, attention outputs from multiple heads are concatenated to obtain the final attention representation z i = Concat ( z i 1 , z i 2 , , z i H ) , where H denotes the number of attention heads. Residual connection and layer normalization are performed via o i = LayerNorm ( z i + x i ) , where x i represents the input word representation, and o i represents the output after attention computation. The output is passed through a feed-forward neural network (FFN) consisting of two linear transformations and an activation function to obtain the final encoder output f i = FFN ( o i ) , where FFN ( · ) denotes the feed-forward neural network. After these steps, the encoder produces the final representations f i for each input word, which are then passed to the decoder for the generation process.

3. Literature Review

This section reviews the extant literature on the application of LLMs in the transportation domain. Traditional reviews cover research over periods of 1–2 decades. The subject of LLMs for ITS has, however, experienced a sudden (research) hype in the year 2023 following the release of ChatGPT to the public. The concurrent publication of papers on this hot topic across different scientific venues has led to a scattered state of the literature, where key findings are fragmented and not effectively integrated. This dispersion often results in insufficient experimental comparisons and inadequate cross-referencing among studies, as researchers are often not fully aware of or fail to acknowledge similar work under review/published elsewhere. Consequently, this application field potentially suffers from redundancy, with multiple studies addressing highly similar research questions independently rather than building upon each other. This lack of coordination hampers the development of a cohesive understanding of the topic and can slow down progress, as valuable insights and methodological advancements are not shared or critically evaluated in a unified manner. The result is a body of literature that, despite being abundant, remains disjointed, with significant challenges in synthesizing knowledge and advancing the field systematically. This is the motivation for our review, to provide a go-to point for researchers working on LLM applications for ITS, to better understand which research questions have been addressed in the literature.
Our review is grouped into five categories. Section 3.1 discusses recent proposals and advances of LLMs for autonomous driving. Section 3.2 focuses on how LLMs can be applied in transportation safety applications. Section 3.3 develops an overview of the usage of LLMs in the tourism industry. Section 3.4 reports on existing studies with a focus on traffic applications. Section 3.5 summarizes other papers that do not fit clearly into the four earlier categories.

3.1. Autonomous Driving

Autonomous driving (AD) allows vehicles to operate and navigate without direct human intervention. It combines technologies from various domains, including sensors, computer vision, and Artificial Intelligence, in order to perform tasks such as environmental understanding, communication, decision making, planning, and control. In this section, we review recent studies on how LLMs could be applied and investigate the potential of LLMs to support AD development; see Table 1 for an overview.
The combination of autonomous driving and LLMs is promising to mutually enhance AD performance for users (e.g., in-vehicle voice assistants and driving-related decision-making), as well as vehicles (e.g., complex environmental perception, intelligent anomaly detection, and battery management) [27,29,34]. From the perspective of users, LLMs can mainly improve user interactions with autonomous vehicles, including feedback on driving quality, the inclusion of personal preferences for controlling driving behavior, and searching for route information, e.g., traffic status and weather [20,25,33]. This particularly holds in situations where an AD system encounters uncertainties or requires input for further decision-making; in these cases, LLMs could provide the foundation for engaging users in comprehensive dialogues, addressing concerns about safety, comfort, or route alterations in real time. To date, the communication between drivers/passengers and cars is rather rudimentary and is mostly built around keywords/a restricted number of use cases. LLMs promise to enable a more natural and intuitive interaction at a wider coverage; possibly beyond the original intention of the car maker/operator. The latter potentially raises security/safety concerns, given that users are unlikely to interfere with the AD system in unintended ways.
From the perspective of vehicles, the integration with LLMs pledges to improve the performance and safety of AD [31]. For instance, according to [26], AD systems that drive like a humans should have three key abilities: reasoning, interpretation, and memorization. They built a closed-loop system to examine the feasibility of employing LLMs in AD scenarios, indicating the outstanding ability of LLMs to reason and solve so-called long-tailed cases. Ref. [21] proposed a decision-making framework called DriveLLM, which aggregated autonomous driving stacks and LLMs for common-sense reasoning in decision-making. The cyber-physical feedback system enabled DriveLLM to learn from its mistakes and improve its performance. Similarly, ref. [32] proposed the DiLu framework based on the emergent abilities of LLMs and real-world datasets. Ref. [28] developed cognitive pathways and algorithms, for comprehensive reasoning with LLMs and transition from LLM decisions to actionable driving commands, respectively. Their method surpassed baseline approaches in single-vehicle tasks and assisted with complex driving behaviors even concerning multi-vehicle coordination. Ref. [23] presented an end-to-end test generation framework to automatically construct test scenarios in the autonomous driving simulator where the key information of traffic rules are extracted by ChatGPT-4. Their experiments on different autonomous driving systems, traffic rules, and road maps revealed effective identifications of rule violations and uncovered known issues. To handle information barriers due to the heterogeneity at both the system and module levels, ref. [30] devised a Transformer-based unified framework called VistaGPT by integrating Modular Federations of Vehicular (M-FoV) Transformers and Automated Autonomous (AutoAuto) Driving Systems.
Multi-modal Large Language Models (MLLMs), which extend LLMs with the ability to process/create image, video and audio data, have a huge potential to be utilized for improving the traditional tasks of the perception, planning, and control of autonomous driving [35]. Vision–language models (VLMs) enable AD to deeply understand real-world environments, which could further enhance the safety and efficiency of operations [36]. Ref. [24] developed a large vision–language model (LVLM) called Talk2BEV, which augments bird’s-eye-view maps with language for various AD tasks such as visual/spatial reasoning, predictions of traffic actors’ intents, and decision-making. They also developed a benchmark to evaluate LVLMs in AD, consisting of 1000 human-annotated bird’s-eye-view scenarios. There are various challenges for industrial applications of MLLMs, such as limitations in data scale and quality, hardware supports, user–vehicle interaction, personalized autonomous driving, and trustworthiness and safety for autonomous driving; see [22] for a comprehensive discussion.

3.2. Safety

Many transportation applications come with strong safety requirements. The ability of LLMs to handle massive and complex data efficiently has huge potential for risk assessment and accident prevention in order to identify potential hazards early and offer proactive suggestions to mitigate risks. Existing studies focus on safety applications concerning multiple modalities, mainly including aviation safety and road traffic safety; see Table 2 for a summary.
Safety is of utmost importance in aviation, mainly due to the complex operational environment involving high-speed transportation, complex technological systems, and the important role of public perception when it comes to aviation-related accidents. Accordingly, it is crucial for aviation stakeholders to mitigate risks to prevent catastrophic events, adhering to strict regulatory standards. Existing studies mainly work with domain-specific text-based data from various accident reporting systems, e.g., targeting to enhance the accuracy of report classification and analysis. A custom aviation-domain-specific BERT model (Aviation-BERT) was implemented by [39] to perform text-mining tasks and was pre-trained based on text from the National Transportation Safety Board (NTSB) and Aviation Safety Reporting System (ASRS). Based on this aviation-specific BERT model, ref. [43] focused on multi-label classification problems and highlighted the significance of Aviation-BERT with superior performance on the ASRS data. In [50], accident report automation, traffic data augmentation, and multisensory safety analysis were performed through innovative LLM-based tools. Ref. [37] classified safety reports about weather and procedures by presenting a novel safety-informed SafeAeroBERT model. Serving as effective copilots or assistants in the aviation safety system, LLMs could identify safety issues and potential risks according to the historical data [42,48]. Ref. [47] compared the performance of domain-specific experts and aeroBERT in the human factor issues about aviation safety and discussed the advantages of LLMs within the context of safety analysis. Analyzing three cases (Air France AF447, TransAsia Airways flight GE235, and Helios Airways Flight HCY552 accidents), ref. [51] showed that ChatGPT could not investigate the factors simultaneously from both high-level and low-level perspectives. Moreover, ref. [44] utilized a compact model to predict different types of anomalies (e.g., aircraft equipment problem, conflict, altitude deviation, and procedural deviation) from ASRS. The authors demonstrated that pre-training a compact transformer-based language model is beneficial for solving domain-specific tasks.
Similar proposals have been made for other modalities, e.g., concerning road traffic safety. Ref. [40] constructed an entity recognition-based model to extract key features in traffic accident texts, where phenomena such as few-case data and poor recognition of long text were addressed. Among three typical LLMs (i.e., ChatGPT, BARD, and GPT4), ref. [45] explored the particularities and limitations in extracting critical keywords and answering accident-related queries. When it comes to the factors about road traffic safety, an accurate case-based reasoning (CBR) system was proposed to conduct root-cause analysis to eliminate road accidents, compared with the predictions of ChatGPT [46]. Ref. [41] considered the concept of multi-modality in autonomous driving systems, which applied the integration of compact LLMs, large language-and-vision assistant (LLaVa), and visual language model (VLM) into traffic accident forecasting. Due to incompleteness, inaccuracies, and omissions from the historical data, ref. [38] introduced an LLM-focused method to identify the under-reported factors/risks from traffic crashes. For example, the identification of potential alcohol involvement in accident data through different underlying models (i.e., Flan-UL2, Llama-2, and ChatGPT) was highlighted. Ref. [49] adopted a novel LLaMA-based model, namely TrafficSafetyGPT, which has undergone supervised fine-tuning for training a domain-specific expert in traffic safety.

3.3. Tourism

In the tourism industry, LLMs can be applied for diverse purposes on the demand and supply side. Tourists, for instance, could use LLMs to obtain information concerning destinations, attractions, traffic, hotels, restaurants, local culture/customs, and language translation. Travelers can also plan their entire itineraries by asking for suggestions from LLMs based on available time, interests, and preferences. For travel-related companies, on the other hand, LLMs could be used to optimize both front-end and back-end operations at technical and management levels regarding new products, targeted advertising, and staff training; see Table 3 for an overview.
Applications of LLMs in the tourism industry are promising to induce a whole range of transformations [57], creating value for both customers and companies by changing ways for tourists to search for information and make decisions, as well as patterns of companies’ offerings of products and and services [60,61,69]. From the perspective of customers, LLMs can be utilized during pre-trip, en-route, and post-trip stages [70]. Ref. [58] found that people held positive views on the usability of LLMs in trip planning, without obvious differences in attitudes between first-time users and those who had previously used LLMs. Nevertheless, the decision making of travelers will be influenced by the technology usage experience, prominence and type of incorrect information from LLMs and user interface [64,65,68].
From the perspective of companies, the incorporation with LLMs can offer advances in multilingual communication, personalized services, content creation, product development, operational efficiency, and customer loyalty [59,62,66]. In the travel industry, LLMs empower service individualization and internalizing information, leading to positive effects on service value co-creation. In particular, ChatGPT could significantly moderate the relationships between service individualization and internalizing information/service value co-creation [54]. To examine the personalized travel recommendation offered by ChatGPT, ref. [52] conducted a lay theory study and an in-depth analysis based on the data collected from 102 panelists on Prolific and 344 respondents via Amazon MTurk, respectively. They revealed that relevance, credibility, usefulness, and intelligence played significantly positive roles in the perceived trust of travelers, which further contributed to behavioral intentions.
Tourism education and research will also go through reforms with wider application of LLMs. Universities should reevaluate their teaching/research modes and assessment strategies and properly integrate LLMs into new patterns [63,67]. On the other hand, LLMs may cause issues such as paper/assignment plagiarism, data breach, bias, the lack of human touch, and unemployment involving some travel agency staff, app/website developers, customer service employees, and tour guides [53,55]. Therefore, the regulations of LLMs’ tourism-related applications are crucial for both academia and industry [56].

3.4. Traffic

In this category, we collect studies related to traffic operation, traffic design, and traffic management. Considering complicated real-world traffic situations, LLMs could outperform traditional tools in terms of high accuracy and efficiency. LLMs exhibit remarkable potential in facilitating advanced data-mining and human-AI interaction capabilities according to extant studies; see Table 4 for a summary.
LLMs could be applied in road traffic control at macroscopic and microcosmic scales. Ref. [71] exploited the LLM’s interface to analyze how dynamic features influenced the traffic flow and developed a prompt-based grounded action transformer method for traffic signal control. Ref. [83] highlighted that ChatGPT could solve complex mixed traffic control problems, such as ring road, bottleneck, and intersection environments. In [88], specialized traffic foundation models could deal with the challenge of processing numerical data, assisting policy makers in deriving decisions for traffic control. On the other hand, LLMs, as assistants or co-pilots for individual vehicles, can accomplish specific driving tasks [85]. Ref. [80] explored the integration of ChatGPT and electric vehicles, which optimized energy management to save energy and promote sustainability. Ref. [87] discussed a wide range of applications for intelligent driving and LLMs, i.e., prediction of dynamic scenarios, decision-making in real traffic situations, and high-level autonomous driving. In addition, air traffic control is also a potential area for researchers to explore the applications of LLMs. During the decoding and re-scoring phases of air traffic control, ref. [74] presented a context-aware language model (CALM) for automatic speech recognition. Ref. [77] evaluated some pre-built deep-learning-based transformer models on question-answering tasks in terms of accuracy and precision. Based on air traffic control instructions, ref. [84] introduced a BERT-based model for entity extraction tasks and found that this proposed model achieved excellent performance. By pre-training the BERT-based model with various road data, ref. [75] increased the generalizability and robustness of the TrafficBERT method. Ref. [72] prejudged the pedestrian maneuver types to avoid traffic accidents between vehicles and pedestrians. Compared with multinomial logit, random forest, and neural networks, LLMs performed great reasoning abilities to predict travel behavior [78]. Ref. [82] first established the urban context driver agent simulation framework based on LLMs, adapted to the rules conveniently by using natural language and cases. With the integration of LLM and a transformer-based decoder architecture, ref. [76] identified map locations, traffic distribution, and dynamic features of vehicles in the simulation framework. Moreover, it further showed that this type of model has great potential in driving strategy evaluation and traffic scenario settings.
When LLMs are introduced into traffic monitoring systems, various schemes are necessary to build a safe and efficient intelligent transportation system, including the identification of vehicles in traffic, traffic flow patterns, risk perception, and many more. Ref. [73] investigated the potential of ChatGPT in the domain of traffic monitoring, which could detect risk estimates for driving scenarios. As traffic-domain knowledge is combined with video-language models, ref. [79] developed a novel method for traffic-focused reasoning tasks, namely traffic-domain video question answering with automatic captioning. Ref. [81] explored the Text-to-SQL, Text-to-Python as well as Text-to-Function options with LLMs in traffic congestion, providing an inspiring vision for this application. Ref. [86] devised three novel text-based models for different reasoning tasks: BDD-QA based on the Berkeley deep-drive explanation dataset for situational decision-making, TV-QA based on the Traffic-QA dataset for event factor analysis, and HDT-QA based on the human driving test question answering dataset for solving human driving exams. Ref. [89] captured the dynamic information of vehicles in the network systems from spatial and temporal levels, addressing uncertainties in the underlying data, through graph neural networks (GNNs) and transformer architectures.

3.5. Other

In addition to LLM applications in the above-mentioned areas, researchers and practitioners also have focused on the development and application of LLMs in the context of other transportation-related problems. In particular, building domain-specific models seems to be an emerging topic in the literature. Moreover, exploring the potential of LLMs in the logistics industry could play a critical role; see Table 5 for the characteristics of extant studies related to other LLM applications for transportation.
As LLMs have demonstrated excellent performance in a variety of natural language tasks, efficient transportation-specific understanding could have a positive effect on knowledge integration [99]. In the aviation domain, ref. [90,98] built question-answering (QA) systems with an aviation corpus, highlighting the significance of LLMs. Ref. [95] employed a BERT-based model (i.e., aeroBERT-Classifier) to identify different types of aerospace requirements, ref. [96] created a related aviation corpus where a set of aerospace requirements were included with technical terms and language. When it comes to aerospace engineering problems, ref. [91] took the Peter Chew method as an example to uncover the utilization of ChatGPT, which indicated the excellent mathematical ability of ChatGPT. Ref. [97] considered the topic related to public transportation and utilized ChatGPT to provide meaningful ideas and thoughts. LLMs can also be used to provide an introduction to transport problems and corresponding solutions and to design and assess flight crew staff training [92,94]. Furthermore, satisfying the customers’ demands and requirements is known to be significantly more beneficial to solving transportation-specific problems. For the airline and aviation industry, ref. [100] implemented a customer relationship management (CRM) system according to a custom dataset from five Indian airlines. Ref. [93] analyzed the transit riders’ feedback in ridership surveys by a transit-topic-aware LLM method.
In the logistics industry, LLMs can be used for various operations, such as analyzing sophisticated numerical data, providing actionable insights, managing assortment, forecasting demand, and vehicle routing problems [104,105]. To predict customer calls asking shipment status, ref. [101] utilized a language model to predict the next checkpoint (e.g., station, facility, time, and event code) by following a set of rules about the possible sequence of checkpoints. This method could improve the prediction of customer calls, which then would help reduce the workload of customer center staff, increase customer satisfaction, and reduce expenses and workload for tracing shipments. Refs. [102,103] applied the fine-tuned GPT-3 Codex to automatically build simulations for queuing and inventory systems under verbal descriptions. The expertise of this LLM in coding and domain-specific vocabulary could simplify the workflow of developers for logistics and other industries.
LLMs can also be deployed in other industries and domains involving transportation, with the multidisciplinary collaboration of different employees in the same cross-functional teams [107]. In the supply chain, such technology can help to identify inefficiencies through data analyses related to good production, transportation, and distribution [106]. In education and research, LLMs can help to improve learning efficiency and academic performance, including understanding technology development (e.g., UAV, eVTOL, and CNS/ATM), reviewing the literature, writing text, and programming [108,109].

4. Challenges

Below, we discuss a set of challenges for the successful application and dissemination of LLMs in the transportation sector. The majority of these challenges were directly derived from the literature discussed above.

4.1. Open-Source Models and Reproducibility

Although most closed-source LLMs such as GPT-3.5/GPT-4 attract the public in terms of excellent performance (mostly through ChatGPT), the absence of data/code disclosure leads to several issues [110]. First, the use of closed-source LLMs could bring some ethical risks to society due to the unknown architecture, unclear pre-training data, and the way in which the model was fine-tuned. Second, since the performance of models changes over time—simply note the tremendous evolution of models in the years 2023/2024—and the details are black-boxed, it is very challenging for researchers to generate reproducible results, as shown in recent studies [111,112,113,114,115,116]. Finally, adopting these closed-source LLMs to different domain-specific applications likely involves significant costs. Open-source LLMs, on the other hand, provide the potential to alleviate and solve these problems. Table 6 lists various recent open-source LLMs. Accordingly, we recommend researchers use open-source models for input and also publish the hand/fine-tuned downstream models as open-source. For example, with LLaMA being available under a non-commercial license, ref. [49] selected a pre-trained LLaMA-7B foundation model to fine-tune with domain knowledge of transportation safety and proposed a novel domain-specific model—TrafficSafetyGPT. Also, TrafficSafetyGPT outperformed the state-of-the-art non-specialized LLM of LLaMA on different safety-related tasks. It can be seen that utilizing the existing open-source LLMs in domain-specific applications is a promising topic for boosting LLM development for transportation. Open-source LLMs have clear advantages in transparency and reproducibility [117]. However, it should be noted that many open-source LLMs are only released via their model architecture; the related training data sources are often not available to the public. Accordingly, researchers should make sure that all results can be re-obtained by other groups, like, for instance, ref. [71], who used an open-source framework with multiple simulation types, not only achieved a realistic scenario for traffic control but also generated replicable and reproducible results.

4.2. Human–Machine Interaction

Due to the remarkable performance in natural language processing and generation, LLMs enable systems to effectively complete human–machine interactions (HMIs). For instance, the self-driving technology company Wayve has unveiled a vision–language-action model, called Lingo-1 (https://wayve.ai/press/introducing_lingo1/, accessed on 18 July 2024), which can interactively explain its decision-making to the user. Tesla’s voice command system (https://www.tesla.com/support/voice-commands, accessed on 18 July 2024) allows drivers to control various in-car functions through natural language, reducing manual interactions. For autonomous driving (AD), automation levels are defined from Level 0 (fully manual) to Level 5 (fully autonomous) according to the Society of Automotive Engineers (SAE). All vehicles should be equipped with intelligent communication systems for both drivers and passengers, as voice is increasingly gaining control in the cockpit of a car. LLM-enabled driver monitoring systems can understand the perception of drivers, while passenger-related systems can detect human behavior and predict human intention to satisfy their needs. Moreover, externally oriented systems based on LLM technology need to help AD to better understand and respond to social interactions from other road participants with agility (e.g., human-driven cars, motorcycles, bikes, and pedestrians) instead of mechanically following traffic rules. The decisions and operations in a human-like manner will contribute to reducing potential dangers and improving public trust. For tourism, the application with LLMs should have user-friendly interfaces and provide a smoother and consistent user experience. Melbourne Airport (https://www.melbourneairport.com.au/, accessed on 18 July 2024) has developed a chatbot based on LLMs that provides information regarding real-time flight updates, shop searches, and parking information. Various LLM service providers have connected their LLMs to travel service applications; e.g., Google’s Gemini can directly interact in real time with Google Flights/Google Hotels, and Expedia’s Romie is intended to become an LLM-based travel buddy. These applications need to be able to deal with various types of user behavior (e.g., repeated inquiries, impatience, confusion) during interactions for consulting about travel. In addition, companies can combine with LLMs and other advanced technologies (e.g., augmented reality, and virtual reality) for pre-trip suggestions and online trips. Such new products can offer users a more direct experience/evaluation of tourism suggestions compared with textual descriptions and static pictures.

4.3. Real-Time Capabilities of LLMs

In many recent studies on LLMs, dynamic features of transportation systems are not considered. Therefore, establishing a more efficient language model for incorporating real-time traffic scenarios is an interesting topic. Additionally, internet-connected LLMs will improve the real-time performance of ITSs by integrating the latest information, which can dynamically update efficient routes and avoid incidents and congestion in response to changing traffic conditions. ITSs with internet-connected LLMs moving at a higher speed have greater handoff probability when connecting to mobile networks for communication within systems (e.g., vehicles, infrastructure, and traffic management centers) and online information collection, which requires advanced handover models for seamless connections in overlapping regions. Moreover, to address the latency of data processing and transmission, the integration of LLMs into the field of transportation can deploy the database and applications with distributed computing technologies (e.g., mobile edge computing and blockchain), which enable LLMs to provide output significantly faster by distributing their workload across different servers or devices. Given LLM’s training on large datasets, model-related techniques (e.g., model compression, pruning, quantization, and distillation) can be used for LLMs to reduce the time to process and generate answers by decreasing the model’s size and computation.

4.4. Multi-Modal Integration

Multi-modal LLMs (MLLMs) enable transportation-related applications to comprehensively understand and properly respond to traffic conditions and user requirements, taking into account a multitude of sensors and viewpoints. Accordingly, the processing of image, video, and point cloud data to preserve contextual information and its integration into a most-likely snapshot of reality is essential for transportation-related applications, improving prediction, planning, decision-making, and resource allocation. Data sources include but are not limited to social media, cameras, radars, and lidars. The integration of audio and visual inputs will also significantly enhance user experience and safety. In autonomous driving, such an input pattern can act as a driving assistant to directly adjust driving routes, behavior, and states, minimizing the distraction of drivers. It can also serve drivers and passengers as a chat robot or a voice assistant for entertainment, given the lawful usage of such systems. LLM multi-modal integration involves various techniques. For instance, cross-modal attention mechanisms [145] allow models to focus on selected features across different modalities, while joint/probabilistic embedding spaces [146] map different modalities into a common space for better alignment. Another technique, so-called multi-modal transformers [147], provides separate encoders for each modality, followed by fusion layers downstream. Self-supervised learning and contrastive learning enable the model to learn from unlabeled data and align related content across modalities. New, large datasets should be made public, containing a wide range of multi-modal traffic scenarios for pre-training and performance improvement in real-world applications.

4.5. Verification and Validation Efforts

Along with the hype about LLMs, many researchers have proposed prototypes, and it will not take long until these prototypes find their way into practice. Until then, it is important to develop formal verification and validation protocols for such models when they are interacting with simulated and real-world environments. It will be important to disseminate large benchmark data, containing scenario descriptions and formal definitions of valid answers, as well as means for identifying potentially harmful model responses. Notably, such efforts not only need to be implemented on baseline models but also to fine-tune downstream models. Fine-tuning models have the benefit of not having to re-learn from scratch, enabling researchers to release models with significantly less computational resources and training effort. This is particularly beneficial for domain-specific data, which could enhance LLMs’ understanding of the field’s nuances, such as the accurate prediction of traffic accidents, the identification of factors, and the assessment of responsibility [47]. Due to the complicated environments, LLM evaluation via more experiments, especially large-scale datasets, should be needed to mitigate the random errors of models [78]. At the same time, however, fine-tuning will not only add new (or revise) selected information inside a model but indirectly also lead to side effects, e.g., where changing the weights in the model during fine-tuning changes the behavior of the baseline model beyond expectations. This poses a significant threat for safety-critical applications and requires countermeasures from LLM developers.

4.6. Ethical Considerations

LLMs are trained based on data from the Internet, which includes a tremendous potential for biases, such as historical bias, representation bias, and semantic bias [148]. Therefore, it is necessary to thoroughly evaluate the ethical ramifications of models before putting them into practice. Moreover, users of LLMs will be increasingly in a dilemma-trading situation between privacy and efficiency. On one hand, to guarantee efficiency and performance, users have to upload personal data to the cloud-based LLM services, which poses the threat of further unwanted data collection by service providers. Edge-device-based LLM service paradigms, on the other hand, maintain data locality but are often unable to achieve a satisfying performance. Accordingly, ways to collect, store, process, and share such private data and information should be discussed, which provides guidelines for LLM designers and organizations. Finally, accountability is a critical principle of LLM development, where standards and legal regulations should be available, especially in the context of intelligent transportation system ethics [149,150,151]. Regulations like the General Data Protection Regulation (GDPR) will significantly influence the development and deployment of LLMs in ITS. Given that these regulations place increasingly strict requirements on data privacy, security, and user consent, applications of ITS will need to ensure that data are anonymized or encrypted to comply with GDPR. Moreover, LLM developers will need to implement mechanisms that allow users to control their data, including the right to access, modify, or delete personal information, and to opt out of data collection entirely. Compliance with such regulations will not only pose a set of technical challenges concerning updates and temporal information hiding but also have the potential to slow down the pace of LLM deployment, as companies will need to invest in legal and technical infrastructure to ensure adherence. Additionally, transparency requirements might lead to increased emphasis on explainability, ensuring that LLMs can provide clear reasons and use data for decisions made in transportation contexts, such as routing suggestions or traffic predictions. AI-specific regulations, such as the EU’s proposed AI Act, will similarly influence the development and deployment of LLMs. In this context, applications of ITS will likely be classified as high-risk, necessitating rigorous safety, reliability, and accuracy standards, along with extensive testing and certification processes. Accountability measures will push organizations to establish governance frameworks, conduct regular audits, and ensure ethical use, while the focus on bias and fairness will drive the need for more rigorous evaluations to prevent discriminatory outcomes.

5. Conclusions

In this study, we have reviewed more than 130 papers on how LLMs show a huge potential to transform our transportation systems. All papers were grouped into five categories, namely autonomous driving, safety, tourism, traffic, and others. We have discussed the state of the art and distinctions among extant studies in each category, highlighting the need for a more orchestrated development of LLMs in transportation. Below, we provide a comprehensive summary of the key findings and contributions of our review.
The usage of LLMs in autonomous driving is a well-covered subject in the recent literature. Its prospects for real-world applications are not clear. On one hand, the safety-related arguments directly transfer to autonomous driving: It is a long way to go until these systems can conduct transparent, deterministic, and reproducible decision-making across a wide range of application scenarios with uncertainties. The broad application in safety-related subjects is potentially concerning, given that safety requires transparent, deterministic, and reproducible decision-making. LLMs, however, possess neither of these three properties, as the decision-making process can largely be considered to be a black box at this stage, with researchers only gradually understanding the underlying working principles of different layers and attention mechanisms. For applications that are centered around human–machine interactions and information retrieval in non-critical application areas, e.g., the tourism sector, we will presumably see a tremendous growth in LLM-based services in the upcoming years, particularly in personalized chatbots and so-called travel assistants. Applications in traffic operation/management are various and mostly include the ability to extract structured rules/patterns from large, unstructured collections of historical data.
Our dissection of the extant literature and our discussion of challenges leads to a set of actionable recommendations for future work, which we believe are essential to be addressed by the research community. Reproducibility has a long way to go in the context of LLMs as well, given the tremendous development of the subject and the desire to make technological advances in order to be the first/most successful in the market. For the area of human–machine interaction, the exploration of privacy-preserving techniques is necessary as LLMs are applied to sensitive data, from users as well as operators. This involves developing methods that allow LLMs to function effectively while maintaining strict privacy standards. Moreover, future research should focus on further developing real-time processing capabilities; the effective and scalable incorporation of retrieval-augmented generation, where the knowledge of LLMs is extended by an external knowledge base is a particularly important area worthy of scientific exploration. Similarly, improving multi-modal integration capabilities is crucial. Here, we see ample room for developing reference benchmarks that provide synchronized data across multiple modalities, e.g., from maps, radars, cameras, and user inputs. Such benchmarks will lay the foundation for the further development and comparison of multi-modal integration methods. Finally, verification against existing benchmark results is maybe one of the most important scientific challenges for the community; especially under the consideration of uncertainties and potential non-determinism in LLM-generated answers/instructions. Here, advances in validation, interpretability, and error detection methods are instrumental.

Funding

This study is supported by Beijing Natural Science Foundation (IS24035) and the National Natural Science Foundation of China (Grant No. U2233214, No. 62250710166).

Institutional Review Board Statement

Not applicable.

Informed Consent Statement

Not applicable.

Data Availability Statement

Not applicable.

Conflicts of Interest

The authors declare no conflicts of interest.

References

  1. Li, F.; Yao, J.; Li, B.; Zhang, R.; Qiu, Z. SPSRec: An Efficient Signal Phase Recommendation for Signalized Intersections With GAN and Decision-Tree Model. IEEE Trans. Intell. Transp. Syst. 2023, 24, 15601–15612. [Google Scholar] [CrossRef]
  2. Qin, B.; Qian, J.; Xin, Y.; Liu, B.; Dong, Y. Distracted Driver Detection Based on a CNN With Decreasing Filter Size. IEEE Trans. Intell. Transp. Syst. 2022, 23, 6922–6933. [Google Scholar] [CrossRef]
  3. Wu, M.; Yu, F.R.; Liu, P.X.; He, Y. A Hybrid Driving Decision-Making System Integrating Markov Logic Networks and Connectionist AI. IEEE Trans. Intell. Transp. Syst. 2023, 24, 3514–3527. [Google Scholar] [CrossRef]
  4. Bogyrbayeva, A.; Meraliyev, M.; Mustakhov, T.; Dauletbayev, B. Machine Learning to Solve Vehicle Routing Problems: A Survey. IEEE Trans. Intell. Transp. Syst. 2024, 25, 4754–4772. [Google Scholar] [CrossRef]
  5. Chen, M.; Yuan, Q.; Yang, C.; Zhang, Y. Decoding Urban Mobility: Application of Natural Language Processing and Machine Learning to Activity Pattern Recognition, Prediction, and Temporal Transferability Examination. IEEE Trans. Intell. Transp. Syst. 2024, 25, 7151–7173. [Google Scholar] [CrossRef]
  6. Chen, H.; Cheng, Y. Travel Mode Choice Prediction Using Imbalanced Machine Learning. IEEE Trans. Intell. Transp. Syst. 2023, 24, 3795–3808. [Google Scholar] [CrossRef]
  7. McCoy, J.; Rawal, A.; Rawat, D.B.; Sadler, B.M. Ensemble Deep Learning for Sustainable Multimodal UAV Classification. IEEE Trans. Intell. Transp. Syst. 2023, 24, 15425–15434. [Google Scholar] [CrossRef]
  8. Geske, A.M.; Herold, D.M.; Kummer, S. Integrating AI support into a framework for collaborative decision-making (CDM) for airline disruption management. J. Air Transp. Res. Soc. 2024, 3, 100026. [Google Scholar] [CrossRef]
  9. Geske, A.M.; Herold, D.M.; Kummer, S. Artificial Intelligence as a driver of efficiency in air passenger transport: A systematic literature review and future research avenues. J. Air Transp. Res. Soc. 2024, 3, 100030. [Google Scholar] [CrossRef]
  10. Wei, J.; Tay, Y.; Bommasani, R.; Raffel, C.; Zoph, B.; Borgeaud, S.; Yogatama, D.; Bosma, M.; Zhou, D.; Metzler, D.; et al. Emergent abilities of Large Language Models. arXiv 2022, arXiv:2206.07682. [Google Scholar]
  11. Fei, N.; Lu, Z.; Gao, Y.; Yang, G.; Huo, Y.; Wen, J.; Lu, H.; Song, R.; Gao, X.; Xiang, T.; et al. Towards artificial general intelligence via a multimodal foundation model. Nat. Commun. 2022, 13, 3094. [Google Scholar] [CrossRef]
  12. Bubeck, S.; Chandrasekaran, V.; Eldan, R.; Gehrke, J.; Horvitz, E.; Kamar, E.; Lee, P.; Lee, Y.T.; Li, Y.; Lundberg, S.; et al. Sparks of artificial general intelligence: Early experiments with gpt-4. arXiv 2023, arXiv:2303.12712. [Google Scholar]
  13. Katz, D.M.; Bommarito, M.J.; Gao, S.; Arredondo, P. Gpt-4 passes the bar exam. Philos. Trans. R. Soc. A 2023, 382, 20230254. [Google Scholar] [CrossRef] [PubMed]
  14. Liu, X.; Zheng, Y.; Du, Z.; Ding, M.; Qian, Y.; Yang, Z.; Tang, J. GPT understands, too. AI Open 2023. [CrossRef]
  15. Liu, Y. Large language models for air transportation: A critical review. J. Air Transp. Res. Soc. 2024, 2, 100024. [Google Scholar] [CrossRef]
  16. Radford, A.; Wu, J.; Child, R.; Luan, D.; Amodei, D.; Sutskever, I. Language models are unsupervised multitask learners. OpenAI Blog 2019, 1, 9. [Google Scholar]
  17. Brown, T.; Mann, B.; Ryder, N.; Subbiah, M.; Kaplan, J.D.; Dhariwal, P.; Neelakantan, A.; Shyam, P.; Sastry, G.; Askell, A.; et al. Language models are few-shot learners. Adv. Neural Inf. Process. Syst. 2020, 33, 1877–1901. [Google Scholar]
  18. Min, B.; Ross, H.; Sulem, E.; Veyseh, A.P.B.; Nguyen, T.H.; Sainz, O.; Agirre, E.; Heintz, I.; Roth, D. Recent advances in natural language processing via large pre-trained language models: A survey. ACM Comput. Surv. 2023, 56, 1–40. [Google Scholar] [CrossRef]
  19. Vaswani, A.; Shazeer, N.; Parmar, N.; Uszkoreit, J.; Jones, L.; Gomez, A.N.; Kaiser, Ł.; Polosukhin, I. Attention is all you need. In Proceedings of the 31st Conference on Neural Information Processing Systems, Long Beach, CA, USA, 4–9 December 2017; pp. 6000–6010. [Google Scholar]
  20. Chen, H.; Yuan, K.; Huang, Y.; Guo, L.; Wang, Y.; Chen, J. Feedback is all you need: From ChatGPT to autonomous driving. Sci. China Inf. Sci. 2023, 66, 166201. [Google Scholar] [CrossRef]
  21. Cui, Y.; Huang, S.; Zhong, J.; Liu, Z.; Wang, Y.; Sun, C.; Li, B.; Wang, X.; Khajepour, A. DriveLLM: Charting the Path toward Full Autonomous Driving with Large Language Models. IEEE Trans. Intell. Veh. 2023, 9, 1450–1464. [Google Scholar] [CrossRef]
  22. Cui, C.; Ma, Y.; Cao, X.; Ye, W.; Zhou, Y.; Liang, K.; Chen, J.; Lu, J.; Yang, Z.; Liao, K.D.; et al. A Survey on Multimodal Large Language Models for Autonomous Driving. arXiv 2023, arXiv:2311.12320. [Google Scholar]
  23. Deng, Y.; Yao, J.; Tu, Z.; Zheng, X.; Zhang, M.; Zhang, T. TARGET: Traffic Rule-based Test Generation for Autonomous Driving Systems. arXiv 2023, arXiv:2305.06018. [Google Scholar]
  24. Dewangan, V.; Choudhary, T.; Chandhok, S.; Priyadarshan, S.; Jain, A.; Singh, A.K.; Srivastava, S.; Jatavallabhula, K.M.; Krishna, K.M. Talk2BEV: Language-enhanced Bird’s-eye View Maps for Autonomous Driving. arXiv 2023, arXiv:2310.02251. [Google Scholar]
  25. Du, H.; Teng, S.; Chen, H.; Ma, J.; Wang, X.; Gou, C.; Li, B.; Ma, S.; Miao, Q.; Na, X.; et al. Chat with chatgpt on intelligent vehicles: An IEEE tiv perspective. IEEE Trans. Intell. Veh. 2023, 8, 2020–2026. [Google Scholar] [CrossRef]
  26. Fu, D.; Li, X.; Wen, L.; Dou, M.; Cai, P.; Shi, B.; Qiao, Y. Drive like a human: Rethinking autonomous driving with large language models. arXiv 2023, arXiv:2307.07162. [Google Scholar]
  27. Lei, L.; Zhang, H.; Yang, S.X. ChatGPT in connected and autonomous vehicles: Benefits and challenges. Intell. Robot. 2023, 3, 145–148. [Google Scholar] [CrossRef]
  28. Sha, H.; Mu, Y.; Jiang, Y.; Chen, L.; Xu, C.; Luo, P.; Li, S.E.; Tomizuka, M.; Zhan, W.; Ding, M. Languagempc: Large language models as decision makers for autonomous driving. arXiv 2023, arXiv:2310.03026. [Google Scholar]
  29. Singh, G. Leveraging ChatGPT for Real-Time Decision-Making in Autonomous Systems. Eduzone Int. Peer Rev./Ref. Multidiscip. J. 2023, 12, 101–106. [Google Scholar] [CrossRef]
  30. Tian, Y.; Li, X.; Zhang, H.; Zhao, C.; Li, B.; Wang, X.; Wang, F.Y. VistaGPT: Generative Parallel Transformers for Vehicles With Intelligent Systems for Transport Automation. IEEE Trans. Intell. Veh. 2023, 8, 4198–4207. [Google Scholar] [CrossRef]
  31. Wang, Y.; Jiao, R.; Lang, C.; Zhan, S.S.; Huang, C.; Wang, Z.; Yang, Z.; Zhu, Q. Empowering Autonomous Driving with Large Language Models: A Safety Perspective. arXiv 2023, arXiv:2312.00812. [Google Scholar]
  32. Wen, L.; Fu, D.; Li, X.; Cai, X.; Ma, T.; Cai, P.; Dou, M.; Shi, B.; He, L.; Qiao, Y. Dilu: A knowledge-driven approach to autonomous driving with large language models. arXiv 2023, arXiv:2309.16292. [Google Scholar]
  33. Xu, Z.; Zhang, Y.; Xie, E.; Zhao, Z.; Guo, Y.; Wong, K.K.; Li, Z.; Zhao, H. Drivegpt4: Interpretable end-to-end autonomous driving via large language model. arXiv 2023, arXiv:2310.01412. [Google Scholar] [CrossRef]
  34. Yang, Z.; Jia, X.; Li, H.; Yan, J. A Survey of Large Language Models for Autonomous Driving. arXiv 2023, arXiv:2311.01043. [Google Scholar]
  35. Zhao, Y.; Li, Z.; Jin, Z.; Zhang, F.; Zhao, H.; Dou, C.; Tao, Z.; Xu, X.; Liu, D. Enhancing the Spatial Awareness Capability of Multi-Modal Large Language Model. arXiv 2023, arXiv:2310.20357. [Google Scholar]
  36. Zhou, X.; Liu, M.; Zagar, B.L.; Yurtsever, E.; Knoll, A.C. Vision language models in autonomous driving and intelligent transportation systems. arXiv 2023, arXiv:2310.14414. [Google Scholar]
  37. Andrade, S.R.; Walsh, H.S. SafeAeroBERT: Towards a Safety-Informed Aerospace-Specific Language Model. In Proceedings of the AIAA AVIATION 2023 Forum, San Diego, CA, USA, 12–16 June 2023; p. 3437. [Google Scholar]
  38. Arteaga, C.; Park, J.W. A Large Language Model Framework to Uncover Underreporting in Traffic Crashes. 2023. SSRN 4613378. Available online: https://papers.ssrn.com/sol3/papers.cfm?abstract_id=4613378 (accessed on 22 November 2023).
  39. Chandra, C.; Jing, X.; Bendarkar, M.V.; Sawant, K.; Elias, L.; Kirby, M.; Mavris, D.N. Aviation-BERT: A Preliminary Aviation-Specific Natural Language Model. In Proceedings of the AIAA AVIATION 2023 Forum, San Diego, CA, USA, 12–16 June 2023; p. 3436. [Google Scholar]
  40. Cheng, Z.; Duan, Z.; Bu, N.; Liu, Y.; Cao, J.; Gao, Z.; Zuo, P. ERNIE-based Named Entity Recognition Method for Traffic Accident Cases. In Journal of Physics: Conference Series, Proceedings of the 16th International Conference on Computer and Electrical Engineering (ICCEE 2023), Xian, China, 23–25 June 2023; IOP Publishing: Beijing, China, 2023; Volume 2589, p. 012020. [Google Scholar]
  41. de Zarzà, I.; de Curtò, J.; Roig, G.; Calafate, C.T. LLM multimodal traffic accident forecasting. Sensors 2023, 23, 9225. [Google Scholar] [CrossRef]
  42. Dong, T.; Yang, Q.; Ebadi, N.; Luo, X.R.; Rad, P. Identifying incident causal factors to improve aviation transportation safety: Proposing a deep learning approach. J. Adv. Transp. 2021, 2021, 5540046. [Google Scholar] [CrossRef]
  43. Jing, X.; Chennakesavan, A.; Chandra, C.; Bendarkar, M.V.; Kirby, M.; Mavris, D.N. BERT for Aviation Text Classification. In Proceedings of the AIAA AVIATION 2023 Forum, San Diego, CA, USA, 12–16 June 2023; p. 3438. [Google Scholar]
  44. Kierszbaum, S.; Klein, T.; Lapasset, L. ASRS-CMFS vs. RoBERTa: Comparing Two Pre-Trained Language Models to Predict Anomalies in Aviation Occurrence Reports with a Low Volume of In-Domain Data Available. Aerospace 2022, 9, 591. [Google Scholar] [CrossRef]
  45. Mumtarin, M.; Chowdhury, M.S.; Wood, J. Large Language Models in Analyzing Crash Narratives—A Comparative Study of ChatGPT, BARD and GPT-4. arXiv 2023, arXiv:2308.13563. [Google Scholar]
  46. Raja, K.V.; Siddharth, R.; Yuvaraj, S.; Kumar, K.R. An Artificial Intelligence based automated case-based reasoning (CBR) system for severity investigation and root-cause analysis of road accidents–Comparative analysis with the predictions of ChatGPT. J. Eng. Res. 2023. [CrossRef]
  47. Tikayat Ray, A.; Bhat, A.P.; White, R.T.; Nguyen, V.M.; Pinon Fischer, O.J.; Mavris, D.N. Examining the Potential of Generative Language Models for Aviation Safety Analysis: Case Study and Insights Using the Aviation Safety Reporting System (ASRS). Aerospace 2023, 10, 770. [Google Scholar] [CrossRef]
  48. Yang, C.; Huang, C. Natural Language Processing (NLP) in Aviation Safety: Systematic Review of Research and Outlook into the Future. Aerospace 2023, 10, 600. [Google Scholar] [CrossRef]
  49. Zheng, O.; Abdel-Aty, M.; Wang, D.; Wang, C.; Ding, S. TrafficSafetyGPT: Tuning a Pre-trained Large Language Model to a Domain-Specific Expert in Transportation Safety. arXiv 2023, arXiv:2307.15311. [Google Scholar]
  50. Zheng, O.; Abdel-Aty, M.; Wang, D.; Wang, Z.; Ding, S. ChatGPT is on the horizon: Could a Large Language Model be all we need for Intelligent Transportation? arXiv 2023, arXiv:2303.05382. [Google Scholar]
  51. Ziakkas, D.; Pechlivanis, K. Artificial Intelligence applications in aviation accident classification: A preliminary exploratory study. Decis. Anal. J. 2023, 9, 100358. [Google Scholar] [CrossRef]
  52. Ali, F.; Yasar, B.; Ali, L.; Dogan, S. Antecedents and consequences of travelers’ trust towards personalized travel recommendations offered by ChatGPT. Int. J. Hosp. Manag. 2023, 114, 103588. [Google Scholar] [CrossRef]
  53. Carvalho, I.; Ivanov, S. ChatGPT for tourism: Applications, benefits and risks. Tour. Rev. 2023, 79, 290–303. [Google Scholar] [CrossRef]
  54. Demir, M.; Demir, Ş.Ş. Is ChatGPT the right technology for service individualization and value co-creation? evidence from the travel industry. J. Travel Tour. Mark. 2023, 40, 383–398. [Google Scholar] [CrossRef]
  55. Demir, Ş.Ş.; Demir, M. Professionals’ perspectives on ChatGPT in the tourism industry: Does it inspire awe or concern? J. Tour. Theory Res. 2023, 9, 61–76. [Google Scholar] [CrossRef]
  56. Dwivedi, Y.K.; Pandey, N.; Currie, W.; Micu, A. Leveraging ChatGPT and other generative Artificial Intelligence (AI)-based applications in the hospitality and tourism industry: Practices, challenges and research agenda. Int. J. Contemp. Hosp. Manag. 2023, 36, 1–12. [Google Scholar] [CrossRef]
  57. Emrullah, E. Importance of ChatGPT in Tourism. J. Tour. Gastron. Stud. 2023, 11, 780–793. [Google Scholar]
  58. Flores-Cruz, G.; Hinkle, S.D.; Roque, N.A.; Mouloua, M. ChatGPT as the Ultimate Travel Buddy or Research Assistant: A Study on Perceived Attitudes and Usability. In Proceedings of the Human Factors and Ergonomics Society Annual Meeting, Washington, DC, USA, 23–27 October 2023; SAGE Publications Sage CA: Los Angeles, CA, USA, 2023; pp. 459–464. [Google Scholar]
  59. Goktas, P.; Dirsehan, T. Optimizing Customer Experience in Hospitality and Tourism with ChatGPT Plugins: A Strategic Guide. 2023. SSRN 4602852. Available online: https://papers.ssrn.com/sol3/papers.cfm?abstract_id=4602852 (accessed on 9 November 2023).
  60. Gursoy, D.; Li, Y.; Song, H. ChatGPT and the hospitality and tourism industry: An overview of current trends and future research directions. J. Hosp. Mark. Manag. 2023, 32, 579–592. [Google Scholar] [CrossRef]
  61. Harahap, M.A.K.; Ausat, A.M.A.; Rachman, A.; Riady, Y.; Azzaakiyyah, H.K. Overview of ChatGPT Technology and its Potential in Improving Tourism Information Services. J. Minfo Polgan 2023, 12, 424–431. [Google Scholar] [CrossRef]
  62. Iskender, A. Holy or unholy? Interview with open AI’s ChatGPT. Eur. J. Tour. Res. 2023, 34, 3414. [Google Scholar] [CrossRef]
  63. Ivanov, S.; Soliman, M. Game of algorithms: ChatGPT implications for the future of tourism education and research. J. Tour. Futur. 2023, 9, 214–221. [Google Scholar] [CrossRef]
  64. Kim, J.H.; Kim, J.; Park, J.; Kim, C.; Jhang, J.; King, B. When ChatGPT Gives Incorrect Answers: The Impact of Inaccurate Information by Generative AI on Tourism Decision-Making. J. Travel Res. 2023. [Google Scholar] [CrossRef]
  65. Kim, J.H.; Kim, J.; Kim, S.; Hailu, T.B. Effects of AI ChatGPT on travelers’ travel decision-making. Tour. Rev. 2023, 79, 1038–1057. [Google Scholar] [CrossRef]
  66. Mich, L.; Garigliano, R. ChatGPT for e-Tourism: A technological perspective. Inf. Technol. Tour. 2023, 25, 1–12. [Google Scholar] [CrossRef]
  67. Nautiyal, R.; Albrecht, J.N.; Nautiyal, A. ChatGPT and tourism academia. Ann. Tour. Res. 2023, 99. [Google Scholar] [CrossRef]
  68. Shin, S.; Kim, J.; Lee, E.; Yhee, Y.; Koo, C. ChatGPT for Trip Planning: The Effect of Narrowing Down Options. J. Travel Res. 2023. [Google Scholar] [CrossRef]
  69. Sudirjo, F.; Diawati, P.; Riady, Y.; Ausat, A.M.A.; Suherlan, S. The Role of ChatGPT in Enhancing the Information Search and Decision-Making Process of Travellers. J. Minfo Polgan 2023, 12, 500–507. [Google Scholar] [CrossRef]
  70. Wong, I.A.; Lian, Q.L.; Sun, D. Autonomous travel decision-making: An early glimpse into ChatGPT and generative AI. J. Hosp. Tour. Manag. 2023, 56, 253–263. [Google Scholar] [CrossRef]
  71. Da, L.; Gao, M.; Mei, H.; Wei, H. LLM powered sim-to-real transfer for traffic signal control. arXiv 2023, arXiv:2308.14284. [Google Scholar]
  72. Das, S.; Oliaee, A.H.; Le, M.; Pratt, M.P.; Wu, J. Classifying Pedestrian Maneuver Types Using the Advanced Language Model. Transp. Res. Rec. 2023, 2677, 599–611. [Google Scholar] [CrossRef]
  73. Driessen, T.; Dodou, D.; Bazilinskyy, P.; de Winter, J. Putting ChatGPT Vision (GPT-4V) to the test: Risk perception in traffic images. R. Soc. Open Sci. 2023, 11, 231676. [Google Scholar] [CrossRef] [PubMed]
  74. Guo, D.; Zhang, Z.; Fan, P.; Zhang, J.; Yang, B. A context-aware language model to improve the speech recognition in air traffic control. Aerospace 2021, 8, 348. [Google Scholar] [CrossRef]
  75. Jin, K.; Wi, J.; Lee, E.; Kang, S.; Kim, S.; Kim, Y. TrafficBERT: Pre-trained model with large-scale data for long-range traffic flow forecasting. Expert Syst. Appl. 2021, 186, 115738. [Google Scholar] [CrossRef]
  76. Jin, Y.; Shen, X.; Peng, H.; Liu, X.; Qin, J.; Li, J.; Xie, J.; Gao, P.; Zhou, G.; Gong, J. Surrealdriver: Designing generative driver agent simulation framework in urban contexts based on Large Language Model. arXiv 2023, arXiv:2309.13193. [Google Scholar]
  77. Maynard, P.; Clarke, S.S.; Almache, J.; Kumar, S.; Rajkumar, S.; Kemp, A.; Pai, R. Natural Language Processing (NLP) Techniques for Air Traffic Management Planning. In Proceedings of the AIAA AVIATION 2021 Forum, Virtual, 2–6 August 2021; p. 2322. [Google Scholar]
  78. Mo, B.; Xu, H.; Zhuang, D.; Ma, R.; Guo, X.; Zhao, J. Large Language Models for Travel Behavior Prediction. arXiv 2023, arXiv:2312.00819. [Google Scholar]
  79. Qasemi, E.; Francis, J.M.; Oltramari, A. Traffic-domain video question answering with automatic captioning. arXiv 2023, arXiv:2307.09636. [Google Scholar]
  80. Singh, G. Enhancing Driving Experience and Safety through ChatGPT in Vehicle Systems. Eduzone Int. Peer Rev. Multidiscip. J. 2023, 12, 118–124. [Google Scholar] [CrossRef]
  81. Sui, G.; Li, Z.; Li, Z.; Yang, S.; Ruan, J.; Mao, H.; Zhao, R. Reboost Large Language Model-based Text-to-SQL, Text-to-Python, and Text-to-Function—With Real Applications in Traffic Domain. arXiv 2023, arXiv:2310.18752. [Google Scholar]
  82. Tan, S.; Ivanovic, B.; Weng, X.; Pavone, M.; Kraehenbuehl, P. Language conditioned traffic generation. arXiv 2023, arXiv:2307.07947. [Google Scholar]
  83. Villarreal, M.; Poudel, B.; Li, W. Can ChatGPT Enable ITS? The Case of Mixed Traffic Control via Reinforcement Learning. arXiv 2023, arXiv:2306.08094. [Google Scholar]
  84. Wang, X.; Ding, H.; Xu, Q.; Liu, Z. Information Extraction of Air-Traffic Control Instructions via Pre-trained Models. In Artificial Intelligence in China, Proceedings of the 3rd International Conference on Artificial Intelligence in China, 2022; Springer: Singapore, 2022; pp. 82–91. [Google Scholar]
  85. Wang, S.; Zhu, Y.; Li, Z.; Wang, Y.; Li, L.; He, Z. ChatGPT as Your Vehicle Co-Pilot: An Initial Attempt. IEEE Trans. Intell. Veh. 2023, 8, 4706–4721. [Google Scholar] [CrossRef]
  86. Zhang, J.; Ilievski, F.; Ma, K.; Kollaa, A.; Francis, J.; Oltramari, A. A Study of Situational Reasoning for Traffic Understanding. arXiv 2023, arXiv:2306.02520. [Google Scholar]
  87. Zhang, J.; Pu, J.; Xue, J.; Yang, M.; Xu, X.; Wang, X.; Wang, F.Y. HiVeGPT: Human-machine-augmented intelligent vehicles with generative pre-trained transformer. IEEE Trans. Intell. Veh. 2023, 8, 2027–2033. [Google Scholar] [CrossRef]
  88. Zhang, S.; Fu, D.; Zhang, Z.; Yu, B.; Cai, P. TrafficGPT: Viewing, Processing and Interacting with Traffic Foundation Models. arXiv 2023, arXiv:2309.06719. [Google Scholar] [CrossRef]
  89. Zhang, K.; Zhou, F.; Wu, L.; Xie, N.; He, Z. Semantic understanding and prompt engineering for large-scale traffic data imputation. Inf. Fusion 2024, 102, 102038. [Google Scholar] [CrossRef]
  90. Agarwal, A.; Gawade, S.; Azad, A.P.; Bhattacharyya, P. KITLM: Domain-Specific Knowledge InTegration into Language Models for Question Answering. arXiv 2023, arXiv:2308.03638. [Google Scholar]
  91. Chew, P. Pioneering Tomorrow’s AI System through Aerospace Engineering: An Empirical Study of the Peter Chew Method for Overcoming Error in Chat GPT. 2023. SSRN 4646033. Available online: https://papers.ssrn.com/sol3/papers.cfm?abstract_id=4646033 (accessed on 1 December 2023).
  92. Kim, J.; Lee, J. How does ChatGPT Introduce Transport Problems and Solutions in North America? Findings 2023. [CrossRef]
  93. Leong, M.; Abdelhalim, A.; Ha, J.; Patterson, D.; Pincus, G.L.; Harris, A.B.; Eichler, M.; Zhao, J. MetRoBERTa: Leveraging Traditional Customer Relationship Management Data to Develop a Transit-Topic-Aware Language Model. arXiv 2023, arXiv:2308.05012. [Google Scholar] [CrossRef]
  94. Nguyen, B.; Sonnenfeld, N.; Finkelstein, L.; Alonso, A.; Gomez, C.; Duruaku, F.; Jentsch, F. Using AI Tools to Develop Training Materials for Aviation: Ethical, Technical, and Practical Concerns. In Proceedings of the Human Factors and Ergonomics Society Annual Meeting, Washington, DC, USA, 23–27 October 2023; SAGE Publications Sage CA: Los Angeles, CA, USA, 2023; p. 21695067231192904. [Google Scholar]
  95. Tikayat Ray, A.; Cole, B.F.; Pinon Fischer, O.J.; White, R.T.; Mavris, D.N. aeroBERT-Classifier: Classification of Aerospace Requirements Using BERT. Aerospace 2023, 10, 279. [Google Scholar] [CrossRef]
  96. Tikayat Ray, A.; Pinon-Fischer, O.J.; Mavris, D.N.; White, R.T.; Cole, B.F. aeroBERT-NER: Named-Entity Recognition for Aerospace Requirements Engineering using BERT. In Proceedings of the AIAA SCITECH 2023 Forum, San Diego, CA, USA, 12–16 June 2023; p. 2583. [Google Scholar]
  97. Voß, S. Bus Bunching and Bus Bridging: What Can We Learn from Generative AI Tools like ChatGPT? Sustainability 2023, 15, 9625. [Google Scholar] [CrossRef]
  98. Wang, L.; Chou, J.; Rouck, D.; Tien, A.; Baumgartner, D.M. Adapting Sentence Transformers for the Aviation Domain. arXiv 2023, arXiv:2305.09556. [Google Scholar]
  99. Wang, L.; Chou, J.; Zhou, X.; Tien, A.; Baumgartner, D.M. AviationGPT: A Large Language Model for the Aviation Domain. arXiv 2023, arXiv:2311.17686. [Google Scholar]
  100. Yenkikar, A.; Babu, C.N. AirBERT: A fine-tuned language representation model for airlines tweet sentiment analysis. Intell. Decis. Technol. 2023, 17, 435–455. [Google Scholar] [CrossRef]
  101. Chen, X.; Anerdi, G.; Tan, D.S.; Bromuri, S. Language Modeling in Logistics: Customer Calling Prediction. In Proceedings of the European Symposium on Artificial Neural Networks, Computational Intelligence and Machine Learning, Bruges, Belgium, 4–6 October 2023. [Google Scholar]
  102. Jackson, I.; Saenz, M.J. From Natural Language to Simulations: Applying GPT-3 Codex to Automate Simulation Modeling of Logistics Systems. arXiv 2022, arXiv:2202.12107. [Google Scholar] [CrossRef]
  103. Jackson, I.; Jesus Saenz, M.; Ivanov, D. From natural language to simulations: Applying AI to automate simulation modelling of logistics systems. Int. J. Prod. Res. 2023, 62, 1434–1457. [Google Scholar] [CrossRef]
  104. Kmiecik, M. ChatGPT in third-party logistics-the game-changer or a step into the unknown? J. Open Innov. Technol. Mark. Complex. 2023, 9, 100174. [Google Scholar] [CrossRef]
  105. Voß, S. Successfully Using ChatGPT in Logistics: Are We There Yet? In Proceedings of the International Conference on Computational Logistics, Berlin, Germany, 6–8 September 2023; pp. 3–17. [Google Scholar]
  106. Aggarwal, S. A Review of ChatGPT and its Impact in Different Domains. Int. J. Appl. Eng. Res. 2023, 18, 119–123. [Google Scholar] [CrossRef]
  107. Rane, N.L. Multidisciplinary Collaboration: Key Players in Successful Implementation of ChatGPT and Similar Generative Artificial Intelligence in Manufacturing, Finance, Retail, Transportation, and Construction Industry. OSF Preprints 2023. [Google Scholar] [CrossRef]
  108. Rice, S.; Crouse, S.R.; Winter, S.R.; Rice, C. The advantages and limitations of using ChatGPT to enhance technological research. Technol. Soc. 2023, 76, 102426. [Google Scholar] [CrossRef]
  109. Wandelt, S.; Sun, X.; Zhang, A. AI-driven assistants for education and research? A case study on ChatGPT for air transport management. J. Air Transp. Manag. 2023, 113, 102483. [Google Scholar] [CrossRef]
  110. Chen, H.; Jiao, F.; Li, X.; Qin, C.; Ravaut, M.; Zhao, R.; Xiong, C.; Joty, S. ChatGPT’s One-year Anniversary: Are Open-Source Large Language Models Catching up? arXiv 2023, arXiv:2311.16989. [Google Scholar]
  111. Kosch, T.; Feger, S. Risk or Chance? Large Language Models and Reproducibility in Human-Computer Interaction Research. arXiv 2024, arXiv:2404.15782. [Google Scholar]
  112. Biderman, S.; Schoelkopf, H.; Sutawika, L.; Gao, L.; Tow, J.; Abbasi, B.; Aji, A.F.; Ammanamanchi, P.S.; Black, S.; Clive, J.; et al. Lessons from the Trenches on Reproducible Evaluation of Language Models. arXiv 2024, arXiv:2405.14782. [Google Scholar]
  113. Rau, D.; Kamps, J. Query Generation Using Large Language Models: A Reproducibility Study of Unsupervised Passage Reranking. In Proceedings of the European Conference on Information Retrieval, Glasgow, Scotland, UK, 24–28 March 2024; pp. 226–239. [Google Scholar]
  114. Laskar, M.T.R.; Alqahtani, S.; Bari, M.S.; Rahman, M.; Khan, M.A.M.; Khan, H.; Jahan, I.; Bhuiyan, A.; Tan, C.W.; Parvez, M.R.; et al. A Systematic Survey and Critical Review on Evaluating Large Language Models: Challenges, Limitations, and Recommendations. arXiv 2024, arXiv:2407.04069. [Google Scholar]
  115. Ziems, C.; Held, W.; Shaikh, O.; Chen, J.; Zhang, Z.; Yang, D. Can Large Language Models transform computational social science? Comput. Linguist. 2024, 50, 237–291. [Google Scholar] [CrossRef]
  116. Franc, J.M.; Cheng, L.; Hart, A.; Hata, R.; Hertelendy, A. Repeatability, reproducibility, and diagnostic accuracy of a commercial Large Language Model (ChatGPT) to perform emergency department triage using the Canadian triage and acuity scale. Can. J. Emerg. Med. 2024, 26, 40–46. [Google Scholar] [CrossRef]
  117. Liu, Z.; Qiao, A.; Neiswanger, W.; Wang, H.; Tan, B.; Tao, T.; Li, J.; Wang, Y.; Sun, S.; Pangarkar, O.; et al. LLM360: Towards Fully Transparent Open-Source LLMs. arXiv 2023, arXiv:2312.06550. [Google Scholar]
  118. Raffel, C.; Shazeer, N.; Roberts, A.; Lee, K.; Narang, S.; Matena, M.; Zhou, Y.; Li, W.; Liu, P.J. Exploring the Limits of Transfer Learning with a Unified Text-to-Text Transformer. J. Mach. Learn. Res. 2020, 21, 140:1–140:67. [Google Scholar]
  119. Xue, L.; Constant, N.; Roberts, A.; Kale, M.; Al-Rfou, R.; Siddhant, A.; Barua, A.; Raffel, C. mT5: A Massively Multilingual Pre-trained Text-to-Text Transformer. In Proceedings of the 2021 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, NAACL-HLT 2021, Online, 6–11 June 2021; pp. 483–498. [Google Scholar]
  120. Zeng, W.; Ren, X.; Su, T.; Wang, H.; Liao, Y.; Wang, Z.; Jiang, X.; Yang, Z.; Wang, K.; Zhang, X.; et al. PanGu-α: Large-scale Autoregressive Pretrained Chinese Language Models with Auto-parallel Computation. arXiv 2021, arXiv:2104.12369. [Google Scholar] [CrossRef]
  121. Zhang, Z.; Gu, Y.; Han, X.; Chen, S.; Xiao, C.; Sun, Z.; Yao, Y.; Qi, F.; Guan, J.; Ke, P.; et al. CPM-2: Large-scale Cost-effective Pre-trained Language Models. AI Open 2021, 2, 216–224. [Google Scholar] [CrossRef]
  122. Sanh, V.; Webson, A.; Raffel, C.; Bach, S.H.; Sutawika, L.; Alyafeai, Z.; Chaffin, A.; Stiegler, A.; Raja, A.; Dey, M.; et al. Multitask Prompted Training Enables Zero-Shot Task Generalization. In Proceedings of the Tenth International Conference on Learning Representations (ICLR 2022), Virtual Event, 25–29 April 2022. [Google Scholar]
  123. Nijkamp, E.; Pang, B.; Hayashi, H.; Tu, L.; Wang, H.; Zhou, Y.; Savarese, S.; Xiong, C. Codegen: An open Large Language Model for code with mtulti-turn program synthesis. arXiv 2022, arXiv:2203.13474. [Google Scholar]
  124. Black, S.; Biderman, S.; Hallahan, E.; Anthony, Q.; Gao, L.; Golding, L.; He, H.; Leahy, C.; McDonell, K.; Phang, J.; et al. GPT-NeoX-20B: An Open-Source Autoregressive Language Model. arXiv 2022, arXiv:2204.06745. [Google Scholar] [CrossRef]
  125. Wang, Y.; Mishra, S.; Alipoormolabashi, P.; Kordi, Y.; Mirzaei, A.; Naik, A.; Ashok, A.; Dhanasekaran, A.S.; Arunkumar, A.; Stap, D.; et al. Super-NaturalInstructions: Generalization via Declarative Instructions on 1600+ NLP Tasks. In Proceedings of the 2022 Conference on Empirical Methods in Natural Language Processing, EMNLP 2022, Abu Dhabi, United Arab Emirates, 7–11 December 2022; pp. 5085–5109. [Google Scholar]
  126. Tay, Y.; Dehghani, M.; Tran, V.Q.; García, X.; Wei, J.; Wang, X.; Chung, H.W.; Bahri, D.; Schuster, T.; Zheng, H.; et al. UL2: Unifying Language Learning Paradigms. arXiv 2022, arXiv:2205.05131. [Google Scholar] [CrossRef]
  127. Zhang, S.; Roller, S.; Goyal, N.; Artetxe, M.; Chen, M.; Chen, S.; Dewan, C.; Diab, M.T.; Li, X.; Lin, X.V.; et al. OPT: Open Pre-trained Transformer Language Models. arXiv 2022, arXiv:2205.01068. [Google Scholar] [CrossRef]
  128. Costa-jussà, M.R.; Cross, J.; Çelebi, O.; Elbayad, M.; Heafield, K.; Heffernan, K.; Kalbassi, E.; Lam, J.; Licht, D.; Maillard, J.; et al. No Language Left Behind: Scaling Human-Centered Machine Translation. arXiv 2022, arXiv:2207.04672. [Google Scholar] [CrossRef]
  129. Zheng, Q.; Xia, X.; Zou, X.; Dong, Y.; Wang, S.; Xue, Y.; Wang, Z.; Shen, L.; Wang, A.; Li, Y.; et al. CodeGeeX: A Pre-Trained Model for Code Generation with Multilingual Evaluations on HumanEval-X. arXiv 2023, arXiv:2303.17568. [Google Scholar]
  130. Zeng, A.; Liu, X.; Du, Z.; Wang, Z.; Lai, H.; Ding, M.; Yang, Z.; Xu, Y.; Zheng, W.; Xia, X.; et al. GLM-130B: An Open Bilingual Pre-trained Model. arXiv 2022, arXiv:2210.02414. [Google Scholar] [CrossRef]
  131. Chung, H.W.; Hou, L.; Longpre, S.; Zoph, B.; Tay, Y.; Fedus, W.; Li, E.; Wang, X.; Dehghani, M.; Brahma, S.; et al. Scaling Instruction-Finetuned Language Models. J. Mach. Learn. Res. 2022, 25, 1–53. [Google Scholar]
  132. Scao, T.L.; Fan, A.; Akiki, C.; Pavlick, E.; Ilic, S.; Hesslow, D.; Castagné, R.; Luccioni, A.S.; Yvon, F.; Gallé, M.; et al. BLOOM: A 176B-Parameter Open-Access Multilingual Language Model. arXiv 2022, arXiv:2211.05100. [Google Scholar] [CrossRef]
  133. Muennighoff, N.; Wang, T.; Sutawika, L.; Roberts, A.; Biderman, S.; Scao, T.L.; Bari, M.S.; Shen, S.; Yong, Z.X.; Schoelkopf, H.; et al. Crosslingual Generalization through Multitask Finetuning. arXiv 2022, arXiv:2211.01786. [Google Scholar]
  134. Taylor, R.; Kardas, M.; Cucurull, G.; Scialom, T.; Hartshorn, A.; Saravia, E.; Poulton, A.; Kerkez, V.; Stojnic, R. Galactica: A Large Language Model for Science. arXiv 2022, arXiv:2211.09085. [Google Scholar]
  135. Iyer, S.; Lin, X.V.; Pasunuru, R.; Mihaylov, T.; Simig, D.; Yu, P.; Shuster, K.; Wang, T.; Liu, Q.; Koura, P.S.; et al. OPT-IML: Scaling Language Model Instruction Meta Learning through the Lens of Generalization. arXiv 2022, arXiv:2212.12017. [Google Scholar]
  136. Touvron, H.; Lavril, T.; Izacard, G.; Martinet, X.; Lachaux, M.; Lacroix, T.; Rozière, B.; Goyal, N.; Hambro, E.; Azhar, F.; et al. LLaMA: Open and Efficient Foundation Language Models. arXiv 2023, arXiv:2302.13971. [Google Scholar]
  137. Biderman, S.; Schoelkopf, H.; Anthony, Q.; Bradley, H.; O’Brien, K.; Hallahan, E.; Khan, M.A.; Purohit, S.; Prashanth, U.S.; Raff, E.; et al. Pythia: A Suite for Analyzing Large Language Models Across Training and Scaling. arXiv 2023, arXiv:2304.01373. [Google Scholar]
  138. Nijkamp, E.; Hayashi, H.; Xiong, C.; Savarese, S.; Zhou, Y. CodeGen2: Lessons for Training LLMs on Programming and Natural Languages. arXiv 2023, arXiv:2305.02309. [Google Scholar]
  139. Li, R.; Allal, L.B.; Zi, Y.; Muennighoff, N.; Kocetkov, D.; Mou, C.; Marone, M.; Akiki, C.; Li, J.; Chim, J.; et al. StarCoder: May the source be with you! arXiv 2023, arXiv:2305.06161. [Google Scholar] [CrossRef]
  140. Touvron, H.; Martin, L.; Stone, K.; Albert, P.; Almahairi, A.; Babaei, Y.; Bashlykov, N.; Batra, S.; Bhargava, P.; Bhosale, S.; et al. Llama 2: Open foundation and fine-tuned chat models. arXiv 2023, arXiv:2307.09288. [Google Scholar]
  141. Yang, A.; Xiao, B.; Wang, B.; Zhang, B.; Yin, C.; Lv, C.; Pan, D.; Wang, D.; Yan, D.; Yang, F.; et al. Baichuan 2: Open large-scale language models. arXiv 2023, arXiv:2309.10305. [Google Scholar]
  142. Bai, J.; Bai, S.; Chu, Y.; Cui, Z.; Dang, K.; Deng, X.; Fan, Y.; Ge, W.; Han, Y.; Huang, F.; et al. Qwen technical report. arXiv 2023, arXiv:2309.16609. [Google Scholar]
  143. Li, X.; Yao, Y.; Jiang, X.; Fang, X.; Meng, X.; Fan, S.; Han, P.; Li, J.; Du, L.; Qin, B.; et al. Flm-101b: An open llm and how to train it with $100 k budget. arXiv 2023, arXiv:2309.03852. [Google Scholar]
  144. Wei, T.; Zhao, L.; Zhang, L.; Zhu, B.; Wang, L.; Yang, H.; Li, B.; Cheng, C.; Lü, W.; Hu, R.; et al. Skywork: A More Open Bilingual Foundation Model. arXiv 2023, arXiv:2310.19341. [Google Scholar]
  145. Liao, H.; Shen, H.; Li, Z.; Wang, C.; Li, G.; Bie, Y.; Xu, C. Gpt-4 enhanced multimodal grounding for autonomous driving: Leveraging cross-modal attention with Large Language Models. Commun. Transp. Res. 2024, 4, 100116. [Google Scholar] [CrossRef]
  146. Chun, S.; Oh, S.J.; De Rezende, R.S.; Kalantidis, Y.; Larlus, D. Probabilistic embeddings for cross-modal retrieval. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, Nashville, TN, USA, 20–25 June 2021; pp. 8415–8424. [Google Scholar]
  147. Li, Y.; Qian, Y.; Yu, Y.; Qin, X.; Zhang, C.; Liu, Y.; Yao, K.; Han, J.; Liu, J.; Ding, E. Structext: Structured text understanding with multi-modal transformers. In Proceedings of the 29th ACM International Conference on Multimedia, Chengdu, China, 20–24 October 2021; pp. 1912–1920. [Google Scholar]
  148. Head, C.B.; Jasper, P.; McConnachie, M.; Raftree, L.; Higdon, G. Large language model applications for evaluation: Opportunities and ethical implications. New Dir. Eval. 2023, 2023, 33–46. [Google Scholar] [CrossRef]
  149. Thornton, S.M.; Pan, S.; Erlien, S.M.; Gerdes, J.C. Incorporating Ethical Considerations Into Automated Vehicle Control. IEEE Trans. Intell. Transp. Syst. 2017, 18, 1429–1439. [Google Scholar] [CrossRef]
  150. Robinson, P.; Sun, L.; Furey, H.; Jenkins, R.; Phillips, C.R.M.; Powers, T.M.; Ritterson, R.S.; Xie, Y.; Casagrande, R.; Evans, N.G. Modelling Ethical Algorithms in Autonomous Vehicles Using Crash Data. IEEE Trans. Intell. Transp. Syst. 2022, 23, 7775–7784. [Google Scholar] [CrossRef]
  151. Bešinović, N.; De Donato, L.; Flammini, F.; Goverde, R.M.P.; Lin, Z.; Liu, R.; Marrone, S.; Nardone, R.; Tang, T.; Vittorini, V. Artificial Intelligence in Railway Transport: Taxonomy, Regulations, and Applications. IEEE Trans. Intell. Transp. Syst. 2022, 23, 14011–14024. [Google Scholar] [CrossRef]
Figure 1. Encoder–decoder architecture used in LLMs.
Figure 1. Encoder–decoder architecture used in LLMs.
Applsci 14 07455 g001
Table 1. Studies on LLMs for the use case of autonomous driving.
Table 1. Studies on LLMs for the use case of autonomous driving.
ReferenceFocus
Chen et al. [20]Feedback of ChatGPT and architectural decisions for AD
Cui et al. [21]LLMs’ reasoning abilities for high-level decision-making in the context of AD
Cui et al. [22]Applications and challenges of multi-modal LLMs for AD
Deng et al. [23]Test generation for AD systems based on traffic rules from LLMs
Dewangan et al. [24]Integrating large vision–language models and bird’s-eye view maps for AD
Du et al. [25]Possible applications, challenges and opportunities of ChatGPT in intelligent vehicles
Fu et al. [26]The potential of LLMs for key abilities necessary for AD
Lei et al. [27]Benefits and challenges of ChatGPT for connected and autonomous vehicles
Sha et al. [28]Combining LLMs and model predictive control for high-level decision-making of AD
Singh [29]Elevating real-time decision-making capabilities with ChatGPT in autonomous systems
Tian et al. [30]The automatic composing platform with LLMs for end-to-end driving systems
Wang et al. [31]LLMs for AD, incorporating safety verifiers for contextual safety learning
Wen et al. [32]LLMs-based AD with experiences from real-world datasets and generalization ability
Xu et al. [33]LLMs to improve the interpretability of end-to-end AD
Yang et al. [34]Overview on state of technological advancements concerning LLMs for AD
Zhao et al. [35]Multi-Modal MLL to improve spatial awareness capabilities in industries
Zhou et al. [36]Applications and future trends of vision–language models in AD and ITS
Table 2. Studies about LLM applications for increasing transportation safety.
Table 2. Studies about LLM applications for increasing transportation safety.
ReferenceFocus
Andrade and Walsh [37]Document classification based on the text in aviation safety reports
Arteaga and Park [38]Analyzing underreported crash factors based on traffic crash narratives
Chandra et al. [39]Extracting safety concepts by aviation text-data mining
Cheng et al. [40]Mining the key information from traffic accident texts
de Zarzà et al. [41]Forecasting traffic accidents with the context of autonomous driving
Dong et al. [42]Identifying incident causal factors to improve aviation safety
Jing et al. [43]Applying multi-label classification on aviation safety reports
Kierszbaum et al. [44]Predicting anomalies based on the Aviation Safety Reporting System (ASRS)
Mumtarin et al. [45]Comparing the performance of ChatGPT, BARD and GPT-4 in traffic crashes
Raja et al. [46]Analyzing ChatGPT in severity investigation of road crashes
Tikayat Ray et al. [47]Investigating the potential of ChatGPT in aviation safety analysis
Yang and Huang [48]A systematic review of natural language processing (NLP) in aviation safety
Zheng et al. [49]Tuning a pre-trained LLM of the open-source LLaMA in transportation safety
Zheng et al. [50]Smarter traffic safety decision-making with LLMs
Ziakkas and Pechlivanis [51]A comparative analysis of ChatGPT in aviation accident classification
Table 3. Studies on applications of LLMs in the tourism sector.
Table 3. Studies on applications of LLMs in the tourism sector.
ReferenceFocus
Ali et al. [52]Impacts of ChatGPT’s personalized travel recommendation on travelers
Carvalho and Ivanov [53]Applications, benefits and risks of ChatGPT in tourism
Demir and Demir [54]Impacts of ChatGPT on service individualization and value co-creation
Demir and Demir [55]Interviewing professionals in tourism industry about ChatGPT
Dwivedi et al. [56]Impacts of generative AI on the tourism industry
Emrullah [57]Possible contributions of ChatGPT to the tourism sector
Flores-Cruz et al. [58]Perceived attitudes and usability with ChatGPT on research and travel
Goktas and Dirsehan [59]ChatGPT to optimize customer experience in tourism
Gursoy et al. [60]Benefits and potential challenges of ChatGPT in tourism and hospitality
Harahap et al. [61]ChatGPT to improve information services in the tourism industry
Iskender [62]ChatGPT as an interviewee for the tourism industry and education
Ivanov and Soliman [63]Implications of ChatGPT for tourism education and research
Kim et al. [64]Impacts of inaccurate information on travelers’ acceptance of suggestions
Kim et al. [65]Travelers’ intentions to use ChatGPT and drivers of decision-making
Mich and Garigliano [66]ChatGPT’s adoption guidelines and issues in e-tourism
Nautiyal et al. [67]Usage of ChatGPT in tourism and interdisciplinary contexts
Shin et al. [68]Travelers’ perceptions of ChatGPT when reducing multiple travel options
Sudirjo et al. [69]Impacts of ChatGPT on tourists’ information search and decision making
Wong et al. [70]ChatGPT’s ability to enhance the tourist decision-making process
Table 4. Studies about LLM applications in traffic.
Table 4. Studies about LLM applications in traffic.
ReferenceFocus
Da et al. [71]Pre-trained LLMs for traffic signal control by learning a more realistic policy
Das et al. [72]Classifying pedestrian maneuver types from unstructured textual content
Driessen et al. [73]Applying GPT-4V for risk perception in forward-facing traffic images
Guo et al. [74]Improving the automatic speech recognition in air traffic control
Jin et al. [75]Long-range traffic flow forecasting with a pre-trained model
Jin et al. [76]Developing human-like driving styles with a ‘coach agent’ module based on LLMs
Maynard et al. [77]Analyzing air traffic management documents for optimizing operations
Mo et al. [78]Travel behavior prediction without data-based parameter learning
Qasemi et al. [79]Video Question Answering (VidQA) in intelligent traffic monitoring
Singh [80]Personalized driver assistance in electric vehicles (EVs)
Sui et al. [81]Reboost LLM-based Text-to-SQL for identifying traffic flow patterns
Tan et al. [82]LLMs with a transformer-based decoder for dynamic traffic scene generation
Villarreal et al. [83]Developing ChatGPT to solve complex mixed traffic control problems
Wang et al. [84]Analyzing the information extraction performance of LLMs in air-traffic control
Wang et al. [85]Serving as co-pilots for path tracking control and trajectory planning
Zhang et al. [86]Performing situational decision-making for traffic monitoring
Zhang et al. [87]Different applications of ChatGPT in the domain of intelligent vehicles
Zhang et al. [88]Aiding human decision-making in traffic control
Zhang et al. [89]Analyzing the spatio-temporal dynamics of traffic across road networks
Table 5. Studies on LLM applications in other transportation domains.
Table 5. Studies on LLM applications in other transportation domains.
ReferenceFocus
Agarwal et al. [90]A knowledge base integration method for question-answering in the aviation domain
Chew [91]Enhancing the ability of ChatGPT in aerospace engineering
Kim and Lee [92]Analyzing ChatGPT’s answers for transport issues and solutions
Leong et al. [93]Developing a transit-topic-related LLM to classify open-ended text
Nguyen et al. [94]Providing challenges of AI-based applications in aviation
Tikayat Ray et al. [95]Classifying the design, functional, and performance requirements in aviation
Tikayat Ray et al. [96]Developing an annotated aerospace corpus and fine-tuned BERT language model
Voß [97]Exploring the use of ChatGPT in public transportation
Wang et al. [98]A two-stage adapting sentence transformer-based model in the aviation domain
Wang et al. [99]Achieving the versatility to tackle NLP problems in the aviation domain
Yenkikar and Babu [100]A fine-tuned LLM to polarize customer sentiments automatically
Chen et al. [101]Language model to predict customer calling of logistics
Jackson and Saenz [102]GPT-3 Codex to develop simulation models for logistics
Jackson et al. [103]Human-AI collaboration to model logistics systems
Kmiecik [104]Impacts of ChatGPT on third-party logistics operators
Voß [105]Applications of ChatGPT within the logistics domain
Aggarwal [106]Developments and advancements of ChatGPT in different domains
Rane [107]Cross-functional teams with ChatGPT in different industries
Rice et al. [108]Capabilities, weaknesses and implications of ChatGPT in technological research
Wandelt et al. [109]         ChatGPT as an assistant in education and research
Table 6. Overview of recent open-source Large Language Models (✓ indicates yes, - indicated no).
Table 6. Overview of recent open-source Large Language Models (✓ indicates yes, - indicated no).
ModelRelease
Time
Size
(B)
Base
Model
ITRLHFPre-Train
Data Scale
Latest Data
Timestamp
Hardware
(GPUs / TPUs)
Training
Time
ICLCoT
T5 [118]Oct-201911---1T tokensApr-20191024 TPU v3--
mT5 [119]Oct-202013---1T tokens----
PanGu- α  [120]Apr-202113---1.1TB-2048 Ascend 910--
CPM-2 [121]Jun-2021198---2.6TB-----
T0 [122]Oct-202111T5---512 TPU v327 h-
CodeGen [123]Mar-202216---577B tokens----
GPT-NeoX-20B [124]Apr-202220---825GB-96 40G A100--
Tk-Instruct [125]Apr-202211T5---256 TPU v34 h-
UL2 [126]May-202220---1T tokensApr-2019512 TPU v4-
OPT [127]May-2022175---180B tokens-992 80G A100--
NLLB [128]Jul-202254.5--------
CodeGeeX [129]Sep-202213---850B tokens-1536 Ascend 91060 d-
GLM [130]Oct-2022130---400B tokens-768 40G A10060 d-
Flan-T5 [131]Oct-202211T5-----
BLOOM [132]Nov-2022176---366B tokens-384 80G A100105 d-
mT0 [133]Nov-202213mT5------
Galactica [134]Nov-2022120---106B tokens---
BLOOMZ [133]Nov-2022176BLOOM------
OPT-IML [135]Dec-2022175OPT---128 40G A100-
LLaMA [136]Feb-202365---1.4T tokens-2048 80G A10021 d-
Pythia [137]Apr-202312---300B tokens-256 40G A100--
CodeGen2 [138]May-202316---400B tokens----
StarCoder [139]May-202315.5---1T tokens-512 40G A100-
LLaMA2 [140]Jul-202370-2T tokens-2000 80G A100--
Baichuan2 [141]Sep-202313-2.6T tokens-1024 A800--
QWEN [142]Sep-202314-3T tokens----
FLM [143]Sep-2023101--311B tokens-192 A80022 d-
Skywork [144]Oct-202313---3.2T tokens-512 80G A800--
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content.

Share and Cite

MDPI and ACS Style

Wandelt, S.; Zheng, C.; Wang, S.; Liu, Y.; Sun, X. Large Language Models for Intelligent Transportation: A Review of the State of the Art and Challenges. Appl. Sci. 2024, 14, 7455. https://doi.org/10.3390/app14177455

AMA Style

Wandelt S, Zheng C, Wang S, Liu Y, Sun X. Large Language Models for Intelligent Transportation: A Review of the State of the Art and Challenges. Applied Sciences. 2024; 14(17):7455. https://doi.org/10.3390/app14177455

Chicago/Turabian Style

Wandelt, Sebastian, Changhong Zheng, Shuang Wang, Yucheng Liu, and Xiaoqian Sun. 2024. "Large Language Models for Intelligent Transportation: A Review of the State of the Art and Challenges" Applied Sciences 14, no. 17: 7455. https://doi.org/10.3390/app14177455

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop