Tongji University, School
Abstract
Historic urban quarters play a vital role in preserving cultural heritage
while serving as vibrant spaces for tourism and everyday life. Understanding
how tourists perceive these environments is essential for sustainable,
human-centered urban planning. This study proposes a multidimensional
AI-powered framework for analyzing tourist perception in historic urban
quarters using multimodal data from social media. Applied to twelve historic
quarters in central Shanghai, the framework integrates focal point extraction,
color theme analysis, and sentiment mining. Visual focus areas are identified
from tourist-shared photos using a fine-tuned semantic segmentation model. To
assess aesthetic preferences, dominant colors are extracted using a clustering
method, and their spatial distribution across quarters is analyzed. Color
themes are further compared between social media photos and real-world street
views, revealing notable shifts. This divergence highlights potential gaps
between visual expectations and the built environment, reflecting both
stylistic preferences and perceptual bias. Tourist reviews are evaluated
through a hybrid sentiment analysis approach combining a rule-based method and
a multi-task BERT model. Satisfaction is assessed across four dimensions:
tourist activities, built environment, service facilities, and business
formats. The results reveal spatial variations in aesthetic appeal and
emotional response. Rather than focusing on a single technical innovation, this
framework offers an integrated, data-driven approach to decoding tourist
perception and contributes to informed decision-making in tourism, heritage
conservation, and the design of aesthetically engaging public spaces.
AI Insights - Multi‑task BERT fine‑tuned on four review dimensions—Activities, Built Environment, Service Facilities, Business Formats—achieves macro‑F1 >0.85.
- Mixed‑precision FP16 training with batch sizes 8/32 cuts GPU memory by ~40 % while keeping accuracy.
- Chinese color taxonomy of 1,000 hue‑saturation‑brightness bins quantifies aesthetic sentiment, showing 12 % warmer‑tone preference in historic streets.
- MobileNetV2 with atrous convolutions yields 78 % mIoU on Shanghai photo sets for semantic segmentation.
- Swin Transformer’s shifted‑window improves color‑theme localization by 5 % over Pyramid Scene Parsing.
- Future work: align image features with textual sentiment via “Learning Transferable Visual Models from Natural Language Supervision” to boost cross‑modal consistency.
Ferdowsi University of
Abstract
Web applications are increasingly used in critical domains such as education,
finance, and e-commerce. This highlights the need to ensure their failure-free
performance. One effective method for evaluating failure-free performance is
web form testing, where defining effective test scenarios is key to a complete
and accurate evaluation. A core aspect of this process involves filling form
fields with suitable values to create effective test cases. However, manually
generating these values is time-consuming and prone to errors. To address this,
various tools have been developed to assist testers. With the appearance of
large language models (LLMs), a new generation of tools seeks to handle this
task more intelligently. Although many LLM-based tools have been introduced, as
these models typically rely on cloud infrastructure, their use in testing
confidential web forms raises concerns about unintended data leakage and
breaches of confidentiality. This paper introduces a privacy-preserving
recommender that operates locally using a large language model. The tool
assists testers in web form testing by suggesting effective field values. This
tool analyzes the HTML structure of forms, detects input types, and extracts
constraints based on each field's type and contextual content, guiding proper
field filling.
AI Insights - Local LLM scores 92.9% accuracy on 164 fields across ten Persian sites, proving practical efficacy.
- It matches T5‑GPT’s input‑page coverage while keeping all data on‑premise, eliminating cloud leakage.
- Future work aims for a semi‑automated mode that blends human oversight with LLM suggestions for higher precision.
- “Automated Web Application Testing” is the systematic use of tools to detect defects in web apps.
- “Large Language Model” is an AI trained on massive text corpora to generate context‑aware language.
- Read Introduction to Software Testing by Ammann & Offutt for foundational testing concepts.
- Also consult Web Application Security by Hoffman to grasp privacy concerns in form‑filling.