Wednesday, August 27, 2025

Scientists Just Developed a New AI Modeled On The Human Brain It’s Outperforming LLMs Like ChatGPT At Reasoning Tasks

Eugene Mymrin/Getty Images

Scientists have developed a new type of artificial intelligence (AI) model that can reason differently from most large language models (LLMs) like ChatGPT, resulting in much better performance in key benchmarks. The new reasoning AI, called a hierarchical reasoning model (HRM), is inspired by the hierarchical and multi-timescale processing in the human brain the way different brain regions integrate information over varying durations (from milliseconds to minutes)…….Continue reading….

By: By 

Source:  Live Science

.

Critics: 

As machine learning algorithms process numbers rather than text, the text must be converted to numbers. In the first step, a vocabulary is decided upon, then integer indices are arbitrarily but uniquely assigned to each vocabulary entry, and finally, an embedding is associated to the integer index. Algorithms include byte-pair encoding (BPE) and WordPiece.

There are also special tokens serving as control characters, such as [MASK] for masked-out token (as used in BERT), and [UNK] (“unknown”) for characters not appearing in the vocabulary. Also, some special symbols are used to denote special text formatting. For example, “Ġ” denotes a preceding whitespace in RoBERTa and GPT. “##” denotes continuation of a preceding word in BERT.

For example, the BPE tokenizer used by GPT-3 (Legacy) would split Tokenization also compresses the datasets. Because LLMs generally require input to be an array that is not jagged, the shorter texts must be “padded” until they match the length of the longest one. The average number of words per token depends on the language. In English, the ratio is typically around 0.75 words per token, with 4 characters per token on average.

In the context of training LLMs, datasets are typically cleaned by removing low-quality, duplicated, or toxic data. Cleaned datasets can increase training efficiency and lead to improved downstream performance. A trained LLM can be used to clean datasets for training a further LLM. With the increasing proportion of LLM-generated content on the web, data cleaning in the future may include filtering out such content.

LLM-generated content can pose a problem if the content is similar to human text (making filtering difficult) but of lower quality (degrading performance of models trained on it). Training of largest language models might need more linguistic data than naturally available, or that the naturally occurring data is of insufficient quality. In these cases, synthetic data might be used. Microsoft’s Phi series of LLMs is trained on textbook-like data generated by another LLM.

Before being fine-tuned, most LLMs are next-token predictors. The fine-tuning adjust the output of an LLM to seem more conversational via techniques like reinforcement learning from human feedback (RLHF) or constitutional AI. Instruction fine-tuning is a form of supervised learning used to teach LLMs to follow user instructions. In 2022, OpenAI demonstrated InstructGPT, a version of GPT-3 similarly fine-tuned to follow instructions.

Reinforcement learning from human feedback (RLHF) involves training a reward model to predict which text humans prefer. Then, the LLM can be fine-tuned through reinforcement learning to better satisfy this reward model. Since humans typically prefer truthful, helpful and harmless answers, RLHF favors such answers.

A mixture of experts (MoE) is a machine learning architecture in which multiple specialized neural networks (“experts”) work together, with a gating mechanism that routes each input to the most appropriate expert(s). Mixtures of experts can reduce inference costs, as only a fraction of the parameters are used for each input. The approach was introduced in 2017 by Google researchers.

Typically, LLMs are trained with single- or half-precision floating point numbers (float32 and float16). One float16 has 16 bits, or 2 bytes, and so one billion parameters require 2 gigabytes. The largest models typically have 100 billion parameters, requiring 200 gigabytes to load, which places them outside the range of most consumer electronics. Post-training quantization aims to decrease the space requirement by lowering precision of the parameters of a trained model, while preserving most of its performance.

Quantization can be further classified as static quantization if the quantization parameters are determined beforehand (typically during a calibration phase), and dynamic quantization if the quantization is applied during inference. The simplest form of quantization simply truncates all the parameters to a given number of bits: this is applicable to static as well as dynamic quantization, but loses much precision.

Dynamic quantization allows for the use of a different quantization codebook per layer, either a lookup table of values or a linear mapping (scaling factor and bias), at the cost of foregoing the possible speed improvements from using lower-precision arithmetic. Quantized models are typically seen as frozen with modification of weights (e.g. fine-tuning) only applied to the original model. It is possible to fine-tune quantized models using low-rank adaptation.

In 2020, OpenAI researchers demonstrated that their new model GPT-3 could understand what format to use given a few rounds of Q and A (or other type of task) in the input data as example, thanks in part due to the RLHF technique. This technique, called few-shot prompting, allows LLMs to be adapted to any task without requiring fine-tuning. Also in 2022, it was found that the base GPT-3 model can generate an instruction based on user input.

The generated instruction along with user input is then used as input to another instance of the model under a “Instruction: […], Input: […], Output:” format. The other instance is able to complete the output and often produces the correct answer in doing so. The ability to “self-instruct” makes LLMs able to bootstrap themselves toward a correct answer. An LLM can be turned into a chatbot or a “dialog assistant” by specializing it for conversation.

In essence, user input is prefixed with a marker such as “Q:” or “User:” and the LLM is asked to predict the output after a fixed “A:” or “Assistant:”. This type of model became commercially available in 2022 with ChatGPT, a sibling model of InstructGPT fine-tuned to accept and produce dialog-formatted text based on GPT-3.5. It could similarly follow user instructions. Before the stream of User and Assistant lines, a chat context usually start with a few lines of overarching instructions, from a role called “developer” or “system” to convey a higher authority than the user’s input. This is called a “system prompt”.

Retrieval-augmented generation (RAG) is an approach that enhances LLMs by integrating them with document retrieval systems. Given a query, a document retriever is called to retrieve the most relevant documents. This is usually done by encoding the query and the documents into vectors, then finding the documents with vectors (usually stored in a vector database) most similar to the vector of the query. The LLM then generates an output based on both the query and context included from the retrieved documents.

Tool use is a mechanism that enables LLMs to interact with external systems, applications, or data sources. It can allow for example to fetch real-time information from an API or to execute code. A program separate from the LLM watches the output stream of the LLM for a special tool-calling syntax. When these special tokens appear, the program calls the tool accordingly and feeds its output back into the LLM’s input stream.

Early tool-using LLMs were fine-tuned on the use of specific tools. But fine-tuning LLMs for the ability to read API documentation and call API correctly has greatly expanded the range of tools accessible to an LLM. Describing available tools in the system prompt can also make an LLM able to use tools. A system prompt instructing ChatGPT (GPT-4) to use multiple types of tools can be found online.

An LLM is typically not an autonomous agent by itself, as it lacks the ability to interact with dynamic environments, recall past behaviors, and plan future actions. But it can be transformed into an agent by adding supporting elements: the role (profile) and the surrounding environment of an agent can be additional inputs to the LLM, while memory can be integrated as a tool or provided as additional input. Instructions and input patterns are used to make the LLM plan actions and tool use is used to potentially carry out these actions.

The ReAct pattern, a portmanteau of “Reason + Act”, constructs an agent out of an LLM, using the LLM as a planner. The LLM is prompted to “think out loud”. Specifically, the language model is prompted with a textual description of the environment, a goal, a list of possible actions, and a record of the actions and observations so far. It generates one or more thoughts before generating an action, which is then executed in the environment.

In the DEPS (“Describe, Explain, Plan and Select”) method, an LLM is first connected to the visual world via image descriptions. It is then prompted to produce plans for complex tasks and behaviors based on its pretrained knowledge and the environmental feedback it receives. The Reflexion method constructs an agent that learns over multiple episodes.

At the end of each episode, the LLM is given the record of the episode, and prompted to think up “lessons learned”, which would help it perform better at a subsequent episode. These “lessons learned” are stored as a form of long-term memory and given to the agent in the subsequent episodes. Monte Carlo tree search can use an LLM as rollout heuristic. When a programmatic world model is not available, an LLM can also be prompted with a description of the environment to act as world model.

For open-ended exploration, an LLM can be used to score observations for their “interestingness”, which can be used as a reward signal to guide a normal (non-LLM) reinforcement learning agent. Alternatively, it can propose increasingly difficult tasks for curriculum learning. Instead of outputting individual actions, an LLM planner can also construct “skills”, or functions for complex action sequences. The skills can be stored and later invoked, allowing increasing levels of abstraction in planning.

Multiple agents with memory can interact socially. LLMs can handle programming languages similarly to how they handle natural languages. No special change in token handling is needed as code, like human language, is represented as plain text. LLMs can generate code based on problems or instructions written in natural language. They can also describe code in natural language or translate between programming languages.

They were originally used as a code completion tool, but advances have moved them towards automatic programming. Services such as GitHub Copilot offer LLMs specifically trained, fine-tuned, or prompted for programming. LLM architectures have also proven useful in analyzing biological sequences: protein, DNA, and RNA. With proteins they appear able to capture a degree of “grammar” from the amino-acid sequence, condensing a sequence into an embedding.

On tasks such as structure prediction and mutational outcome prediction, a small model using an embedding as input can approach or exceed much larger models using multiple sequence alignments (MSA) as input. ESMFold, Meta Platforms’ embedding-based method for protein structure prediction, runs an order of magnitude faster than AlphaFold2 thanks to the removal of an MSA requirement and a lower parameter count due to the use of embeddings.

Meta hosts ESM Atlas, a database of 772 million structures of metagenomic proteins predicted using ESMFold. An LLM can also design proteins unlike any seen in nature. Nucleic acid models have proven useful in detecting regulatory sequences, sequence classification, RNA-RNA interaction prediction, and RNA structure prediction.

Friday

Leave a Reply

Philip Johansen Affiliate Marketing Secrets A Real Business or Just Another Hype

Credit to: arminhamidian

7-Figure Accelerator is a ready-made, automated affiliate marketing system—designed around the exact framework Philip Johansen personally uses to pull in over $30,000 per month. Unlike the typical “gu-ru” strategies that expect you to master complicated funnels, spend heavily on ads, or post endlessly on social media, this system is beginner-friendly, step-by-step, and powered by a viral traffic shortcut.

The idea is to make it possible for anyone—no matter their experience level—to promote premium offers and land high-ticket commissions.In short, it’s an all-in-one package that gives you everything you need to start and scale, including:

  • A complete, done-for-you funnel that’s already optimized for conversions.
  • Training on generating leads with both free and paid traffic methods.
  • A system helps you close high-ticket commissions (often $500+ per sale).
  • Guidance on using simple video content to build authority and trust.
  • Proven templates, hands-on coaching, and detailed traffic strategies to shortcut your learning curve.

The 7-Figure Accelerator is essentially the blueprint of his years of lessons the failures, the breakthroughs, and the strategies that finally worked. Instead of figuring it all out the hard way, you get direct access to the system Phillip refined through real-world experience. And it’s not just about his own success. Phillip has also helped countless others follow the same path, proving that his methods can be duplicated.

As you move into the next section and explore what’s inside 7-Figure Accelerator, you’ll see the level of thought and effort he’s poured into building this system for beginners who are serious about creating real results. Hate the feeling of learning a lot of theory but don’t know how to implement in real world? That’s not the case with 7-Figure Accelerator, as it provides the blueprint, tools, and coaching all in one place, so you’re not left piecing things together on your own.

Imagine skipping the tech headaches and jumping straight into running your business. With pre-built funnels, product pages, email follow-ups, and proven copy, everything is handled for you. All you need to do is plug it in, launch, and start collecting leads. This is a structured, over-the-shoulder training where Phillip shows you exactly how to go from zero to your first $5,000 online. You’ll literally watch him build a business from scratch and be able to replicate the exact steps.

Once you’ve made your first commissions, Phillip reveals how to scale to $30K+ per month—without relying on paid ads or exhausting content schedules. It’s all about creating a business that pays you long-term. No traffic, no sales—it’s that simple. Here you’ll learn how to attract the right audience, drive consistent visitors, and convert clicks into buyers. These are the same free traffic hacks Phillip personally uses to get thousands of leads.

Unlike short programs that leave you stranded, you’ll get 12 months of continuous guidance, strategy updates, and even access to Phillip’s $30K Cash Prize Challenge—a fun, competitive way to stay motivated while building your business. Every week, you’ll hop on Zoom with Phillip and his team. You’ll get live Q&A, personalized feedback, and even hot-seat critiques to fix mistakes before they cost you money. This is real mentorship, not pre-recorded fluff.

You’ll join a supportive private group filled with other entrepreneurs on the same path. It’s a place to ask questions, share wins, and get encouragement when you hit roadblocks. Many members also share mini-trainings and strategies that add even more value. Instead of struggling to find what to promote, Phillip gives you access to premium offers that pay $1K–$5K+ per sale. The sales process is automated, so you can focus on driving traffic while the system handles the heavy lifting.

You’ll go through every stage of building an affiliate business:

  1. Mindset reset (practical, action-driven—not fluffy theory).
  2. Choosing and positioning offers to maximize commissions.
  3. Funnel building with DFY templates designed for conversions.
  4. Video content strategy (Phillip’s specialty for building trust fast).
  5. Closing high-ticket sales through DMs or application funnels.
  6. Scaling with ads & retargeting once you’re ready for advanced growth.

Each lesson comes with in-depth Loom walkthroughs, so you can pause, follow along, and apply right away. You will also get pre-built funnels & assets to get started instantly. You won’t just get “generic” landing pages. These assets are based on Phillip’s conversion storytelling framework, designed to build trust and urgency at every step.Opt-in pages,Bridge pages,Full email sequences (day-by-day drip system) and High-ticket application funnels.

Everything integrates seamlessly with popular tools like ClickFunnels and Systeme.io, so there’s zero coding or tech overwhelm.On top of the main training, you’re also getting some powerful extras that make the system even more practical. These bonuses aren’t just “add-ons”—they’re tools you can plug straight into your journey with 7-Figure Accelerator:

  • DFY Videos – Instead of stressing over content creation, you can use these ready-made videos to start attracting attention right away.
  • Email Marketing Mastery – Pair this with the strategies you learn to build a list and turn your traffic into repeat buyers.
  • Live Case Study – Watch step-by-step how the system is applied in real life so you can mirror the process without second-guessing.
  • Scaling Secrets – Once you get traction, these strategies will help you push past the beginner stage and multiply your results.

These bonuses cover various helpful tools and resources to support different aspects of your online business — from building websites to attracting clients and increasing your profits.

Source: https://freedomescapexcelerator.com/

.

Labels: affiliatemarketing,sales,funnels,automation,contentmarketing,business,marketing,modules,trainingmodules

Strategy Is Buying Bitcoin Again but Its STRC Financing Engine Is the Real Worry

AFP via Getty Images Strategy is back to buying Bitcoin after causing a stir with its first sale in years . But that controversy is the le...