Close Menu
Ztoog
    What's Hot
    Science

    Knot theory could help spacecraft navigate crowded solar systems

    Science

    Almost All Research on the Mind Is in English. That’s a Problem | WIRED

    The Future

    Samsung officially launches the new Galaxy S24 Ultra with Galaxy AI

    Important Pages:
    • About Us
    • Contact us
    • Privacy Policy
    • Terms & Conditions
    Facebook X (Twitter) Instagram Pinterest
    Facebook X (Twitter) Instagram Pinterest
    Ztoog
    • Home
    • The Future

      Any wall can be turned into a camera to see around corners

      JD Vance and President Trump’s Sons Hype Bitcoin at Las Vegas Conference

      AI may already be shrinking entry-level jobs in tech, new research suggests

      Today’s NYT Strands Hints, Answer and Help for May 26 #449

      LiberNovo Omni: The World’s First Dynamic Ergonomic Chair

    • Technology

      A Replit employee details a critical security flaw in web apps created using AI-powered app builder Lovable that exposes API keys and personal info of app users (Reed Albergotti/Semafor)

      Gemini in Google Drive can now help you skip watching that painfully long Zoom meeting

      Apple iPhone exports from China to the US fall 76% as India output surges

      Today’s NYT Wordle Hints, Answer and Help for May 26, #1437

      5 Skills Kids (and Adults) Need in an AI World – O’Reilly

    • Gadgets

      Future-proof your career by mastering AI skills for just $20

      8 Best Vegan Meal Delivery Services and Kits (2025), Tested and Reviewed

      Google Home is getting deeper Gemini integration and a new widget

      Google Announces AI Ultra Subscription Plan With Premium Features

      Google shows off Android XR-based glasses, announces Warby Parker team-up

    • Mobile

      Deals: the Galaxy S25 series comes with a free tablet, Google Pixels heavily discounted

      Microsoft is done being subtle – this new tool screams “upgrade now”

      Wallpaper Wednesday: Android wallpapers 2025-05-28

      Google can make smart glasses accessible with Warby Parker, Gentle Monster deals

      vivo T4 Ultra specs leak

    • Science

      Analysts Say Trump Trade Wars Would Harm the Entire US Energy Sector, From Oil to Solar

      Do we have free will? Quantum experiments may soon reveal the answer

      Was Planet Nine exiled from the solar system as a baby?

      How farmers can help rescue water-loving birds

      A trip to the farm where loofahs grow on vines

    • AI

      Rationale engineering generates a compact new tool for gene therapy | Ztoog

      The AI Hype Index: College students are hooked on ChatGPT

      Learning how to predict rare kinds of failures | Ztoog

      Anthropic’s new hybrid AI model can work on tasks autonomously for hours at a time

      AI learns how vision and sound are connected, without human intervention | Ztoog

    • Crypto

      GameStop bought $500 million of bitcoin

      CoinW Teams Up with Superteam Europe to Conclude Solana Hackathon and Accelerate Web3 Innovation in Europe

      Ethereum Net Flows Turn Negative As Bulls Push For $3,500

      Bitcoin’s Power Compared To Nuclear Reactor By Brazilian Business Leader

      Senate advances GENIUS Act after cloture vote passes

    Ztoog
    Home » LAION AI Introduces Video2Dataset: An Open-Source Tool Designed To Curate Video And Audio Datasets Efficiently And At Scale
    AI

    LAION AI Introduces Video2Dataset: An Open-Source Tool Designed To Curate Video And Audio Datasets Efficiently And At Scale

    Facebook Twitter Pinterest WhatsApp
    LAION AI Introduces Video2Dataset: An Open-Source Tool Designed To Curate Video And Audio Datasets Efficiently And At Scale
    Share
    Facebook Twitter LinkedIn Pinterest WhatsApp

    Big foundational fashions like CLIP, Stable Diffusion, and Flamingo have radically improved multimodal deep studying over the previous few years. Joint text-image modeling has gone from being a distinct segment software to one of many (if not the) most related points in in the present day’s synthetic intelligence panorama because of the excellent capabilities of such fashions to generate spectacular, high-resolution imagery or carry out onerous downstream issues. Surprisingly, regardless of tackling vastly totally different duties and having vastly totally different designs, all these fashions have three elementary properties in widespread that contribute to their robust efficiency: a easy and secure goal perform throughout (pre-)coaching, a well-investigated scalable mannequin structure, and – maybe most significantly – a big, various dataset.

    Multimodal deep studying, as of 2023, remains to be primarily involved with text-image modeling, with solely restricted consideration paid to extra modalities like video (and audio). Considering that the methods used to coach the fashions are usually modality agnostic, one might marvel why there aren’t strong groundwork fashions for these different modalities. The easy rationalization is the shortage of high-quality, large-scale annotated datasets. This lack of fresh knowledge impedes analysis and improvement of enormous multimodal fashions, particularly within the video area, in distinction to picture modeling, the place there exist established datasets for scaling like LAION-5B, DataComp, and COYO-700M and scalable instruments like img2dataset.

    Because it may possibly pave the way in which for groundbreaking initiatives like high-quality video and audio creation, improved pre-trained fashions for robotics, film AD for the blind group, and extra, researchers counsel that resolving this knowledge downside is a central intention of (open supply) multimodal analysis.

    [Sponsored] 🔥 Build your private model with Taplio  🚀 The 1st all-in-one AI-powered instrument to develop on LinkedIn. Create higher LinkedIn content material 10x quicker, schedule, analyze your stats & interact. Try it totally free!

    Researchers current video2dataset, an open-source program for quick and in depth video and audio dataset curating. It has been efficiently examined on a number of massive video datasets, and it’s adaptable, extensible, and offers an enormous variety of transformations. You can discover these case research and detailed directions on replicating our methodology within the repository.

    By downloading particular person video datasets, merging them, and reshaping them into extra manageable shapes with new options and considerably extra samples, researchers have utilized video2dataset to construct upon present video datasets. Please discuss with the examples part for a extra in-depth description of this chain processing. The outcomes they achieved by coaching totally different fashions on the datasets provided by video2dataset reveal the instrument’s efficacy. Our forthcoming research will extensively focus on the brand new knowledge set and related findings.

    To start, let’s outline video2dataset.

    Since webdataset is an appropriate input_format, video2dataset can be utilized in a series to reprocess beforehand downloaded knowledge. You can use the WebVid knowledge you downloaded within the earlier instance to execute this script, which can calculate the optical move for every film and retailer it in metadata shards (shards that solely have the optical move metadata in them).

    Architecture

    Based on img2dataset, video2dataset takes an inventory of URLs and related metadata and converts it right into a WebDataset that may be loaded with a single command. In addition, the WebDataset could be reprocessed for extra adjustments with the identical shard contents preserved. How does video2dataset work? I’ll clarify.

    Exchanging Ideas

    The first step is to partition the enter knowledge in order that it might be distributed evenly among the many employees. These enter shards are cached quickly, and the one-to-one mapping between them and their corresponding output shards ensures fault-free restoration. If a dataset processing run terminates unexpectedly, one can save time by skipping the enter shards for which researchers have already got the corresponding output shard.

    Communication and Study

    Workers then take turns studying and processing the samples contained inside the shards. Researchers provide three totally different distribution modes: multiprocessing, pyspark, and slurm. The former is right for single-machine functions, whereas the latter is helpful for scaling throughout a number of machines. The format of the incoming dataset determines the studying technique. If the information is a desk of URLs, video2dataset will fetch the video from the web and add it to the dataset. video2dataset works with many various video platforms as a result of it makes use of yt-dlp to request movies it may possibly’t discover. However, if the video samples come from an present Web dataset, the information loader for that dataset can learn the tensor format of the bytes or frames.

    Subsampling

    After the video has been learn and the employee has the video bytes, the bytes are despatched via a pipeline of subsamplers in response to the job configuration. In this stage, the video could also be optionally downsampled when it comes to each body fee and backbone; clipped; scenes could also be recognized; and so forth. On the opposite hand, there are subsamplers whose sole function is to extract and add metadata, equivalent to decision/compression data, artificial captions, optical move, and so forth, from the enter modalities. Defining a brand new subsampler or modifying an present one is all it takes so as to add a brand new transformation to video2dataset if it isn’t already there. This is a big assist and could be carried out with just a few adjustments elsewhere within the repository.

    Logging

    Video2dataset retains meticulous logs at a number of factors within the course of. Each shard’s completion ends in its related “ID” _stats.json file. Information equivalent to the entire variety of samples dealt with, the share of these dealt with efficiently, and the incidence and nature of any errors are recorded right here. Weights & Biases (wand) is an extra instrument that can be utilized with video2dataset. With only one argument, you possibly can activate this integration and entry detailed efficiency reporting and metrics for successes and failures. Such capabilities are useful for benchmarking and cost-estimating duties related to entire jobs.

    Writing

    Finally, video2dataset shops the modified data in output shards at user-specified locations to make use of in subsequent coaching or reprocessing operations. The dataset could be downloaded in a number of codecs, all consisting of shards with N samples every. These codecs embrace folders, tar recordsdata, information, and parquet recordsdata. The most necessary ones are the directories format for smaller datasets for debugging and tar recordsdata utilized by the WebDataset format for loading. 

    Reprocessing

    video2dataset can reprocess earlier output datasets by studying the output shards and passing the samples via new transformations. This performance is especially advantageous for video datasets, contemplating their typically hefty dimension and awkward nature. It permits us to fastidiously downsample the information to keep away from quite a few downloads of enormous datasets. Researchers dig right into a sensible instance of this within the subsequent part.

    Code and particulars could be present in GitHub https://github.com/iejMac/video2dataset 

    Future Plans

    • Study of an enormous dataset constructed with the software program described on this weblog article, adopted by public dissemination of the outcomes of that research.
    • It improved artificial captioning. There is a whole lot of room for innovation in artificial captioning for movies. Soon in video2dataset, researchers may have extra attention-grabbing strategies to provide captions for movies that use picture captioning fashions and LLMs.
    • Whisper’s means to extract quite a few textual content tokens from the video has been the topic of a lot dialogue since its launch. Using video2dataset, they’re presently transcribing a large assortment of podcasts to make the ensuing textual content dataset (concentrating on 50B tokens) publicly accessible.
    • Many thrilling modeling concepts. Hopefully, with improved dataset curation tooling, extra folks will try and push the SOTA within the video and audio modality.

    video2dataset is a completely open-source challenge, and researchers are dedicated to creating it within the open. This means all of the related TODOs and future instructions could be discovered within the points tab of the repository. Contributions are welcomed; the easiest way to do this is to select an issue, handle it, and submit a pull request.


    Check out the Blog and Github Link. Don’t neglect to hitch our 26k+ ML SubReddit, Discord Channel, and Email Newsletter, the place we share the most recent AI analysis information, cool AI tasks, and extra. If you might have any questions concerning the above article or if we missed something, be at liberty to e mail us at Asif@marktechpost.com

    🚀 Check Out 100’s AI Tools in AI Tools Club


    Dhanshree Shenwai is a Computer Science Engineer and has a superb expertise in FinTech firms protecting Financial, Cards & Payments and Banking area with eager curiosity in functions of AI. She is passionate about exploring new applied sciences and developments in in the present day’s evolving world making everybody’s life straightforward.


    🔥 StoryBird.ai simply dropped some superb options. Generate an illustrated story from a immediate. Check it out right here. (Sponsored)

    Share. Facebook Twitter Pinterest LinkedIn WhatsApp

    Related Posts

    AI

    Rationale engineering generates a compact new tool for gene therapy | Ztoog

    AI

    The AI Hype Index: College students are hooked on ChatGPT

    AI

    Learning how to predict rare kinds of failures | Ztoog

    AI

    Anthropic’s new hybrid AI model can work on tasks autonomously for hours at a time

    AI

    AI learns how vision and sound are connected, without human intervention | Ztoog

    AI

    How AI is introducing errors into courtrooms

    AI

    With AI, researchers predict the location of virtually any protein within a human cell | Ztoog

    AI

    Google DeepMind’s new AI agent cracks real-world problems better than humans can

    Leave A Reply Cancel Reply

    Follow Us
    • Facebook
    • Twitter
    • Pinterest
    • Instagram
    Top Posts
    The Future

    Porsche adds two new hybrids to its lineup of plug-in Panameras

    Porsche introduced two new plug-in hybrid Panameras, because the German automakers appears to hedge its…

    Technology

    IEEE’s TryEngineering Summer Institute Provides Hands-On Experiences

    “It’s probably the best way I could have spent my summer,” mentioned a scholar who…

    The Future

    The Ominous Link Between Rare Disease Outbreaks in 2023

    This story was initially revealed by Grist. Sign up for Grist’s weekly publication right here.Gizmodo’s…

    Mobile

    The new Galaxy Watch 6 has a new chipset and Samsung is showing it off

    What you might want to knowSamsung just lately launched the Galaxy Watch 6 sequence, which…

    Science

    Elon Musk’s New Monkey Death Claims Spur Fresh Demands for an SEC Investigation

    In October 2018, a UC Davis veterinarian accredited Animal 13 for use in a Neuralink…

    Our Picks
    AI

    Predicting Retrosynthesis in a Single Step by Incorporating chemists’ Insights with AI Models

    Technology

    U.S. Moves Closer to Filing Sweeping Antitrust Case Against Apple

    The Future

    How to Get Around the US CapCut ban

    Categories
    • AI (1,493)
    • Crypto (1,753)
    • Gadgets (1,805)
    • Mobile (1,851)
    • Science (1,866)
    • Technology (1,802)
    • The Future (1,648)
    Most Popular
    Gadgets

    7 Best Trackers (2023): GPS, Bluetooth, Wi-Fi, and Cellular

    Crypto

    Hamster Kombat Listing Hits The Market, But Fans Aren’t Cheering—What’s The Deal?

    The Future

    Dolphin says Nintendo blocked a Steam release of its Wii and GameCube emulator

    Ztoog
    Facebook X (Twitter) Instagram Pinterest
    • Home
    • About Us
    • Contact us
    • Privacy Policy
    • Terms & Conditions
    © 2025 Ztoog.

    Type above and press Enter to search. Press Esc to cancel.