


AI software can automatically identify ancient cuneiform tablets, and researchers have made a breakthrough
News on November 24: A team from Martin Luther University Halle-Wittenberg (MLU), Johannes Gutenberg University Mainz and Mainz University of Applied Sciences developed a New artificial intelligence software can now decipher illegible cuneiform script. Unlike previous methods that relied on photos, this AI system utilizes 3D models of cuneiform tablets, delivering results that are more reliable than previous methods. This enables searches by comparing content across multiple slices, paving the way for entirely new research questions.
In the new study, the researchers used 3D models of nearly 2,000 cuneiform tablets, including about 50 from the MLU collection. It is estimated that there are about a million such tablets around the world, many of which are more than 5,000 years old and are among the oldest written texts in mankind. The films cover a wide range of topics, from shopping lists to court decisions, and shed light on humanity's past thousands of years ago. However, because these cuneiform tablets were unfired blocks of clay with words imprinted on them, they became extremely difficult to decipher, even to the trained eye
The content that needs to be rewritten is: Picture source note: This picture is generated by artificial intelligence and provided by the authorized service provider Midjourney
To solve this problem, Assistant Professor Hubert Mara of MLU proposed the idea of developing an artificial intelligence system based on 3D models. The new system decrypted text better than previous methods. In principle, this AI system works similarly to optical character recognition (OCR) software, which converts words and images of text into machine-readable text. This has many advantages, once converted to computer text, the text can be more easily read or searched
Ernst Stötzner, member of the MLU, explains: "OCR is usually used for processing photographs or scans. With ink on paper or parchment, this is not a problem. However, with cuneiform tablets, the situation becomes It's even more complicated because light and viewing angle can greatly affect the recognition of certain characters." He developed this new AI system as part of his master's thesis. The team trained the new AI software using 3D scans and other data, much of it provided by Mainz University of Applied Sciences, which is responsible for the large-scale project of 3D models
The AI system then successfully identified the symbols on the chip. The researchers were surprised to find that the system worked well even on essentially poor image material, such as photographs. The work of the researchers at Haller and Mainz provides new access to hitherto relatively exclusive material and opens many new research directions. Currently it is only a prototype capable of reliably identifying symbols in both languages, however a total of twelve cuneiform languages are known to exist. In the future, the software may also help decipher damaged inscriptions, such as three-dimensional cuneiform in cemeteries.
The content that needs to be rewritten is: [Quote: Webmaster’s Home]
The above is the detailed content of AI software can automatically identify ancient cuneiform tablets, and researchers have made a breakthrough. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Efficiently process 7 million records and create interactive maps with geospatial technology. This article explores how to efficiently process over 7 million records using Laravel and MySQL and convert them into interactive map visualizations. Initial challenge project requirements: Extract valuable insights using 7 million records in MySQL database. Many people first consider programming languages, but ignore the database itself: Can it meet the needs? Is data migration or structural adjustment required? Can MySQL withstand such a large data load? Preliminary analysis: Key filters and properties need to be identified. After analysis, it was found that only a few attributes were related to the solution. We verified the feasibility of the filter and set some restrictions to optimize the search. Map search based on city

In order to set the timeout for Vue Axios, we can create an Axios instance and specify the timeout option: In global settings: Vue.prototype.$axios = axios.create({ timeout: 5000 }); in a single request: this.$axios.get('/api/users', { timeout: 10000 }).

There are many reasons why MySQL startup fails, and it can be diagnosed by checking the error log. Common causes include port conflicts (check port occupancy and modify configuration), permission issues (check service running user permissions), configuration file errors (check parameter settings), data directory corruption (restore data or rebuild table space), InnoDB table space issues (check ibdata1 files), plug-in loading failure (check error log). When solving problems, you should analyze them based on the error log, find the root cause of the problem, and develop the habit of backing up data regularly to prevent and solve problems.

The article introduces the operation of MySQL database. First, you need to install a MySQL client, such as MySQLWorkbench or command line client. 1. Use the mysql-uroot-p command to connect to the server and log in with the root account password; 2. Use CREATEDATABASE to create a database, and USE select a database; 3. Use CREATETABLE to create a table, define fields and data types; 4. Use INSERTINTO to insert data, query data, update data by UPDATE, and delete data by DELETE. Only by mastering these steps, learning to deal with common problems and optimizing database performance can you use MySQL efficiently.

Remote Senior Backend Engineer Job Vacant Company: Circle Location: Remote Office Job Type: Full-time Salary: $130,000-$140,000 Job Description Participate in the research and development of Circle mobile applications and public API-related features covering the entire software development lifecycle. Main responsibilities independently complete development work based on RubyonRails and collaborate with the React/Redux/Relay front-end team. Build core functionality and improvements for web applications and work closely with designers and leadership throughout the functional design process. Promote positive development processes and prioritize iteration speed. Requires more than 6 years of complex web application backend

MySQL can return JSON data. The JSON_EXTRACT function extracts field values. For complex queries, you can consider using the WHERE clause to filter JSON data, but pay attention to its performance impact. MySQL's support for JSON is constantly increasing, and it is recommended to pay attention to the latest version and features.

The MySQL primary key cannot be empty because the primary key is a key attribute that uniquely identifies each row in the database. If the primary key can be empty, the record cannot be uniquely identifies, which will lead to data confusion. When using self-incremental integer columns or UUIDs as primary keys, you should consider factors such as efficiency and space occupancy and choose an appropriate solution.

Detailed explanation of database ACID attributes ACID attributes are a set of rules to ensure the reliability and consistency of database transactions. They define how database systems handle transactions, and ensure data integrity and accuracy even in case of system crashes, power interruptions, or multiple users concurrent access. ACID Attribute Overview Atomicity: A transaction is regarded as an indivisible unit. Any part fails, the entire transaction is rolled back, and the database does not retain any changes. For example, if a bank transfer is deducted from one account but not increased to another, the entire operation is revoked. begintransaction; updateaccountssetbalance=balance-100wh
