// Import ======================================================================================================================== import App from '@/layouts/aia/app-layout'; import { Link } from '@inertiajs/react'; type NewsDetailProps = { title?: string; date?: string; time?: string; imageUrl?: string; content?: string; address?: string; description?: string; link?: string; }; export default function NewsDetail( { title = "2025 AIA Spring Forum: The Impact and Response of Open Source Models", date = "March 27, 2025", address = "Humanities and Social Sciences Building, Academia Sinica (No. 128, Sec. 2, Academia Rd., Nangang Dist., Taipei)", time = "09:00-16:30", imageUrl = "https://dummyimage.com/1140x500.png", description = "Calling all AI decision-makers and technical experts from industry, government, academia, and research.", content = `

Hosted by the Taiwan AI Academy Foundation, the 2023 Taiwan AI Academy Annual Conference took place on September 15-16 at the Institute of Humanities and Social Sciences and the First Conference Hall of the Academic Activity Center, Academia Sinica, Nangang. The event was held across four conference halls, making it a grand gathering of AI experts and industry leaders.

Generative AI: The Catalyst for Technology and Industry Transformation

2023 has been recognized as the year of Generative AI, marking a pivotal moment in the widespread adoption of AIGC (AI-Generated Content). In response to this Cambrian explosion of AIGC applications, the Taiwan AI Academy Foundation organized two consecutive AIGC Impact Workshops in March and June, titled:

An Unparalleled AI Gathering of Industry Leaders

The 2023 Taiwan AI Academy Annual Conference brought together top enterprises at the forefront of AI innovation, featuring an elite lineup of speakers spanning industry, government, academia, research.

The opening ceremony on September 15 was hosted by Academia Sinica President Dr. James C. Liao, who also serves as Chairman of the Taiwan AI Academy Foundation. Vice President of Taiwan, Dr. Lai Ching-te, an honorary alumnus of the Academy, delivered a keynote address, with Dr. Wu Tsung-Tsong, Minister of the National Science and Technology Council, also in attendance.

`, link = "https://aiacademy.tw/", }: NewsDetailProps ) { return (
Back
{title}

{title}

  • {date}
  • {time}
  • {address}

{description}

); }