• 6 posts
  • 0 comments
Joined 7 years ago
Cake day: January 21st, 2020

alot of really small SLMs seem to be too small to even function properly.
however, there may be some unconventional uses for some of them.

one usecase keyword generation. heres what gemma-3-270m-it-qat-Q4_0 gave me

prompt: keywords similar to “construction”

Construction activities
*   Construction design
*   Construction equipment
*   Construction management
*   Construction materials
*   Construction methodology
*   Construction organization
*   Construction planning
*   Construction process
*   Construction project
*   Construction project details
*   Construction project management
*   Construction project management activities
*   Construction project management assessment
*   Construction project management checklist
*   Construction project management document
*   Construction project management evaluation
*   Construction project management framework
*   Construction project management methodology
*   Construction project management plan
*   Construction project management project
*   Construction project management report
*   Construction project management review
*   Construction project management schedule
*   Construction project management software
*   Construction project management strategy
*   Construction project management system
*   Construction project management tool
*   Construction project planning
*   Construction project scope
*   Construction schedule
*   Construction strategy
*   Construction work
```
                
90 TPS (but got stuck in a repeating loop)          
            
i think theres alot of other uses. but they arent really LLM answer that people usually reach for an LLM.

MemReranker is a reasoning-aware reranking model family (0.6B / 4B) purpose-built for agent memory retrieval. It is fine-tuned from Qwen3-Reranker-4B through multi-stage LLM knowledge distillation.

In agent memory systems, the reranking model serves as the critical bridge connecting user queries with long-term memory. Most systems adopt the “retrieve-then-rerank” two-stage paradigm, but generic reranking models rely on semantic similarity matching and lack genuine reasoning capabilities. This leads to recalled results that are semantically relevant yet do not contain the key information needed to answer the question.

MemReranker addresses three specific problems in memory scenarios:

  • Score Miscalibration — Relevance scores from generic models are poorly calibrated, making threshold-based filtering difficult.
  • Complex Query Degradation — Ranking degrades when facing temporal constraints, causal reasoning, and other complex queries.
  • Context Disambiguation — The model cannot leverage dialogue context for semantic disambiguation.

https://arxiv.org/html/2605.06132v2

As illustrated in Figure 2, MemReranker utilizes Qwen3-Reranker as its foundation. We employ Binary Cross-Entropy (BCE) loss for the training process—a design choice informed by the empirical evidence from BiXSE [18]. Their findings demonstrate that at this specific parameter scale, BCE-trained models consistently yield superior performance compared to those trained with InfoNCE loss, effectively establishing BCE as the optimal maximum-likelihood estimator for sigmoid-activated relevance scoring.

3.1.2 Instruction-Aware Design

Inspired by the instruction-following capabilities of Qwen3-Reranker and the task-aware approach of Jina Reranker v3 [23], MemReranker supports three categories of retrieval instructions:

Intent-Focusing Instructions.
These extract the core retrieval intent from history-heavy long queries. For example, when dialogue history discusses mobile phone preferences and the current query is “I want to look at Apple,” the instruction guides the model to interpret this as a smartphone query rather than a fruit query.

Entity/Keyword Augmentation Instructions.
These bridge the vocabulary gap between colloquial user queries and professional document terminology, mapping informal descriptions to domain-specific terms.

Aspect-Constraint Instructions.
When a query contains multiple needs but a document satisfies only one aspect, the instruction guides the model to focus on the relevant portion, enabling partial-match scoring.

this particular model is finetune of gpt-oss-20B (3.6A)

An AI that rewrites its own rules for greater intelligence.

"Logic is the soul of a model, for it defines:

  • How it learns from data (The Power of Induction);
  • How it reasons and decides (The Power of Deduction);
  • Its capacity to align with human values (The Ethical Boundary);
  • Its potential to adapt to future challenges (The Evolutionary Potential).

If a model pursues nothing but sheer scale or computational power, ignoring the depth and breadth of its logic, it risks becoming a “paper tiger”—imposing on the surface, yet hollow at its core. Conversely, a model built upon elegant logic, even with fewer parameters, can unleash its true vitality in our complex world."

https://huggingface.co/collections/aifeifei798/qiming

https://arxiv.org/html/2603.07267v2

also: https://huggingface.co/Jackrong/Negentropy-claude-opus-4.7-9B-GGUF

"Based on current public information, commercial models like OpenAI’s GPT series and Anthropic’s Claude series have clearly hidden their true internal reasoning chains. What we ultimately see through APIs or frontend interfaces are often just “Reasoning Bubbles”—highly compressed and summarized versions of the original massive reasoning content. For small models aiming to improve capabilities through data distillation, these overly compressed reasoning chains fail to provide sufficient step-level learning signals. On the contrary, because the logical leaps are too large and intermediate derivations are missing, forcing small models to learn these summaries directly often leaves them confused and unable to master true reasoning abilities.

Negentropy-claude-opus-4.7-4B is a 4B-level lightweight reasoning-enhanced model. Its name is derived from Negentropy in information theory, symbolizing the reconstruction of highly ordered, logically rigorous reasoning chains from compressed and fragmented information.

Unlike other distillation models in the community that perform simple output distillation from closed-source commercial models, this model employs the cutting-edge “Trace Inversion” technique: using the Trace-Inverter-4B model to restore the compressed “Reasoning Bubbles” leaked by Claude-Opus-4.7 in public interfaces into full Chains-of-Thought (CoT), using them as high-value supervisory signals for fine-tuning.

Negentropy Theory: Why Do We Need “Inversion”? (Introduction)
In the current model distillation paradigm, we face a massive “Information Entropy” trap:
Commercial Black Boxes: Models like Claude-Opus or GPT-5.5 often provide only the final answer (Answer-only) or extremely compressed summaries (Reasoning Bubbles) via API. Information Loss: This compression process significantly increases the data’s “entropy,” causing small models to learn only “imitated conclusions” rather than “reasoning logic” due to the lack of explanations for intermediate logical leaps.

The core idea of Negentropy-4.7-4B is to expand these compressed signals back into detailed, coherent reasoning trajectories through a “Negentropy (reducing disorder)” process. We believe that the essence of reasoning lies in the process, not the result. Thinking chains completed through inversion techniques provide small models with higher-quality “logical gradients.”