Connect with us

Technology

Apple’s AirPods Pro 2 drop to $179 in this early Black Friday deal

Published

on

Apple’s AirPods Pro 2 drop to $179 in this early Black Friday deal

There’s a great deal on Apple’s over at Amazon right now. The earbuds are currently 28 percent off, bringing them down to $179. That’s just $10 more than the all-time-low price we saw during October Prime Day, and will save you $70. The AirPods Pro 2 got an update earlier this year that , most notably a suite of hearing health tools and the capability to be used as hearing aids. On top of that, they now offer new gesture-based Siri Interactions and Voice Isolation to reduce background noise when you’re on a call.

Apple

Siri Interactions allow for hands- and voice-free Siri controls; you can respond to Siri’s questions simply by nodding or shaking your head. The second-generation AirPods Pro are users, with better sound quality than their predecessors and seamless integration with the other devices in the Apple ecosystem. The AirPods Pro 2 offer active noise cancellation and transparency mode, which allows for more natural conversations while they’re in your ear. They also support spatial audio and Dolby Atmos for certain media.

The buds come with four pairs of silicone tips in different sizes and are IP54 rated for protection against dust and sweat. They get up to 6 hours of listening time (though this will be less with certain features, like ANC, enabled) and up to 30 hours with a little help from the USB-C MagSafe Charging Case.

Advertisement

Check out all of the latest Black Friday and Cyber Monday deals here.

Source link

Continue Reading
Advertisement
Click to comment

You must be logged in to post a comment Login

Leave a Reply

Technology

FBI warns voters about inauthentic videos relating to election security

Published

on

FBI warns voters about inauthentic videos relating to election security

The FBI issued a statement on Saturday about deceptive videos circulating ahead of the election, saying it’s aware of two such videos “falsely claiming to be from the FBI relating to election security.” That includes one claiming the FBI had “apprehended three linked groups committing ballot fraud,” and one about Kamala Harris’ husband. Both depict false content, the FBI said.

Disinformation — including the spread of political deepfakes and other forms of misleading videos and imagery — has been a major concern in the leadup to the US presidential election. In its statement posted on X, the FBI added:

Election integrity is among our highest priorities, and the FBI is working closely with state and local law enforcement partners to respond to election threats and protect our communities as Americans exercise their right to vote. Attempts to deceive the public with false content about FBI operations undermines our democratic process and aims to erode trust in the electoral system.

Just a day earlier, the along with the Office of the Director of National Intelligence (ODNI) and the Cybersecurity and Infrastructure Security Agency (CISA) said they’d traced two other videos back to “Russian influence actors,” including one “that falsely depicted individuals claiming to be from Haiti and voting illegally in multiple counties in Georgia.”

Source link

Advertisement
Continue Reading

Technology

Why multi-agent AI tackles complexities LLMs can’t

Published

on

Why multi-agent AI tackles complexities LLMs can't

Join our daily and weekly newsletters for the latest updates and exclusive content on industry-leading AI coverage. Learn More


The introduction of ChatGPT has brought large language models (LLMs) into widespread use across both tech and non-tech industries. This popularity is primarily due to two factors:

  1. LLMs as a knowledge storehouse: LLMs are trained on a vast amount of internet data and are updated at regular intervals (that is, GPT-3, GPT-3.5, GPT-4, GPT-4o, and others);
  1.  Emergent abilities: As LLMs grow, they display abilities not found in smaller models.

Does this mean we have already reached human-level intelligence, which we call artificial general intelligence (AGI)? Gartner defines AGI as a form of AI that possesses the ability to understand, learn and apply knowledge across a wide range of tasks and domains. The road to AGI is long, with one key hurdle being the auto-regressive nature of LLM training that predicts words based on past sequences. As one of the pioneers in AI research, Yann LeCun points out that LLMs can drift away from accurate responses due to their auto-regressive nature. Consequently, LLMs have several limitations:

  • Limited knowledge: While trained on vast data, LLMs lack up-to-date world knowledge.
  • Limited reasoning: LLMs have limited reasoning capability. As Subbarao Kambhampati points out LLMs are good knowledge retrievers but not good reasoners.
  • No Dynamicity: LLMs are static and unable to access real-time information.

To overcome LLM’s challenges, a more advanced approach is required. This is where agents become crucial.

Agents to the rescue

The concept of intelligent agent in AI has evolved over two decades, with implementations changing over time. Today, agents are discussed in the context of LLMs. Simply put, an agent is like a Swiss Army knife for LLM challenges: It can help us in reasoning, provide means to get up-to-date information from the Internet (solving dynamicity issues with LLM) and can achieve a task autonomously. With LLM as its backbone, an agent formally comprises tools, memory, reasoning (or planning) and action components.

Components of an agent (Image Credit: Lilian Weng)

Components of AI agents

  • Tools enable agents to access external information — whether from the internet, databases, or APIs — allowing them to gather necessary data.
  • Memory can be short or long-term. Agents use scratchpad memory to temporarily hold results from various sources, while chat history is an example of long-term memory.
  • The Reasoner allows agents to think methodically, breaking complex tasks into manageable subtasks for effective processing.
  • Actions: Agents perform actions based on their environment and reasoning, adapting and solving tasks iteratively through feedback. ReAct is one of the common methods for iteratively performing reasoning and action.

What are agents good at?

Agents excel at complex tasks, especially when in a role-playing mode, leveraging the enhanced performance of LLMs. For instance, when writing a blog, one agent may focus on research while another handles writing — each tackling a specific sub-goal. This multi-agent approach applies to numerous real-life problems.

Role-playing helps agents stay focused on specific tasks to achieve larger objectives, reducing hallucinations by clearly defining parts of a prompt — such as role, instruction and context. Since LLM performance depends on well-structured prompts, various frameworks formalize this process. One such framework, CrewAI, provides a structured approach to defining role-playing, as we’ll discuss next.

Advertisement

Multi agents vs single agent

Take the example of retrieval augmented generation (RAG) using a single agent. It’s an effective way to empower LLMs to handle domain-specific queries by leveraging information from indexed documents. However, single-agent RAG comes with its own limitations, such as retrieval performance or document ranking. Multi-agent RAG overcomes these limitations by employing specialized agents for document understanding, retrieval and ranking.

In a multi-agent scenario, agents collaborate in different ways, similar to distributed computing patterns: sequential, centralized, decentralized or shared message pools. Frameworks like CrewAI, Autogen, and langGraph+langChain enable complex problem-solving with multi-agent approaches. In this article, I have used CrewAI as the reference framework to explore autonomous workflow management.

Workflow management: A use case for multi-agent systems

Most industrial processes are about managing workflows, be it loan processing, marketing campaign management or even DevOps. Steps, either sequential or cyclic, are required to achieve a particular goal. In a traditional approach, each step (say, loan application verification) requires a human to perform the tedious and mundane task of manually processing each application and verifying them before moving to the next step.

Each step requires input from an expert in that area. In a multi-agent setup using CrewAI, each step is handled by a crew consisting of multiple agents. For instance, in loan application verification, one agent may verify the user’s identity through background checks on documents like a driving license, while another agent verifies the user’s financial details.

Advertisement

This raises the question: Can a single crew (with multiple agents in sequence or hierarchy) handle all loan processing steps? While possible, it complicates the crew, requiring extensive temporary memory and increasing the risk of goal deviation and hallucination. A more effective approach is to treat each loan processing step as a separate crew, viewing the entire workflow as a graph of crew nodes (using tools like langGraph) operating sequentially or cyclically.

Since LLMs are still in their early stages of intelligence, full workflow management cannot be entirely autonomous. Human-in-the-loop is needed at key stages for end-user verification. For instance, after the crew completes the loan application verification step, human oversight is necessary to validate the results. Over time, as confidence in AI grows, some steps may become fully autonomous. Currently, AI-based workflow management functions in an assistive role, streamlining tedious tasks and reducing overall processing time.

Production challenges

Bringing multi-agent solutions into production can present several challenges.

  • Scale: As the number of agents grows, collaboration and management become challenging. Various frameworks offer scalable solutions — for example, Llamaindex takes event-driven workflow to manage multi-agents at scale.
  • Latency: Agent performance often incurs latency as tasks are executed iteratively, requiring multiple LLM calls. Managed LLMs (like GPT-4o) are slow because of implicit guardrails and network delays. Self-hosted LLMs (with GPU control) come in handy in solving latency issues.
  • Performance and hallucination issues: Due to the probabilistic nature of LLM, agent performance can vary with each execution. Techniques like output templating (for instance, JSON format) and providing ample examples in prompts can help reduce response variability. The problem of hallucination can be further reduced by training agents.

Final thoughts

As Andrew Ng points out, agents are the future of AI and will continue to evolve alongside LLMs. Multi-agent systems will advance in processing multi-modal data (text, images, video, audio) and tackling increasingly complex tasks. While AGI and fully autonomous systems are still on the horizon, multi-agents will bridge the current gap between LLMs and AGI.

Abhishek Gupta is a principal data scientist at Talentica Software.

Advertisement

DataDecisionMakers

Welcome to the VentureBeat community!

DataDecisionMakers is where experts, including the technical people doing data work, can share data-related insights and innovation.

If you want to read about cutting-edge ideas and up-to-date information, best practices, and the future of data and data tech, join us at DataDecisionMakers.

Advertisement

You might even consider contributing an article of your own!

Read More From DataDecisionMakers


Source link
Continue Reading

Technology

CareYaya is enabling affordable home care by connecting healthcare students with elders

Published

on

CareYaya is enabling affordable home care by connecting healthcare students with elders

CareYaya, a platform that matches people who need caregivers with healthcare students, is working to disrupt the caregiving industry. The startup, which exhibited as part of the Battlefield 200 at TechCrunch Disrupt, is looking to enhance affordable in-home support, while also helping students prepare for their future healthcare careers.

The startup was founded in 2022 by Neal Shah, who came up with the idea for the startup based on his own experience as a caregiver for his wife after she became ill with cancer and various other ailments. During this time, Shah was a partner at a hedge fund and had to wind down his fund to become a full-time caregiver for two years. 

To get additional care for his wife, Shah hired college students who were studying healthcare to be caregivers for his wife. Shah learned that other families were doing the same thing informally by posting flyers at local campuses to find someone who was qualified to look after their loved one. 

“I was like, wouldn’t it be nice to just build a formal system for them to do it, where you don’t have to go to your local nursing school or your local undergrad campus and post flyers,” Shah told TechCrunch. “This is what I was doing. So we were like, if you can bring that into a formal capacity through a tech platform, you can make a big impact.” 

Advertisement

Fast-forward to 2024, and the platform now has over 25,000 students on its platform from numerous schools, including Duke University, Stanford, UC Berkeley, San Jose State, University of Texas at Austin, and more. 

Image Credits:CareYaya

CareYaya performs background checks on students who want to join the platform and then completes video-based interviews with them. On the user side, people can join the platform and then detail the type of care their loved one needs. CareYaya then matches students to families, whether it’s for one-off sessions or continuous care. After the first session, both parties can leave ratings.

The startup says it can help families save thousands of dollars on recurring senior care. While at-home care costs an average of $35 per hour in the U.S., CareYaya charges between $17 and $20 per hour.

Since the students providing the care are tech savvy, CareYaya is equipping them with AI-powered technology to recognize and track disease progression in patients with Alzheimer’s and dementia. The company recently launched an LLM (large language model) that integrates with smart glasses to gather visual data to help students provide better real-time assistance and conduct early dementia screening.

In terms of the future, CareYaya wants to explore expanding beyond the United States, as the platform has seen interest from people in places like Canada, Australia, and the United Kingdom. 

Advertisement

Source link

Continue Reading

Technology

Windblown shows how good roguelikes can be with friends

Published

on

Windblown shows how good roguelikes can be with friends

Some of the most beloved roguelikes are single-player — the likes of Hades, Balatro, and Dead Cells are all solo titles. But Windblown, the new roguelike from Motion Twin, the studio that created Dead Cells, showed me just how cool it can be to play a roguelike with other people.

In Windblown, your character, one of a few adorable animal adventurers like an axolotl or a bat, is shot out of a cannon into a mysterious giant tornado to fight your way through various zones. Like Dead Cells, you can equip up to two main weapons. I typically have one for close-range bouts and another for long-distance attacks. But with every weapon, you’re also able to pull off a combo that uses a special move from the other weapon called an “Alterattack.”

Here’s an example. I love using a crossbow to attack enemies from a distance, and I pair it with a giant heavy blade. I rarely use the blade on its own; instead, I use its Alterattack that cracks open the earth in a straight line to continue to wallop on enemies at range. That turns a run into a steady rhythm of slinging arrows and using the Alterattack at exactly the right time, and with my five hours so far with the game, I haven’t gotten tired of the pattern.

Windblown just launched in early access, and you can already unlock more than a dozen weapons, meaning there are a lot of combinations that I haven’t messed around with. And with four different biomes to get through on a run, there’s a lot to see, too.

Advertisement

The bosses are no joke.
Image: Motion Twin

All of that would be enough to make Windblown part of my regular rotation of roguelikes I use to wind down at the end of a long day. But the game’s multiplayer is making Windblown the game I turn to every time I turn on my Steam Deck.

Windblown’s multiplayer lobbies, which you unlock fairly early on, let you play a full run with a team of three people. You can use voice and text chat to communicate, but it’s not required; I haven’t used those at all, instead relying on four in-game emoji. I also like that you can name your lobbies. I created one titled “help me get 1st win” and immediately had two helpful people join up to help me tackle the tornado. (Sadly, we did not get the win.) 

When playing solo, I’ve found that I’m somewhat cautious and strategic as I think about how to use weapons and positioning to take on the game’s aggressive enemies and dodge their attacks. With the help of a team, battles are speedier and become delightful explosions of light, color, sound, and damage. It’s so fun to absolutely annihilate baddies with other people, and it’s comforting to know that they’ve got your back in a pinch.

Advertisement

There are a lot of great roguelikes to play right now; Hades II just got a huge update, Balatro is nearly impossible to put down (especially now that it’s on mobile), and I’ve wanted to get back into Shogun Showdown, which I think everyone is sleeping on. Windblown needed more than just its Motion Twin pedigree to stand out, but so far, the multiplayer is the hook that keeps me coming back.

Source link

Continue Reading

Technology

Google could soon make sharing files from Android to iPhone much easier

Published

on

Quick Share between a laptop and phone

  • Quick Share could come to iOS and macOS soon
  • It enables speedy file transfers between devices
  • Third-party alternative tools are already available

Quick Share on Android is the equivalent of AirDrop, enabling files to be easily transferred between Android devices, Chromebooks, and Windows – and there are signs that Google is planning to add support for iPhones, iPads, and Macs.

As spotted by the team at Android Authority, a comment left by a Google engineer on code essential to Quick Share mentions iOS and macOS specifically – a comment which would make more sense if an app for these platforms was in the works.

Source link

Continue Reading

Technology

Aptera’s 3-wheel solar EV heads to 2025 commercialization

Published

on

Aptera’s 3-wheel solar EV heads to 2025 commercialization

EV drivers may relish that charging networks are climbing over each other to provide needed juice alongside roads and highways.

But they may relish even more not having to make many recharging stops along the way, as their EV soaks up the bountiful energy coming straight from the sun.

That’s the bet from Aptera Motors, a crowdfunded, California-based maker of solar-powered electric vehicles.

Aptera says it just completed a successful test drive of ‘PI-2’, the first production-intent version of its futuristic-looking two-seater, three-wheel solar electric vehicle. The EV’s latest version was engineered to rigorously test performance metrics such as range, solar charging capability, and efficiency, Aptera says.

“Driving our first production-intent vehicle marks an extraordinary moment in Aptera’s journey,” said Steve Fambro, Aptera’s Co-Founder and Co-CEO in a statement. “It demonstrates real progress toward delivery a vehicle that redefines efficiency, sustainability, and energy independence.”

Advertisement

Aptera says it already has over 50,000 reservations for its EV, which are scheduled to start being delivered in the second quarter of 2025. Last year, it unveiled a $33,200 launch version featuring an under 6-seconds 0-60 mph acceleration time, a battery pack providing a range of 400 miles, and a solar charge range of 40 miles per day.

The Aptera EV also features Tesla’s North American Charging Standard (NACS) port to charge its battery.

The company said its production-intent models will continue to evolve over time as they undergo further tests, including for key metrics such as solar charging rates and watt-hours per miles.

Other versions of the Aptera EV were said to provide as much as 1,000 miles of range with a 0-60 mph acceleration in 3.5 seconds.

Advertisement

Aptera has so far raised over $100 million since launching a crowdfunding program three years ago.

Solar-powered electric vehicles are also being developed by the likes of Germany’s Sono Motors and the Netherlands’ Lightyear, and by big automakers such as Hyundai and Mercedes-Benz.






Source link

Continue Reading

Trending

Copyright © 2024 WordupNews.com