AI cannot deconstruct and innovate traditional cultural symbols
From the late 1950s to the early 1960s, a group of artists and writers stayed in a dilapidated hotel in Paris, which later generations called the "Beat Hotel." This group of "beat generation" relied on occasional bursts of creativity to complete strange artistic grafting and laid the foundation for the subsequent countercultural revolution.
Brian Gissing is an artist who came up with a creative method called "cutting" when he was staying in a hotel. He uses a utility knife to finely cut books or journals and then pastes the contents onto paper to create new and unique works. In Barry Myers' book "Beat Hotel", he describes Gissing's artistic method of deconstruction and reconstruction. The disassembly of these works brings great uneasiness to the viewer
Today, we seem to be facing a similar wave again. Generative AI is creating all kinds of artwork and text at an alarming rate, stoking tensions between artists and a new generation of creators, as if we are back in the 1960s when Gissing launched his attack on mainstream culture
Time is on Your Side
Scott Belsky is Adobe’s chief strategy officer, coming originally from the startup Behance. In 2012, Adobe acquired Behance for $150 million. In 2019, Adobe launched Moodboards, a platform for artists to collect artistic inspiration, aiming to provide them with a starting point for creative ideas
Creativity is mankind’s greatest resource recycling project, by drawing from the past Inspired and combined with personal ideas, worldviews and experiences to create something new and unprecedented
"Computers achieve this effect through a true random number generator, not like the human brain The same reliance on pseudo-random number generators that are inextricably linked to things ingrained in our minds."
Belsky believes that Firefly is not just a creative theory, but a specific function , which can be achieved through generative AI tools. Firefly allows artists to describe images or styles and generate reference results in a short time. Similar to other generative AI tools, artists can interact with the machine at any time and adjust the results as needed. The original material used comes from Adobe Stock and public domain/open source art libraries
However, this creative process seems completely different from the original beat generation artists and their aesthetic style. Many of today's creative works are purely for commercial purposes or to directly meet aesthetic consumer needs. Although the impact of generative AI on commercial creative work may be less severe than in areas such as text writing, practitioners are still concerned that they will be completely replaced by the new technology. In other words, will AI take away creative work from humans?
Belsky believes that we don’t need to worry, because generative AI is not meant to replace creative people, but to save more time for practitioners. He believes that many creative, routine, mundane and repetitive tasks will be replaced by AI, allowing creative professionals to use their free time to improve the standard of digital experience. As a result, they will only get better because they will have more time and energy to explore more possibilities
Will the job market be affected?
Creative work is often stressful, so will generative AI cause creative people to lose their jobs? This question is complex and there is currently no clear answer. However, Belsky also admitted that as AI technology becomes more popular in the workplace, some positions will indeed disappear. But for most creatives, there is no need to worry too much: "What the industry ultimately needs is more practitioners, because they can unleash rich creativity, not less."
He believes that by integrating creative processes with customer experience, companies can gain wider space for experience improvement. In other words, they can use the same resources to create personalized experiences for different customer groups, fully mine the performance data related to the assets, and continuously adjust and optimize over time
亚Aaron Levie, CEO of Box, pointed out that AI has limited capabilities and cannot replace human work in all aspects. Therefore, there may be other angles worth exploring as to whether AI will cause people to lose their jobs. He emphasized in the interview that people are overly optimistic about the capabilities of AI and underestimate the depth and depth of human integration of different tasks. significance. Because of this, people often fail to predict. Some people think that AI can complete specific tasks well enough to replace humans, but in fact this is impossible. The process of human work involves the trade-off of countless variables and actions
While we can use generative AI to create stories or works of art, robots still lack the soul of an artist, that is, an understanding of the creative process. It's just copying an existing style, and art needs to incorporate human emotion, and there's currently no effective way to distill emotion into a computer program. Therefore, the same conclusion applies to creative work
Although references and borrowings from past works still exist, just like Gissing's tailoring method, this does not weaken the originality of the creative results, because without the artist's continuous output, artificial intelligence cannot quickly generate based on these materials. New product
The above is the detailed content of AI cannot deconstruct and innovate traditional cultural symbols. 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



The CentOS shutdown command is shutdown, and the syntax is shutdown [Options] Time [Information]. Options include: -h Stop the system immediately; -P Turn off the power after shutdown; -r restart; -t Waiting time. Times can be specified as immediate (now), minutes ( minutes), or a specific time (hh:mm). Added information can be displayed in system messages.

Complete Guide to Checking HDFS Configuration in CentOS Systems This article will guide you how to effectively check the configuration and running status of HDFS on CentOS systems. The following steps will help you fully understand the setup and operation of HDFS. Verify Hadoop environment variable: First, make sure the Hadoop environment variable is set correctly. In the terminal, execute the following command to verify that Hadoop is installed and configured correctly: hadoopversion Check HDFS configuration file: The core configuration file of HDFS is located in the /etc/hadoop/conf/ directory, where core-site.xml and hdfs-site.xml are crucial. use

Backup and Recovery Policy of GitLab under CentOS System In order to ensure data security and recoverability, GitLab on CentOS provides a variety of backup methods. This article will introduce several common backup methods, configuration parameters and recovery processes in detail to help you establish a complete GitLab backup and recovery strategy. 1. Manual backup Use the gitlab-rakegitlab:backup:create command to execute manual backup. This command backs up key information such as GitLab repository, database, users, user groups, keys, and permissions. The default backup file is stored in the /var/opt/gitlab/backups directory. You can modify /etc/gitlab

Enable PyTorch GPU acceleration on CentOS system requires the installation of CUDA, cuDNN and GPU versions of PyTorch. The following steps will guide you through the process: CUDA and cuDNN installation determine CUDA version compatibility: Use the nvidia-smi command to view the CUDA version supported by your NVIDIA graphics card. For example, your MX450 graphics card may support CUDA11.1 or higher. Download and install CUDAToolkit: Visit the official website of NVIDIACUDAToolkit and download and install the corresponding version according to the highest CUDA version supported by your graphics card. Install cuDNN library:

Installing MySQL on CentOS involves the following steps: Adding the appropriate MySQL yum source. Execute the yum install mysql-server command to install the MySQL server. Use the mysql_secure_installation command to make security settings, such as setting the root user password. Customize the MySQL configuration file as needed. Tune MySQL parameters and optimize databases for performance.

Docker uses Linux kernel features to provide an efficient and isolated application running environment. Its working principle is as follows: 1. The mirror is used as a read-only template, which contains everything you need to run the application; 2. The Union File System (UnionFS) stacks multiple file systems, only storing the differences, saving space and speeding up; 3. The daemon manages the mirrors and containers, and the client uses them for interaction; 4. Namespaces and cgroups implement container isolation and resource limitations; 5. Multiple network modes support container interconnection. Only by understanding these core concepts can you better utilize Docker.

A complete guide to viewing GitLab logs under CentOS system This article will guide you how to view various GitLab logs in CentOS system, including main logs, exception logs, and other related logs. Please note that the log file path may vary depending on the GitLab version and installation method. If the following path does not exist, please check the GitLab installation directory and configuration files. 1. View the main GitLab log Use the following command to view the main log file of the GitLabRails application: Command: sudocat/var/log/gitlab/gitlab-rails/production.log This command will display product

When installing and configuring GitLab on a CentOS system, the choice of database is crucial. GitLab is compatible with multiple databases, but PostgreSQL and MySQL (or MariaDB) are most commonly used. This article analyzes database selection factors and provides detailed installation and configuration steps. Database Selection Guide When choosing a database, you need to consider the following factors: PostgreSQL: GitLab's default database is powerful, has high scalability, supports complex queries and transaction processing, and is suitable for large application scenarios. MySQL/MariaDB: a popular relational database widely used in Web applications, with stable and reliable performance. MongoDB:NoSQL database, specializes in
