๐”พ๐•ฃ๐•–๐•–๐•Ÿ_๐”ผ๐•๐•–๐•ž๐•–๐•Ÿ๐•ฅ

40.5K posts

๐”พ๐•ฃ๐•–๐•–๐•Ÿ_๐”ผ๐•๐•–๐•ž๐•–๐•Ÿ๐•ฅ banner
๐”พ๐•ฃ๐•–๐•–๐•Ÿ_๐”ผ๐•๐•–๐•ž๐•–๐•Ÿ๐•ฅ

๐”พ๐•ฃ๐•–๐•–๐•Ÿ_๐”ผ๐•๐•–๐•ž๐•–๐•Ÿ๐•ฅ

@narutium

I want humanity to achieve a type III Civilization and explore the vast universe.

1 AU ๅ‚ๅŠ ๆ—ฅ AฤŸustos 2009
597 ใƒ•ใ‚ฉใƒญใƒผไธญ890 ใƒ•ใ‚ฉใƒญใƒฏใƒผ
Ming
Ming@tslamingยท
What if one of Teslaโ€™s most overlooked AI infrastructure inventions is not a chip, but a file format? ๐Ÿ‘€ It is called ".smol" ๐Ÿ’ฅ At supercomputer scale, the bottleneck is not always the GPU. These massive math engines are fast, but they can still end up waiting while the system parses, decodes, scans, and reshapes training data โณ Teslaโ€™s patent WO 2024/073080 attacks that bottleneck at the root: the file itself ๐Ÿ—ƒ๏ธ Instead of treating training data like a sequential file, .smol turns it into a random-access machine. Incredibly, this architectural shift can cut I/O operations by roughly 4x and trims file size by about 11% ๐Ÿ†’ If you donโ€™t have time for the full deep dive, here is how the invention works in 60 seconds: ๐Ÿš€ The header becomes a map Every timestamp or index is mapped to a precise byte offset inside the file. Instead of crawling through the data like an ancient scroll, the reader checks the header and jumps straight to the exact row it needs. ๐Ÿ“ฆ Static data stops being copied everywhere Details that do not change, such as vehicle dimensions, calibration settings, or other constant metadata, can be stored once before the timestamped rows. The file stops wasting space repeating the same background information again and again. ๐Ÿ“Š The row is arranged for cheap decisions first Lightweight fields like velocity or steering angle can sit near the front, while heavier tensors or video-derived chunks sit later. That lets the system read the โ€œheadlineโ€ first and avoid touching the expensive payload when it is not needed. โฑ๏ธ Each timestamp becomes a sensor bundle Multi-camera and sensor data can be grouped around the same timestamp or index, so the training system retrieves aligned views of the world instead of stitching together mismatched streams. ๐Ÿง  The file speaks the modelโ€™s language The format supports tensors, the mathematical structures neural networks actually consume. Some tensors can also be stored already transposed into the shape the model expects, reducing the work needed before the data reaches the GPU. ๐Ÿ”’ The layout stays fixed Because the file can be read-only, the byte offsets do not shift underneath the index. That makes the header reliable: the address still points to the same row tomorrow that it pointed to today. ๐Ÿค– The same idea scales beyond cars The patent defines โ€œegoโ€ broadly, covering vehicles, trucks, and even bipedal humanoid robots. So .smol is not just about FSD video clips; it points to a general data infrastructure for machines that perceive and move through the world. The big idea is simple: Tesla is not only trying to make the GPU faster. It is trying to make the data arrive in the shape, order, and location the AI system needs. At AI scale, the bottleneck is not always the brain. Sometimes it is the pipe feeding the brain.
Ming tweet media
Ming@tslaming

BOOOM ๐Ÿšจ TESLA INVENTED A FILE FORMAT CALLED ".SMOL" BUT IT IS HUGE BECAUSE THIS "TINY" INNOVATION ACCELERATES FSD TRAINING BY 400% โšก๏ธ You can build the worldโ€™s fastest AI training cluster, but it is useless if your storage system buckles under the pressure. For Tesla, that pressure has become existential: they are no longer just processing video; they are processing reality, and standard digital containers can simply no longer hold the weight. Realizing that legacy formats like MP4 and CSV were acting as a "restrictor plate" on their AI development, limiting the engine's performance no matter how hard they pressed the accelerator, Tesla decided to reinvent the file system from scratch. Patent WO 2024/073080 introduces a proprietary data format designed to slash Input/Output Operations (IOPS) by 400%. By abandoning traditional storage methods for a novel "header-first" architecture, Tesla has effectively unlocked a 4x speed multiplier for their FSD training pipeline without adding a single new microchip. They call it ".SMOL", which sounds like "small", but its impact on the future of autonomy is massive. However, to understand the magnitude of this innovation, we first have to look at the invisible wall Tesla hit. โณ The "data loading" bottleneck in AI supercomputing The training of complex machine learning models, specifically the "Occupancy Networks" used by Tesla to predict the physical space around a vehicle, is an incredibly resource-intensive process. These models consume millions of video clips, sensor readings, and "ground truth" data points. These are verified, real-world examples that serve as the answer key for the AI's test. To understand why this is so difficult, imagine playing a 3D version of Tetris where the game board is the real world. The car must instantly predict which empty spaces are safe to drive in and which are "occupied" by solid objects like curbs, pedestrians, or trees. The "Occupancy Network" is the brain that solves this puzzle, but it needs to watch millions of hours of driving footage to learn the rules. In a traditional computing environment, the Graphics Processing Unit (GPU) is the fastest component, capable of crunching numbers at lightning speeds. However, the GPU often sits idle, wasting expensive time and electricity, simply waiting for the storage system to find, retrieve, and load the next batch of training data from the hard drive. This bottleneck creates a phenomenon known as "Data Starvation". Think of it like owning a Ferrari (the GPU) but fueling it with a coffee straw (the storage system). No matter how fast the engine can spin, it can only go as fast as the fuel arrives. Traditional file formats are not optimized for the specific, randomized access patterns required by deep learning. When a training system needs a specific frame or tensor (a block of mathematical data) associated with a specific timestamp, standard formats often require the computer to parse through large portions of a file sequentially to find the relevant data. This is akin to trying to find a specific song on a cassette tape where you have to fast-forward past everything else to get to it. Furthermore, these formats are often bloated with redundant information. For example, if a file contains ten minutes of driving data, static attributes like the car's model, VIN, or map region might be repeated in every single row of data. Across petabytes (millions of gigabytes) of storage, this redundancy creates massive wasted space and forces the storage system to read gigabytes of useless information just to get to the actual pixel data needed for training. Facing this mountain of wasted effort, Tesla engineers realized they couldn't just optimize existing tools. They had to build a new one. ๐Ÿ“‘ Tesla's solution: A "header-first" indexed architecture Teslaโ€™s solution is a bespoke file format designed specifically for the high-performance needs of the Dojo supercomputer and their GPU clusters. At the core of this invention is a sophisticated "header-first" architecture that turns the data file into a random-access database. Think of standard video formats like an ancient scroll. If you want to find a specific sentence in the middle, you are forced to unroll the entire thing from the beginning until you find it. This "sequential access" is agonizingly slow for a computer. Teslaโ€™s format, by comparison, functions like a reference book with a detailed master index at the very front. When the system generates a file, it creates a master index in the header that maps every single timestamp to a specific memory offset. This is a precise byte location on the disk. This allows the training system to perform "random access" reads. Instead of scanning through a file to find a specific moment in time, the processor reads the header, calculates exactly where that data lives on the disk, and "skips" directly to that memory position. It effectively allows the processor to "teleport" through the data, skipping over gigabytes of irrelevant information. To solve the redundancy issue, the format segregates data into dynamic and static segments. Data that does not change over the course of the recording, such as the vehicle's dimensions, the camera calibration settings, or the map data, is written only once at the beginning of the file immediately following the header. The dynamic data, such as velocity, video tensors, and steering inputs, are then stored in subsequent rows. This separation ensures that the system never wastes bandwidth reading the same static variable twice. The patent documentation suggests that this specific architectural change results in an approximately 11% decrease in file size and, more importantly, reduces the number of Input/Output operations (IOPS) by a factor of four. But to truly appreciate why this custom architecture is necessary, we must compare it against the standard tools that failed to keep up. ๐Ÿ†š Comparison: Why standard formats fail at scale In the world of standard data storage, formats like CSV, JSON, or standard MP4 containers are designed for compatibility and linear playback, not for the massive parallel processing required by AI. These legacy formats impose a hidden "tax" on performance that becomes crippling at Tesla's scale. Standard video files, for instance, are optimized for Netflix, not Neural Networks. They utilize a compression technique known as inter-frame compression, where the file stores one complete "Keyframe" followed by a series of partial frames that only describe changes. This creates a massive inefficiency for AI training: if a supercomputer needs to grab a random batch of 50 frames to train a model, it cannot simply view "Frame 50" in isolation. It often has to find "Frame 1" and mathematically reconstruct frames 2 through 49 just to figure out what Frame 50 looks like. This is wasted computational effort, spending 98% of the GPU's power decoding data it will immediately throw away. Text-based formats like CSV suffer from a similar "parsing penalty" due to variable row widths. Because the number "100" takes up more characters than "1", every row in a dataset has a different physical length on the disk. If you tell a computer to "go to Row 1,000,000", it cannot simply teleport there. It is forced to start at Row 1 and scan every single comma and newline character for the first 999,999 rows just to locate where the millionth row begins. This turns a simple retrieval task into a heavy processing job. Tesla's format eliminates both problems by treating video and sensor data like a "Look-Up Table", or a cheat sheet. Because the header contains the exact "Byte Offset" (address) of every data row, the read operation is deterministic. The system doesn't need to scan for newlines or reconstruct previous video frames; it reads the address from the header, jumps instantly to that specific byte on the hard drive, and grabs a perfectly self-contained "bundle" of data. Ideally, you can think of standard formats like a cassette mixtape: if you want to hear the fifth song, you have to physically fast-forward through the first four songs to get there. The act of "seeking" takes time. Teslaโ€™s format is more like a vinyl record. You can see the grooves (the index), lift the needle, and drop it instantly on the exact second of the song you want to hear. It is instant, precise, and random-access. This shift from sequential to random access doesn't just look good on paper; it fundamentally changes the physical relationship between the computer's components. ๐ŸŽ๏ธ The hardware bridge: Optimizing the "data loader" The patent explicitly highlights how this file format serves the physical architecture of high-performance compute clusters, specifically a component called the "Data Loader". In these systems, there is often a distinct struggle between the Central Processing Unit (CPU) and the Graphics Processing Unit (GPU) that functions much like a high-speed relay race. In this analogy, the CPU acts as the "Feeder" that runs ahead to grab raw files, unpack them, and prepare them, while the GPU acts as the "Runner" that takes that package and sprints through the complex mathematical calculations. The problem in modern AI is that the Runner (GPU) has become thousands of times faster than the Feeder (CPU). The GPU finishes its lap in milliseconds and reaches back for the next baton, but the CPU is often still struggling to open the packaging of the next file. With standard formats like MP4 or CSV, the CPU is bogged down by "administrative" tasks: it must open the container, scan to find the right timestamp, decode the compression, and mathematically convert that data into a format the GPU can understand. This heavy lifting forces the CPU to drop the baton, causing the GPU to stop running and sit idle. This is a phenomenon known as "Data Starvation". In a cluster with thousands of H100 GPUs, this idle time burns millions of dollars in electricity without producing any intelligence. Teslaโ€™s .smol format is designed to eliminate this administrative burden entirely. Because the data is stored in raw, pre-transposed tensors with a precise byte-offset index, the CPU no longer needs to "decode" or "convert" anything. It simply looks up the address, grabs the specific byte range, and hands it directly to the GPU. This shifts the CPU's role from being a "Translator" (which is slow and computationally expensive) to a "Logistics Manager" (which is fast and efficient), ensuring the Feeder is always one step ahead of the Runner and keeping the training cluster running at 100% capacity. Once the data is successfully handed off to the processor, the system employs another trick to ensure it isn't choked by unnecessary volume. ๐Ÿ“ฐ Memory layout: The "columnar" optimization strategy The patent details a clever "columnar" organization strategy within the data rows to further optimize read speeds. Within the data file, different types of data (columns) are not just thrown in randomly; they are strictly arranged based on their data size, from smallest to largest. This architecture mimics how humans read a newspaper. When you scan a physical paper, you skim the headlines first to see if the story is relevant before you commit the mental energy to reading the long, dense paragraphs below. Standard file systems often force the computer to do the oppositeโ€”loading the massive "body text" (video data) just to find out what the "headline" (metadata) says. It is akin to packing your passport at the very bottom of a full suitcase; just to check your flight number, you have to unpack your entire wardrobe. Tesla organizes the data to prevent this inefficiency. The system places smaller, lightweight data elements, like simple integer velocity values or steering angles, at the very beginning of the data row and places the massive, heavy data elements, like complex 4D video tensors, at the very end. This allows for a technique known as "early rejection". If a specific training job is looking only for "high-speed highway driving", the reader can grab the first few bytes of the row, check the velocity, and if the car is moving slowly, stop reading immediately. It never touches the massive video chunks at the end of the row, saving the system from clogging its limited bandwidth with gigabytes of useless pixel data. Efficiency, however, is only half the battle. In the high-stakes world of autonomous driving, speed is worthless without absolute precision in how the machine perceives time. ๐Ÿ“ธ Syncing the senses: Multi-camera "bundling" A critical detail revealed in the patent is the concept of "bundling" within data rows. In the context of Teslaโ€™s "Occupancy Networks", which aim to build a real-time 3D volumetric map of the world, synchronization is everything. If the data from the left camera is even a few milliseconds out of sync with the right camera, the AI cannot accurately calculate depth or velocity. Without precise synchronization, the system essentially behaves like a "dizzy" AI. To understand why this matters, imagine walking down the street with a unique condition where your left eye sees the world as it is now, but your right eye sees the world as it was half a second ago. If a cyclist rides past you, your left eye might see them ten feet away while your right eye sees them twenty feet away. Your brain would fail to merge these two images, resulting in double vision and a complete inability to judge the cyclist's speed. This is exactly what happens to an AI if its cameras are not perfectly synchronized: a fast-moving car will appear in two different places at once, leading to "ghosting", phantom braking, or dangerous swerving. Teslaโ€™s file format solves this by treating a "time instance" as a unified, unbreakable container. It is essentially a "time capsule" of reality. When the system requests data for timestamp 1337.37, it doesn't just grab a loose collection of images; it retrieves a perfectly aligned "bundle" of tensors representing the entire 360-degree view (front, side, repeater, and B-pillar cameras) frozen at that exact millisecond. This ensures that when the Occupancy Network stitches these eight camera feeds together, the edges align perfectly. The curb on the left camera flows seamlessly into the curb on the front camera, creating a cohesive, solid 3D representation of the world rather than a glitchy, fragmented mess. To store these synchronized realities efficiently, Tesla had to abandon the language of traditional computing and adopt the native language of AI. ๐Ÿ“ฆ Data types: Native tensor support and encryption Unlike generic file formats, this architecture is built natively for Machine Learning. The data rows don't just store text or numbers; they are designed to store "tensors", which are the multi-dimensional arrays that are the fundamental language of neural networks. What is a Tensor? A tensor is simply a container for numbers that preserves their relationship to each other. - A shopping list is a 1D Tensor (a line of items). - A spreadsheet is a 2D Tensor (rows and columns). - A color video is a 4D Tensor (Height x Width x Color x Time). The patent describes the ability to store these tensors in transposed forms directly in the file. This is a significant optimization because neural networks often require data to be "flipped" or transposed before processing. By storing the data in the format the model expects, Tesla removes the need for the CPU to perform these costly transformation operations during the training loop. Standard formats are like buying "flat-pack" furniture from IKEA that you have to spend hours assembling before you can use it. Tesla's format stores the data "fully assembled", meaning it is pre-rotated and pre-packaged exactly how the GPU likes it, so it can be used the instant it is loaded. Additionally, the format supports encryption at the tensor level, ensuring that specific sensitive data streams can be locked down without making the rest of the file unreadable. This shift to a native tensor-based architecture unlocks a capability far beyond just better self-driving cars. ๐Ÿค– Universal "ego": Built for Optimus, not just cars A fascinating, easily missed detail is the broad definition of the "ego", which is the technical term for the device collecting the data. The patent explicitly states that the system is not confined to vehicles but includes "a general purpose, bipedal, autonomous humanoid robot". This confirms that this file format is the foundational data infrastructure for the Tesla Bot (Optimus) as well, serving as a sort of "Rosetta Stone" that allows distinct machine species to speak the same language. The format's ability to handle heterogeneous sensor data is critical here because a robot experiences reality differently than a car. A vehicle primarily focuses on perception (lanes, obstacles, signs), whereas a humanoid robot relies heavily on proprioception (balance, joint torque, finger pressure). If Tesla used standard, rigid file schemas, they would need entirely separate data pipelines for the car and the robot. However, because this format uses "tensors", or generic mathematical containers, it effectively decouples the AI's "mind" from the machine's "body". To the training cluster, it does not matter if a specific tensor represents the radar return from a Model Y bumper or the tactile pressure from Optimusโ€™s pinky finger; it is all just math. This abstraction allows Tesla to ingest any kind of data into the same unified training pipeline without needing to invent a new file format for every new hardware product, creating a single, scalable "brain training" engine for every machine Tesla builds. But supporting such a diverse range of machines requires a file structure that is rock-solid and unbreakable. ๐Ÿ”’ Efficiency: The "read-only" enforcement A unique characteristic of this file format is its strict "read-only" nature (immutability). The patent explains that once these files are generated, they are effectively sealedโ€”never to be edited, appended, or modified again. While this might sound like a limitation in a world accustomed to dynamic documents, it is actually a deliberate performance feature. You can think of standard editable files like a loose-leaf binder: you can add pages anywhere, but the page numbers eventually stop making sense, and finding things becomes a chore. Teslaโ€™s format is more like a printed encyclopedia. Because the text is permanently "etched in stone", the index at the front is guaranteed to be 100% accurate forever. Page 50 will always be Page 50. If the system allowed engineers to insert new data into the middle of a file, it would break the rigid byte-offset mapping stored in the header, forcing the computer to waste precious milliseconds re-calculating where the data moved to. By enforcing this immutable structure, Tesla ensures that the memory layout remains perfectly contiguous and predictable. This predictability is the secret sauce behind the reported 4x reduction in IOPS; the reading hardware never has to "double-check" the file structure. It trusts the index blindly, allowing it to fetch data at the theoretical speed limit of the drive. ๐Ÿš€ The future is Exabyte: Why this matters for the next decade When you combine the architectural choices of the header index, the columnar layout, and the read-only enforcement, the result is a strategic advantage that scales linearly with Tesla's ambitions. This patent serves as a critical enabler for Tesla's ambition to solve Full Self-Driving (FSD) and general-purpose robotics. As Tesla's fleet grows, the amount of training data flowing back to their data centers is shifting from petabytes to exabytes. Without this specialized file format, the "data loading" phase would become the hard ceiling on how fast they can improve their AI. In the immediate term, the impact of this invention is mathematical and massive. Training a single version of FSD requires processing billions of video frames, and by reducing file size by 11%, Tesla effectively saves over 100 petabytes of storage at the exabyte scale. This represents tens of millions of dollars in hard drives and electricity that simply do not need to be purchased. Furthermore, increasing data throughput speed by 400% directly reduces the "Epoch Time", or the time it takes the AI to learn from the entire dataset once. If an epoch drops from four days to one day, engineers can test four times as many ideas per week, accelerating the critical path between FSD versions. Looking beyond these immediate efficiency gains, this format provides the unified "digital nervous system" for Tesla's entire robotics roadmap. Since it is agnostic, caring only about mathematical "tensors" rather than specific car parts, it allows the Dojo supercomputer to train a Model Y in the morning and an Optimus robot in the afternoon using the exact same data pipeline. While competitors are still struggling to integrate off-the-shelf software, Tesla has reinvented the most basic unit of computing, the file itself, to build a vertically integrated machine learning engine. They aren't just building better AI models; they are building a faster assembly line for intelligence.

English
11
20
196
14.6K
Dhaval Shroff
Dhaval Shroff@dhaval_shroffยท
I saw 3 different Rolls Royces in SF in half a day today, one in someoneโ€™s house garage. Thatโ€™s more than the total amount Iโ€™ve seen in the last decade.
English
4
1
36
5.5K
Xill
Xill@Xil_llixยท
Letโ€™s go @elonmusk โ€ฆ๐Ÿ™๐Ÿ˜‰
Xill tweet mediaXill tweet media
English
1
2
11
384
TimDOES
TimDOES@TimDOESยท
I have officially tested and used 50 versions of Tesla FSD in almost 5 years ๐Ÿ‘€ From FSD 10.2 to FSD 14.3.4
English
17
2
211
25.2K
Genma_Jp
Genma_Jp@nymbusjpยท
@thejefflutz @SawyerMerritt @Tesla Remember. Previously, FSD was impossible. But now, overnight, it became a piece of cake. That's the bear thesis basically.
English
2
0
19
860
Sawyer Merritt
Sawyer Merritt@SawyerMerrittยท
Rivian CEO RJ Scaringe in new interview: "Later this year, we'll have full supervised point-to-point, which will be very similar to @Tesla's FSD. That will roll out to all of our Gen 2 vehicles and, of course, R2. Next year, we'll allow it to go unsupervised, so you can take your eyes off the road. The next step is achieving full capability for the vehicle to drive itself with no one in the car. We've been developing that for a while for our personal vehicles, but we also see it unlocking new business models, robotaxi being one of them. We took the decision to parter with Uber so we could focus on the tech and leverage them for their access to a big distribution channel. They're really a category of one. There's no one quite at their scale or reach." Full interview: youtube.com/watch?v=wP61dCโ€ฆ
YouTube video
YouTube
English
531
80
1.4K
466.5K
Earl of FrunkPuppy
Earl of FrunkPuppy@28delayslaterยท
@TimDOES I went back to v8 but Iโ€™m on hw3 so โ€ฆ stuck on v12
English
1
0
4
848
Larry Goldberg
Larry Goldberg@TeslaLarryยท
Not only would $6.6billion NOT end world hunger, it wouldn't even DENT WORLD HUNGER FOR A YEAR. It would disappear into deep, bureaucratic pockets the world over. It is an oft told story. Nonetheless the world population is many times what it was just 100 years ago, and "world hunger" is a fraction of what it was at that time. It has NOTHING to do with the UN, or charity, it is technology that makes the difference. That's what SpaceX (and Elon) is all about. grok.com/share/bGVnYWN5โ€ฆ
English
6
7
93
1.3K
Sean Sweeney
Sean Sweeney@seandsweeneyยท
I believe that @elonmusk is entitled to the trillions and more that he may be worth in this lifetime for the value he has created. I also believe it would be the most baller move of all time to stroke a $6.6 billion check and end world hunger.
English
1.5K
12
424
230.1K
Amy
Amy@Amy787ยท
@DoctorJack16 You always have an excellent analysis re: Tesla.
English
2
0
5
403
Amy
Amy@Amy787ยท
I agree with Alexandra. Never go full Ross Gerber. Rebellionaire has lost the plot. IE They now create the FUD - rather dispel it. The inconvenient truth that contradicts Rebellionaireโ€™s fear peddling: โ™ฆ๏ธVolatility is the price of admission to investing in an Elon Musk company. You donโ€™t get a participation trophy for it. โ™ฆ๏ธA Merger creates vastly greater upside than the RoboTaxi alone, or Optimus. The three joint ventures are the hint of what is possible. A negotiated share exchange ratio would contain credit for Optimus and RoboTaxi projected revenues. You donโ€™t โ€œlose itโ€. And your investment dollars remain the same. โ™ฆ๏ธDilution IS coming either way. AI, compute, chip manufacturing require massive amounts of Capital. So choose your Dilution: Vote No on a merger (SpaceXAI just raised Capital on favorable terms) and the Tesla board likely immediately approves a share issuance - and they donโ€™t need your vote for that. Dilution is not bad when it funds growth. Dilution preceded prior Tesla rerates because it funded the growth infrastructure. Prior Tesla capital raises ๐Ÿ‘‡
Amy tweet media
AleXandra Merz ๐Ÿ‡บ๐Ÿ‡ฒ@TeslaBoomerMama

Lots of thoughts went into this ... Sad.

English
53
13
180
40.9K
Amy
Amy@Amy787ยท
First we had a Delaware courtroom trying to constrain the Tesla board from what they thought was right - now we have some fear mongering โ€œinfluencersโ€ trying to prevent the board from taking the steps necessary to solve for Chip and capital constraints. Letโ€™s revisit the analogous period when Tesla was battery cell and capital constrained - those previous rerates that new investors cite happened because these constraints were solved first via dilutive capital raises and deals like GigaNevada first and then 4680s. These deals forced suppliers to step up and supply Tesla with more removing a battery cell constraint overhang whereby Wall Street discounted growth estimates. Some suggest to you that Wall Street will give Tesla credit for massive RoboTaxi and Optimus scaling without solutions for capital and chip constraintsโ€ฆ. But Wall Street is smarter than that - they evaluate capital needs and supply chains. They discount growth rates and near term cash flow projections based on these needs. Elon Musk is doing exactly what needs to be done to enable the next growth waves to scale - which means Tesla would rerate.
English
11
9
92
6.5K
๐”พ๐•ฃ๐•–๐•–๐•Ÿ_๐”ผ๐•๐•–๐•ž๐•–๐•Ÿ๐•ฅ ใŒใƒชใƒ„ใ‚คใƒผใƒˆ
Google Earth
Google Earth@googleearthยท
Prepare for takeoff. โœˆ๏ธ Flight simulator is now available globally on web to all users. goo.gle/4fBYnWO We've recently added many our most powerful professional desktop features to web. Elevation profiles, new import types, but there's always been one other feature you've been asking us to add to the web version of Google Earth, just for fun... Where will you fly? Share your best maneuvers, views, and flyovers with us!
English
429
3.9K
30.3K
8.6M
Genma_Jp
Genma_Jp@nymbusjpยท
The steering wheel was visible in previous footage on one vehicle. Today, @tesla2moon gives us better footage proving the steering wheel is still present on all vehicles. Tesla would have removed these steering wheels if the deployment of these vehicles was imminent. My theory: these vehicles were used for testing and data capture. Currently, Tesla may not need more data. They may be digesting the data gathered with these vehicles on Cortex to train FSD. When Cortex has finished its magic and a new model is available, these vehicles may go for another round of testing and validation. Deployment will follow shortly after this. Maybe with these vehicles, but more probably with new vehicles fresh from the factory. You want to keep some Farzad edition at all times to validate future FSD model updates. Therefore, it makes sense to use brand new ones for commercial operation. This is why I do not think that these sightings, however exciting they are, are a valuable signal for near-term deployment. x.com/tesla2moon/staโ€ฆ
English
7
1
66
4.4K
Bradford Ferguson
Bradford Ferguson@bradsfergusonยท
You didnโ€™t ride your $TSLA from $400 down to $100 a share in 2022 and eat all that ๐Ÿ’ฉ from everyone just to give it away on the Eve of Robotaxi and the Dawn of Optimus.
Bradford Ferguson tweet media
English
127
32
476
95.4K
Whole Mars Catalog
Whole Mars Catalog@wholemarsยท
Wow. FSD 14.3.4 is so good. Itโ€™s beyond smooth at this point. It feels so powerful, precise, and assertive. More like some technology out of Tron than a human driver. The real eye opening moment was using Mad Max mode on Mulholland Drive on a dark foggy night. Just unreal.
English
84
53
1.4K
64.1K