


Is AI not suitable for open source? MongoDB Vice President: Open source code is not suitable for artificial intelligence
It’s time to talk about the issue of AI open source.
Obviously, this is a problem that developers have to face. Basically since 2006, the issue of open source has become one of the top issues.
Matt Asay is responsible for marketing at MongoDB. Prior to that, he was head of Amazon Web Services and head of developer ecosystem at Adobe.
Before joining Adobe, Asay held a series of positions in open source companies. VP of Business Development, Marketing and Community at MongoDB, VP of Business Development at real-time analytics company Nodeable (later acquired by Appcelerator), VP of Business Development and Interim CEO at mobile HTML5 startup Strobe (later acquired by Facebook), and Ubuntu Linux COO of company Canonical and head of Americas for content management startup Alfresco.
Eventually, Asay became an emeritus director of the Open Source Initiative (OSI) and received a J.D. from Stanford University.
Previously, Matt Asay accused Google and Yahoo of having reservations about open source code, and then he Got scolded.
Now that I think about it, it makes sense.
Tim O'Reilly said that in the open source cloud era, the motivation for developers to share code is to let others run their own programs, thereby providing a copy of the source code. And the necessity for this has slowly disappeared.
In other words, Meta is not trying to hide anything about OPT-175B, but it is really difficult to build a similar infrastructure. Even for those with the money and technology, the end result will be a different version.
And that's exactly what Yahoo's Jeremy Zawodny and Google's Chris DiBona made at OSCON 2006.
But then again, it’s hard to trust an AI if you don’t understand the scientific principles inside the machine.
So, we need to find some way to make the infrastructure open for use.
Loukides believes that free access should be provided to external researchers and early adopters. However, it’s not like giving them a master key to access Meta, Google or OpenAI’s data centers, but through a public API.
This may not be the "open source" that most people expect, but it is actually acceptable.
A different way of looking at open source
Now, Matt Asay’s accusations against Google and Yahoo are meaningless.
Since 2006, Google has packaged and open sourced critical infrastructure to meet strategic needs.
In Matt Asay’s view, TensorFlow is the entrance to open source, and Kubernetes is the exit to open source. These open source machine learning industry standards are expected to improve Google Cloud workloads or ensure portability between Google Clouds, thereby winning more workloads to Google Cloud.
The people who came up with this are smart, but it's not open source in the Pollyanna sense.
It’s not just Google. It just does open source better than other companies. Open source is inherently selfish, and companies and individuals will always open up code that benefits themselves or their customers.
Always has been, and always will be.
Loukides believes that AI should be open in a meaningful way (despite the differences between the three major AI giants and other companies), but the open source he refers to is not open source in our general sense. why?
The reason is that while traditional open source is great, it has never successfully solved the problem DiBona and Zawodny proposed at OSCON in 2006, both for the creators and consumers of the software. The cloud open source problem.
More than ten years have passed and we are still no closer to the answer.
Then again, we are indeed a little closer.
Matt Asay believes that we need to look at open source in a new way.
He is close to Loukides’s thinking: The key is to provide researchers with sufficient access so they can Discover how a specific AI model succeeds or fails.
"They don't need full access to all code and infrastructure to run these models." As he puts it, full access to the code only makes sense if developers can run open source programs on their laptops and create derivative works.
Given the scale and unique complexity of code run by Google or Microsoft today, this makes no sense — we won’t have full access to cloud code at scale.
We need to understand: open source is not a lens through which to view the open source world. And considering the cloud age we live in today, open source is used less and less.
Our goal, both as a company and as individuals, should be to open up access to software in a way that benefits customers and third-party developers, making it easier to understand, rather than trying to reinvent open source concepts from decades ago Chengyun. It doesn't apply to open source, just like it doesn't apply to AI.
It’s time to change your mind.
The above is the detailed content of Is AI not suitable for open source? MongoDB Vice President: Open source code is not suitable for artificial intelligence. 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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

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











Using the chrono library in C can allow you to control time and time intervals more accurately. Let's explore the charm of this library. C's chrono library is part of the standard library, which provides a modern way to deal with time and time intervals. For programmers who have suffered from time.h and ctime, chrono is undoubtedly a boon. It not only improves the readability and maintainability of the code, but also provides higher accuracy and flexibility. Let's start with the basics. The chrono library mainly includes the following key components: std::chrono::system_clock: represents the system clock, used to obtain the current time. std::chron

DMA in C refers to DirectMemoryAccess, a direct memory access technology, allowing hardware devices to directly transmit data to memory without CPU intervention. 1) DMA operation is highly dependent on hardware devices and drivers, and the implementation method varies from system to system. 2) Direct access to memory may bring security risks, and the correctness and security of the code must be ensured. 3) DMA can improve performance, but improper use may lead to degradation of system performance. Through practice and learning, we can master the skills of using DMA and maximize its effectiveness in scenarios such as high-speed data transmission and real-time signal processing.

In MySQL, add fields using ALTERTABLEtable_nameADDCOLUMNnew_columnVARCHAR(255)AFTERexisting_column, delete fields using ALTERTABLEtable_nameDROPCOLUMNcolumn_to_drop. When adding fields, you need to specify a location to optimize query performance and data structure; before deleting fields, you need to confirm that the operation is irreversible; modifying table structure using online DDL, backup data, test environment, and low-load time periods is performance optimization and best practice.

C performs well in real-time operating system (RTOS) programming, providing efficient execution efficiency and precise time management. 1) C Meet the needs of RTOS through direct operation of hardware resources and efficient memory management. 2) Using object-oriented features, C can design a flexible task scheduling system. 3) C supports efficient interrupt processing, but dynamic memory allocation and exception processing must be avoided to ensure real-time. 4) Template programming and inline functions help in performance optimization. 5) In practical applications, C can be used to implement an efficient logging system.

The top 10 digital virtual currency trading platforms are: 1. Binance, 2. OKX, 3. Coinbase, 4. Kraken, 5. Huobi Global, 6. Bitfinex, 7. KuCoin, 8. Gemini, 9. Bitstamp, 10. Bittrex. These platforms all provide high security and a variety of trading options, suitable for different user needs.

Measuring thread performance in C can use the timing tools, performance analysis tools, and custom timers in the standard library. 1. Use the library to measure execution time. 2. Use gprof for performance analysis. The steps include adding the -pg option during compilation, running the program to generate a gmon.out file, and generating a performance report. 3. Use Valgrind's Callgrind module to perform more detailed analysis. The steps include running the program to generate the callgrind.out file and viewing the results using kcachegrind. 4. Custom timers can flexibly measure the execution time of a specific code segment. These methods help to fully understand thread performance and optimize code.

The built-in quantization tools on the exchange include: 1. Binance: Provides Binance Futures quantitative module, low handling fees, and supports AI-assisted transactions. 2. OKX (Ouyi): Supports multi-account management and intelligent order routing, and provides institutional-level risk control. The independent quantitative strategy platforms include: 3. 3Commas: drag-and-drop strategy generator, suitable for multi-platform hedging arbitrage. 4. Quadency: Professional-level algorithm strategy library, supporting customized risk thresholds. 5. Pionex: Built-in 16 preset strategy, low transaction fee. Vertical domain tools include: 6. Cryptohopper: cloud-based quantitative platform, supporting 150 technical indicators. 7. Bitsgap:

How to achieve the effect of mouse scrolling event penetration? When we browse the web, we often encounter some special interaction designs. For example, on deepseek official website, �...
