Page 781«..1020..780781782783..790800..»

Medical robot steers needle through living lung | UNC-Chapel Hill – The University of North Carolina at Chapel Hill

A team of researchers and physicians from UNC-Chapel Hill has demonstrated, for the first time, a robotic steerable needle capable of autonomously maneuvering through living tissue to reach a target while avoiding anatomical obstacles. The team published this milestone resultonlinein Science Robotics,the most prestigious journal covering robotics research.

Commercial medical robots sold today are typically teleoperated, meaning a human is always directly controlling every motion, saidRon Alterovitz, professor in the College of Arts and Sciences computer science department and the projects principal investigator. By leveraging the power of robotics and AI, we developed a robot capable of autonomously steering needles to targets in living tissue with unprecedented accuracy and safety.

An autonomous medical robotic needle could be used to facilitate safer, more accurate procedures throughout the body including biopsies, directed drug delivery and localized radiation cancer treatment. Needles are a fundamental tool for such procedures because they are minimally invasive, which reduces the patients pain and recovery time.

Developing the autonomous robotic steerable needle is a multidisciplinary effort by computer scientists, engineers and physicians. In addition to Alterovitz, the team at Carolina includes UNC School of Medicines Dr.Jason Akulian, with expertise in interventional pulmonology, and Dr.Yueh Z. Lee, with expertise in radiology. Contributing engineering expertise are team membersRobert J. Webster IIIat Vanderbilt University andAlan Kuntz, a former Carolina graduate student who is now on the faculty of the University of Utah.

The research team successfully demonstrated this novel robot in one of the most challenging organs: the breathing lung. Unlike other organs, the lungs are constantly expanding and contracting in the chest cavity. According to Akulian, its like shooting at a moving target.

This technology allows us to reach targets we cant otherwise reach with a standard or even robotic bronchoscope, said Akulian, the papers co-author.

The steerable needle must navigate around anatomical obstacles to reach a nodule in the lung. To drive through tissue, the needle needs to know where it is going. The research team used CT scans of the subjects thoracic cavity to create three-dimensional models of the lung, including the airways, blood vessels and the chosen target. Using this 3-D model, their AI-driven software instructs it to automatically travel from one point to another while avoiding important structures.

The autonomous steerable needle weve developed is highly compact, but the system is packed with a suite of technologies that allow the needle to navigate autonomously in real-time, said Alterovitz. Its akin to a self-driving car, but it navigates through lung tissue, avoiding obstacles like significant blood vessels as it travels to its destination.

The team plans to continue to work to bring robotic steerable needles closer to clinical use in humans by refining the system and providing further guarantees on performance in challenging cases, while also exploring new applications. While theres still a lot of work to be done, Im very excited about continuing to push the boundaries of what we can do for patients, said Akulian.

Alterovitz added, We plan to continue creating new autonomous medical robots that combine the strengths of robotics and AI to improve medical outcomes for patients facing a variety of health challenges while providing guarantees on patient safety.

Here is the original post:

Medical robot steers needle through living lung | UNC-Chapel Hill - The University of North Carolina at Chapel Hill

Read More..

The Deep Link Equating Math Proofs and Computer Programs – Quanta Magazine

Some scientific discoveries matter because they reveal something new the double helical structure of DNA, for example, or the existence of black holes. However, some revelations are profound because they show that two old concepts, once thought distinct, are in fact the same. Take James Clerk Maxwells equations showing that electricity and magnetism are two aspects of a single phenomenon, or general relativitys linking of gravity with a curved space-time.

The Curry-Howard correspondence does the same but on a larger scale, linking not just separate concepts within one field, but entire disciplines: computer science and mathematical logic. Also known as the Curry-Howard isomorphism (a term meaning there exists some kind of one-to-one correspondence between two things), it establishes a link between mathematical proofs and computer programs.

Simply stated, the Curry-Howard correspondence posits that two concepts from computer science (types and programs) are equivalent, respectively, to propositions and proofs concepts from logic.

One ramification of this correspondence is that programming often seen as a personal craft is elevated to the idealized level of mathematics. Writing a program is not just coding, it becomes an act of proving a theorem. This formalizes the act of programming and provides ways to reason mathematically about the correctness of programs.

The correspondence is named for the two researchers who independently discovered it. In 1934, the mathematician and logician Haskell Curry noticed a similarity between functions in mathematics and the implication relationship in logic, which takes the form of if-then statements between two propositions.

Inspired by Currys observation, the mathematical logician William Alvin Howard discovered a deeper link between computation and logic in 1969, showing that running a computer program is a lot like simplifying a logical proof. When a computer program runs, each line is evaluated to yield a single output. Similarly, in a proof, you start with complex statements that you can simplify (by eliminating redundant steps, for example, or substituting complex expressions with simpler ones) until you arrive at a conclusion a more condensed and succinct statement derived from many interim statements.

While this description conveys a general sense of the correspondence, to fully understand it we need to learn a bit more about what computer scientists call type theory.

Lets start with a famous paradox: In a village there lives a barber who shaves all the men who do not shave themselves, and only them. Does the barber shave himself? If the answer is yes, then he must not shave himself (because he only shaves men who dont shave themselves). If the answer is no, then he must shave himself (because he shaves all the men who dont shave themselves). This is an informal version of a paradox Bertrand Russell discovered while trying to establish the foundations of mathematics using a concept called sets. That is, its impossible to define a set that contains all sets that do not contain themselves without encountering contradictions.

To avoid this paradox, Russell showed, we can use types. Roughly speaking, these are categories whose specific values are called objects. For example, if theres a type called Nat, meaning natural numbers, its objects are 1, 2, 3, and so on. Researchers typically use a colon to denote the type of an object. The number 7, of integer type, can be written as 7: Integer. You can have a function that takes an object of type A and spits out an object of type B, or one that combines a pair of objects that were type A and type B into a new type, called A B.

One way to resolve the paradox, therefore, is to put these types into a hierarchy, so they can only contain elements of a lower level than themselves. Then a type cant contain itself, which avoids the self-referentiality that creates the paradox.

In the world of type theory, proving that a statement is true can look different from what were used to. If we want to prove that the integer 8 is even, then its a matter of showing that 8 is indeed an object of a specific type called Even, where the rule for membership is being divisible by 2. After verifying that 8 is divisible by 2, we can conclude that 8 is indeed an inhabitant of the type Even.

Curry and Howard showed that types are fundamentally equivalent to logical propositions. When a function inhabits a type that is, when you can successfully define a function that is an object of that type youre effectively showing that the corresponding proposition is true. So functions that take an input of type A and give an output of type B, denoted as type A B, must correspond to an implication: If A, then B. For example, take the proposition If its raining, then the ground is wet. In type theory, this proposition would be modeled by a function with the type Raining GroundIsWet. The different-looking formulations are in fact mathematically the same.

As abstract as that linkage may sound, it has not only changed how practitioners of math and computer science think about their work, but also led to several practical applications in both fields. For computer science, it provides a theoretical foundation for software verification, the process of ensuring the correctness of software. By framing desired behaviors in terms of logical propositions, programmers can mathematically prove that a program behaves as expected. It also provides a strong theoretical foundation for designing more powerful functional programming languages.

And for mathematics, the correspondence has led to the birth of proof assistants, also called interactive theorem provers. These are software tools that aid in constructing formal proofs, such as Coq and Lean. In Coq, each step of the proof is essentially a program, and the proofs validity is checked with type-checking algorithms. Mathematicians have also been using proof assistants notably, the Lean theorem prover to formalize mathematics, which involves representing mathematical concepts, theorems and proofs in a rigorous, computer-verifiable format. That allows the sometimes informal language of mathematics to be checked by computers.

Researchers are still exploring the consequences of this link between math and programming. The original Curry-Howard correspondence fuses programming with a kind of logic called intuitionistic logic, but it turns out that more types of logic could be amenable to such unifications as well.

What has happened in the century since Currys insight is that we keep discovering more and more instances where logical system X corresponds to computational system Y, said Michael Clarkson, a computer scientist at Cornell University. Researchers have already connected programming to other types of logic like linear logic, which includes the concept of resources, and modal logic, which deals with concepts of possibility and necessity.

And while this correspondence bears Currys and Howards names, they are by no means the only ones who have discovered it. This attests to the foundational nature of the correspondence: People keep noticing it again and again. It seems to be no accident that theres a deep link between computation and logic, Clarkson said.

Read the original here:

The Deep Link Equating Math Proofs and Computer Programs - Quanta Magazine

Read More..

Professor Feature: Dr. Andy Davis The Grizzly – The Grizzly

Image sourced from: https://www.ursinus.edu/live/profiles/6548-andrew-davisDetails

Article by Nico Yanzaguano

Only three professors in the music department?! Talk about a small liberal arts school! A recent addition to the music department as of 2022 is Dr. Andy Davis who is an Assistant Professor of Music and Technology.

Dr. Davis comes from a background in both computer science and music, and offers an impressive and insightful perspective in the realm of music technology. He obtained his B.A in music, M.M in music composition, and his Ph.D. in music composition. While pursuing his Ph.D. in music composition, Dr. Davis sought after programming languages to gain a greater grasp of how exactly modern technology is being used to develop and manipulate elements of music that you love and maybe dont even recognize from your favorite artists. Just a year after receiving his Ph.D. he obtained his M.S in computer science. With an extensive background in music composition and computer science, Dr. Davis has a truly impressive understanding of music technology.

During the semester, I took his Music Technology 1 course, and on multiple occasions Dr. Davis developed programs to showcase how specific elements of the effects we used in the program Logic functioned, how certain sounds are perceptual, and technical tricks to develop your own samples from scratch.

When asked why he chose Ursinus, he described the experience of sitting in a massive lecture hall that would host several hundreds of students, stating that if he were to profess to a sea of students he would feel like I am just here to deliver information and walk out of the door. That doesnt seem exciting to me. Just as you chose Ursinus for the strong and intimate nature of relationships you can have with professors, Dr. Davis is committed to the individual students creative desires, curiosity, understanding of material, and most importantly creating space for students to form their own opinions. The world of music is so large and ever growing that arguably not one artist or song is better than another. Dr. Davis says he tries to hide his interests when showcasing songs because of that fact.

Courses Dr. Davis is currently teaching are Foundations in Theory (Music Theory), Music Technology 1, and a song writing course. In his courses you will become familiar with the digital audio workspace (DAWS), Logic, by navigating universal tools that DAWS are equipped with. You will learn how to mix, how to craft unique samples and synths, production, loop-based composition, and basic music theory and digital audio theory. I regret to inform you all that music technology is not exam heavy, but instead you have to sit around and play with music and music technology instead.

Today Dr. Daviss office is in what he and other music faculty call the tundra of Bomberger, aka the basement of Bomberger. Tomorrow may you consider taking a peek at just what musical magic he has to offer. For the future, Dr. Davis says he will be offering a second semester of Music Technology. This course will be focused on hands-on work with music hardware, like learning how exactly to use microphones and equipment to record specific kinds of instruments. The type of experience you can expect out of his courses is enough to pursue internships at recording studios, graduate work, and beyond experience, you will have tools you can navigate to round you out as a musician to feel more confident playing and exploring how you would like to express yourself.

Dr. Davis grew up with a strong passion for music, and in previous conversations has stated his doubts about figuring out how to pursue a career in music. In this interview, he said if he was being true with himself, he was putting in the leg work, musical and non-musical to get to this point. Our Music Technology professor has arrived. I always had music as the goal. Dr. Andy Davis

Read more:

Professor Feature: Dr. Andy Davis The Grizzly - The Grizzly

Read More..

Cadet AI research today leads to innovation tomorrow – Air Force Academy

Cadet 1st Class Samuel Brennen demonstrates brain-computer interface technology in the U.S. Air Force Academy Department of Computer and Cyber Sciences September 28, 2023. (U.S. Air Force photo by Justin Pacheco)

By Randy RoughtonU.S. Air Force Academy Strategic Communications

U.S. AIR FORCE ACADEMY, Colo.- It sounds like something straight out of Hollywoods latest blockbusterAirmen controlling drones with their minds.

But rather than being complete science fiction, U.S. Air Force Academy Department of Computer and Cyber Sciences cadets work to make it science fact.

Cadet 1st Class Kayleb Klapp is just one of the cadets working on several capstone projects with the goal of harnessing artificial intelligence. In this case, it is to interpret electroencephalography output to useable output, Klapp said.

Basically, use the power of thought to control a drone.

Klapp, a member of Cadet Squadron 37 and Computer Science major with an emphasis on artificial intelligence, began his AI work with the Autonomous Systems Integration course. This was followed by a summer research program with the Air Force Research Laboratory in Rome, New York. He hopes to further his AI work in graduate school.

I wasnt too sure of what would come from my cadet career when I first arrived, but there has been plenty of opportunity, Klapp said. Combined with my capstone [research], these experiences have made me very comfortable working with and building AI.

Pictured is the Ghost Robotics Vision 60 robot in the U.S. Air Force Academy Department of Computer and Cyber Sciences September 28, 2023. (U.S. Air Force photo by Justin Pacheco)

The Computer and Cyber Sciences Departments major areas of AI work involve scalp-based brain-computer interface technology, neural networks, and human-robot interactions, said assistant professor Dr. Chad Mello.

The faculty facilitates cadet skills with empowered leadership through cyber resilience and artificial intelligence innovation, Mello said. We are shaping tomorrows leaders in cyber resilience and AI innovation.

Cadets like Klapp work with scalp-based computer interfaces to capture useful brain waves externally through what is referred to as dry electrodes, Mello said. The cadets experiment with practical methods to use non-invasive brain-computer interfaces to enable closer integration with humans, robotic tools and technologies.

Were nearing a breakthrough where these devices can intuitively discern human intent and respond to new environments in a manner akin to how humans would when encountering them for the first time, Mello said.

Capstone projects like the one Klapp is working on are cadet-led with faculty guidance and at the heart of the departments breakthrough work in AI.

[Cadets] are helping to actively shape the practical side of AI, Mello said. Their work may offer insights and solutions for defense and aerospace challenges. As emerging leaders, Air Force cadets connect todays AI achievements with future possibilities.

Capstone projects all have real-world applications and impacts, and the program has evolved to keep pace with the needs and technological advances of the day. This includes an expanded curriculum in modern programming languages and techniques, technology stacks, AI and machine learning, and cyber security.

Additionally, cadets have more interesting capstone research options in engineering topics than ever before, Mello said.

Artificial intelligence technologies are already transforming geopolitical competition and will only increase in its importance over the next few decades, said Col. Judson Dressler, head of the Cyber and Computer Sciences Department. Our responsibility at the [Academy] is to ensure the cadets understand its capabilities, how it impacts military strength and deterrence as well as the ethical and legal considerations under the law of armed conflict and the US Constitution. We want them to be prepared for the future character of war, so we maintain our competitive advantage now that the technical transformation is at our doorstep.

Cadets also work on using AI and neural networks. Deep neural networks are indispensable in computer science and almost every other scientific field in making sense of voluminous data, Mello said. Scientists use these networks to detect patterns in data that humans cannot see or understand.

By combining these networks into even larger, more complex networks, were able to execute complex tasks in complex environments in ways only dreamed of even 10 years ago, Mello said.

Cadet 1st Class Leonardo Camacho applies deep learning to voluminous data for detecting, predicting and classifying astronomical events in the U.S. Air Force Academy Department of Computer and Cyber Sciences September 28, 2023. (U.S. Air Force photo by Justin Pacheco)

See photos of the Department of Computer and Cyber Sciences AI on Flickr.

See more here:

Cadet AI research today leads to innovation tomorrow - Air Force Academy

Read More..

Maryland Today | Can Chopping Fruit Help Computers Learn? – Maryland Today

Courtesy of Chop & Learn team

To develop the datasets, Saini and fellow computer science doctoral students Hanyu Wang and Archana Swaminathan filmed themselves chopping 20 types of fruits and vegetables in seven styles using video cameras set up at four angles.

The variety of angles, people and food-prepping styles are necessary for a comprehensive data set, said Saini.

Someone may peel their apple or potato before chopping it, while other people dont. The computer is going to recognize that differently, she said.

[AI Melds With Musical Tradition in Violin Teaching Platform]

In addition to Saini, Wang and Swaminathan, the Chop & Learn team includes computer science doctoral students Vinoj Jayasundara and Bo He; Kamal Gupta Ph.D. 23, now at Tesla Optimus; and their adviser Abhinav Shrivastava, an assistant professor of computer science.

Being able to recognize objects as they are undergoing different transformations is crucial for building long-term video understanding systems, said Shrivastava, who also has an appointment in the University of Maryland Institute for Advanced Computer Studies. We believe our dataset is a good start to making real progress on the basic crux of this problem.

In the short term, Shrivastava said, the Chop & Learn dataset will contribute to the advancement of image and video tasks such as 3D reconstruction, video generation, and summarization and parsing of long-term video.

Those advances could one day have a broader impact on applications like safety features in driverless vehicles or helping officials identify public safety threats, he said.

And while its not the immediate goal, Shrivastava said, Chop & Learn could contribute to the development of a robotic chef that could turn produce into healthy meals in your kitchen on command.

See the article here:

Maryland Today | Can Chopping Fruit Help Computers Learn? - Maryland Today

Read More..

Starting up the ladder – Harvard School of Engineering and Applied Sciences

Iaki Arango wanted a change after his freshman year at Rice University in Texas. He was interested in science and technology, but also start-ups and entrepreneurship, and before starting college had interned at Romulus Capital in Boston.

My boss at Romulus, hed gone to Harvard too, and he told me about how many of his college friends started companies, often with the same people they stayed up with until 3 a.m. doing problem sets at school, Arango said.

That helped convince Arango to transfer here a year later, and his entrepreneurial interests drew him to extracurricular activities like the Harvard Quantitative Traders Club, which mentors students interested in finance. Hes now a third-year dual-concentrator in computer science and statistics at the Harvard John A. Paulson School of Engineering and Applied Sciences (SEAS).

What Arango couldnt predict when he arrived was the other major extracurricular in his life: the Harvard Society for Hispanic Professional Engineers (SHPE). Arango, who grew up in Argentina, wasnt aware of SHPE as a national organization before coming to campus. Once he learned about the organizations mission of promoting Hispanic and Latinx representation in science, technology, engineering and mathematics (STEM), he joined the Harvard chapters board. After one semester, he successfully ran for his current role as chapter president.

SHPE is a really good community, he said. In general, STEM fields are harder to get into for people from underrepresented backgrounds, especially low-income communities. I thought that participating with SHPE on campus would be a good way to meet other Hispanic people in STEM, helping push the mission as I got to know similar people on campus.

Arangos STEM interests come from a combination of hobbies and pressure from his high school teachers in Argentina. He was much more interested in the humanities and thought hed one day become a lawyer, but his high school biology teacher convinced him to join his schools Biology Olympiad team. The next year, his physics teacher got him to join the Science Olympiad team.

At the same time, I started working with Arduinos, the tiny control boards used in robots, and started doing that for fun after school, he said. It was hard to get an Arduino in Argentina at that time, so Id go to electronic stores and buy very basic components and try to build with that. Once I finally got an Arduino, that got me into coding. From there, a friend suggested I start learning how to code websites, so I started learning JavaScript and other similar languages.

Between his blossoming computer science skills and the Information and Communication Technologies educational track he was on in high school, Arango was able to start several companies before going to college. One company thats still ongoing is Recyco, a platform that connects users with various recycling services in Argentina. That includes helping individuals locate recycling centers or schedule pick-ups, as well as connecting manufacturers looking to increase the recycled material in their products with suppliers.

Most of my assistance was on the technology side, doing the architecture for the software, thinking through modern user experience patterns, he said. We want to create a market where companies can indicate how much recycled plastic they want to use, press a couple buttons and be connected with a vendor.

Because Latinx Heritage Month falls during peak recruiting season, most of SHPEs recent programming has been professionally oriented. A SpaceX recruiter recently came to review resumes and chat about career opportunities there, and SHPE followed that with another recruiting event with Bloomberg. The club is also preparing to send its upper-level students to the national SHPE conference in November in Salt Lake City.

Last year, more than half the people that we sponsored to attend the national SHPE conference got a job offer there, Arango said. We usually take students from the junior and senior classes because they have a more immediate need to find a job. Well be letting this years attendees know very soon.

Read the rest here:

Starting up the ladder - Harvard School of Engineering and Applied Sciences

Read More..

Six Graduate Students in Mathematics Receive Travel Awards to … – University of Arkansas Newswire

Photo Submitted

Left to right: Pritom Roy, Xuan Gu, Nailah Rawnaq, Irina Afanasyeva, James Burton, Ryan Holley

The eighth annual meeting of the SIAM Central States Sectionwas held on Oct. 7-8 on the campus of the University of Nebraska-Lincoln. Since its foundation in 2014, the SIAM-CSShas servedSIAM members in eight central U.S. states: Arkansas, Colorado, Iowa, Kansas, Mississippi, Missouri, Nebraskaand Oklahoma.

Four doctoral students in mathematics and two master students in statistical and analytics received travel awards to attend and present their research at the SIAM-CSS annual meeting. The students Irina Afanasyeva, James Burton, Xuan Gu, Ryan Holley, Nailah Rawnaq and Pritom Roy of the Department of Mathematical Sciences are advised by Tulin Kaman, associate professorand the Lawrence Jesser Toll Jr. Endowed Chair in the Department of Mathematical Sciences.

Afanesyeva's research focuses on the effects of turbulence inflow models on wind loads, which is a collaborative project with Panneer Selvam, University Professor in the Department of Civil Engineering at the U of A.

Burton's research focuses on the development of massively parallel, block-structured adaptive mesh refinement front tracking method, which is a collaborative project with Ann Almgren, a senior scientist and department head of the Applied Mathematics Department in the Applied Mathematics and Computational Research Division at Lawrence Berkeley National Laboratory.

Gu's research is on the development of physics-informed and computationally efficient machine learning algorithms for fluid flows, which is a joint work with Xiao Liu, associate professor at the H. Milton Stewart School of Industrial and Systems Engineering at the Georgia Institute of Technology, and Kevin Jin, associate professor in the U of A Department of Computer Science and Computer Engineering. This project has been supported by Chancellor's Fund for Innovation and Collaboration since 2021.

Holley's research is on the development of numerical algorithms to describe the evolution of turbulent mixing at the interface of two fluids due to the hydrodynamic instabilities, which are of great interest in a variety of scientific and engineering problems, such as astrophysical and high-energy-density applications.

Rawnaq's and Roy's research focuses on the use of the convolutional neural network-based medical image segmentation and the improvements of the existing machine learning interpretable prediction models for cancer diagnostics.

Kaman's Computational and Applied Mathematics (CAM) research group at the U of A involves the development of computational models and efficient, accurate numerical algorithms to predict the behavior of complex systems.

About SIAM: Society for Industrial and Applied Mathematics (SIAM) is an international community of over 14,000 individual members. Almost 500 academic, manufacturing, research and development, service and consulting organizations, government, and military organizations worldwide are institutional members. SIAM was incorporated in 1952 as a nonprofit organization to convey useful mathematical knowledge to other professionals who could implement mathematical theory for practical, industrial, or scientific use. Since then, SIAM's goals have remained the same. SIAM fosters the development of applied mathematical and computational methodologies needed in various application areas. Applied mathematics, in partnership with computational science, is essential in solving many real-world problems. Through publications, research and community, the mission of SIAM is to build cooperation between mathematics and the worlds of science and technology.

View post:

Six Graduate Students in Mathematics Receive Travel Awards to ... - University of Arkansas Newswire

Read More..

Laying the foundations of programming and system design – Nature.com

In the 1970s, when I was working on CLU, Alan Kay, Dan Ingalls, Adele Goldberg, Ted Kaehler, Diana Merry and Scott Wallace created the programming language Smalltalk. Smalltalk had classes and subclasses, which were introduced originally in the Simula 67 programming language. Around 1986, when I was focused on distributed systems, I was asked to give the keynote for OOPSLA, which is a conference focused on object-oriented programming, and I decided to look into what was going on with Smalltalk and its derivatives. While going through the literature, I discovered people were interested in something called type hierarchy, but they didnt understand exactly what it was. I came up with a way to define this, which I described in my talk at OOPSLA.

Several years later, in the early 1990s, I got an email asking if I could explain the definition of the Liskov substitution principle. That was the first time I heard that term because I had not introduced it that way, and I then discovered that there was a huge interest in this question. This interest was not surprising because type hierarchy is an important concept for object-oriented programs. A little while later, Jeannette M. Wing suggested that we could come up with a formal definition of the Liskov substitution principle. That was what led to the manuscript that came out in 1994.

Read more:

Laying the foundations of programming and system design - Nature.com

Read More..

Samsung Electronics To Host AI Forum 2023 Highlighting AI and … – Samsung

Industry experts and researchers will discuss the future of AI, with the event theme of large-scale AI for a better tomorrow

Samsung Electronics today announced that it will host the Samsung AI Forum 2023 on November 7 at the Suwon Convention Center in Gyeonggi-do, Korea. The forum serves as a platform to showcase the latest research achievements in artificial intelligence (AI) and computer engineering (CE), which will contribute to enhancing the companys next-generation semiconductor technologies.

Samsung AI Forum 2023, which is being hosted by the Samsung Advanced Institute of Technology (SAIT), will also focus on and highlight the direction of future research, with the presence of world-renowned AI scholars and industry experts. This seventh iteration of the Samsung AI Forum will be an in-person event, held under the theme of large-scale AI for a better tomorrow.

Kye Hyun Kyung, President and CEO of Samsung Electronics Device Solutions Division, will begin the forum with opening remarks, followed by keynotes from Yoshua Bengio, professor at the University of Montreal, and Jim Keller, CEO of AI semiconductor startup Tenstorrent.

Professor Satoshi Matsuoka of the Riken Institute of Computer Science in Japan, and Larry Zitnick, a research scientist from the Meta AI Research Lab will also be giving invited talks. In addition to these notable speakers, SAITs AI and CE research leaders as well as leading academics from around the world will share the status and vision of their research.

Samsung AI Forum 2023 will address two key topics: Large Language Models and Transformation of AI for Industry, and Large-scale Computing for Large Language Model and Simulation, which cover AI and CE, respectively.

During the forum, Samsung will also host a ceremony to announce the winners of the Samsung AI Researcher Award and the Samsung AI/CE Challenge. These accolades are intended to honor up-and-coming researchers, university students and graduates who are excelling domestically.

Furthermore, the forum will seek to vitalize the AI and CE research ecosystem by presenting posters of leading research papers and preparing networking programs for attendees.

We believe AI- and CE-enhanced next generation semiconductor technology will play a pivotal role in improving the quality of life and SAIT has been working closely with academics and experts to seek Samsungs new long-term growth drivers. We hope Samsung AI Forum will accelerate the expansion of the AI and CE research ecosystem around the world, said Gyoyoung Jin, President of SAIT and Co-Chair of the Samsung AI Forum.

Registration will be available from October 12 on the Samsung AI Forum website, which allows attendees to pre-submit questions to the forums speakers.

Excerpt from:

Samsung Electronics To Host AI Forum 2023 Highlighting AI and ... - Samsung

Read More..

Physics major goes abroad with summer internship in Switzerland – Rowan Today

During his undergraduate career, physics major Nicholas Kurth has sampled many subsets of the discipline: theoretical physics, materials science physics, gravitational waves, and spectroscopy. Thanks to a prestigious summer internship, Kurth can check particle and high-energy physics off the list.

This summer, the Rowan University senior took part in the eight-week Summer Undergraduate Research Experience at the European Organization for Nuclear Research (CERN), in Geneva, Switzerland.

One of just two dozen American students to be accepted into the program, Kurth worked alongside researchers from all over the world and was under the supervision of a postdoctoral student from Italy. The program was offered through a partnership with the University of Michigan and CERN with funding from the National Science Foundation. Attendees were juniors and seniors majoring in physics, engineering, or computer science at a four-year institution.

Kurths research focus was to test the performance of new detectors that track subatomic particles, called muons, for an experiment known as Compact Muon Solenoida specialty outside his typical area of study. The 21-year-old was also able to present his findings to his peers.

I got to explain to them all the work I do and how cool the science is, the Ocean County, New Jersey native said.

Kurth began working in research labs at Rowan in his freshman year. Throughout his tenure, Kurth has studied alongside Eduardo Flores, Ph.D., and Nathaniel Nucci, Ph.D., both associate professors in the College of Science & Mathematics. These research experiences set him up for success at CERN.

These opportunities to do research with Rowan professors is what prepared me for the skills I would need, Kurth said. What do I have to look for? What should I test? How should I analyze?

What makes Nick an exceptional scientist is, he is creative and innovative, but also is capable of doing his science with exceptional attention to detail, Nucci said. He's also fearless. He tackles content that some research students would immediately tag as too hard. That's just not in Nick's lexicon.

Aside from the research opportunity, Kurth took advantage of the cultural riches Europe offered. During his time off, he and his fellow undergraduate scientists visited more than a dozen cities in Germany, France, Ireland and Switzerland.

After graduating in May, Kurth plans to attend graduate school to research spectroscopythe science of utilizing light to study molecules.

Thanks to the support of our dedicated faculty, Rowan University students have the opportunity to pursue top-notch research, not just on our campuses, but around the world, said Vojislava Pophristic, Ph.D., dean of the College of Science & Mathematics. Its quite gratifying to see our students gain such exciting experiences and we look forward to seeing even more.

Read the original:

Physics major goes abroad with summer internship in Switzerland - Rowan Today

Read More..