HackerTrans
TopNewTrendsCommentsPastAskShowJobs

pcoz

no profile record

Submissions

[untitled]

1 points·by pcoz·เดือนที่แล้ว·0 comments

Show HN: Make a free 3.8B model as reliable as one 7× bigger at parsing data

pypi.org
4 points·by pcoz·เดือนที่แล้ว·1 comments

[untitled]

1 points·by pcoz·เดือนที่แล้ว·0 comments

Python library to solve certain P-hard problems in polynomial time

pypi.org
1 points·by pcoz·2 เดือนที่ผ่านมา·1 comments

[untitled]

1 points·by pcoz·2 เดือนที่ผ่านมา·0 comments

[untitled]

1 points·by pcoz·4 เดือนที่ผ่านมา·0 comments

[untitled]

1 points·by pcoz·4 เดือนที่ผ่านมา·0 comments

[untitled]

1 points·by pcoz·6 เดือนที่ผ่านมา·0 comments

[untitled]

1 points·by pcoz·6 เดือนที่ผ่านมา·0 comments

[untitled]

1 points·by pcoz·6 เดือนที่ผ่านมา·0 comments

[untitled]

1 points·by pcoz·7 เดือนที่ผ่านมา·0 comments

Free Vibe Coding eBook

amazon.com
3 points·by pcoz·7 เดือนที่ผ่านมา·0 comments

[untitled]

1 points·by pcoz·9 เดือนที่ผ่านมา·0 comments

AI and the Art of Persuasion

fleetingswallow.com
2 points·by pcoz·9 เดือนที่ผ่านมา·1 comments

An alternative to knowledge graphs for storing loosely structured content

fleetingswallow.com
7 points·by pcoz·9 เดือนที่ผ่านมา·2 comments

AI Script to Amalgamate Requirements

github.com
1 points·by pcoz·10 เดือนที่ผ่านมา·0 comments

New AI Native Language

github.com
3 points·by pcoz·10 เดือนที่ผ่านมา·3 comments

comments

pcoz
·2 เดือนที่ผ่านมา·discuss
Some problems classified as #P-hard - where counting valid solutions is thought to require exponential time - can have a hidden structure that makes them solvable exactly, in polynomial time.

This library finds that encoding automatically, then solves them.

Problems addressed are counting and optimisation problems with bounded-rank constraint structure - scheduling, rostering, network flow, statistical-mechanics partition functions, quantum circuit verification, and others.

Note: Most #P-hard problems don't have this structure. The library is explicit when it can't help.

Repo and docs: - github.com/pcoz/holant-tools - pypi.org/project/holant-tools

All feedback welcome!
pcoz
·4 เดือนที่ผ่านมา·discuss
Every act of biological generation has the same structure: something that carries information (an enzyme, a gene regulator, a sperm cell) engages with something receptive (a substrate, a strand of DNA, an egg) - and something new is born from the encounter. Aristotle described this as form meeting matter. The Kabbalistic tradition has its own names for the same polarity.

Every standard analytical tool in biology measures the output of this encounter. How much product formed. How fast. Under what conditions. Useful - but it only tells you what happened after the fact.

I've been working on something that measures the engagement itself - the generative potential between form-giver and matter-receiver, as it unfolds in time, independently of whether the product actually appears.

Why does that distinction matter? Think about what happens when a drug suppresses an enzyme not by blocking it directly, but by nudging it into a less active shape from a distance - the enzyme is still there, still engaged with its substrate, still trying. Standard tools show you a flat output curve and conclude nothing is happening. This framework, tested on real E. coli data, scores those inhibited enzymes as having the highest generative potential - because it's measuring the engagement, not just the yield.

Built in Python and Julia, tested on both simulated and real-world enzyme data. Would love to hear what people working at the biology/ML crossover think.
pcoz
·4 เดือนที่ผ่านมา·discuss
[dead]
pcoz
·6 เดือนที่ผ่านมา·discuss
Most neural networks assume computation is instantaneous: an input arrives, a function runs, an output appears. Even with sequences, time is often modeled indirectly (via windowing, stacking, or recurrence), so the model still reacts rather than exists in time.

This project explores Temporal Neural Networks (TNNs): neurons as continuous-time dynamical systems with internal state and inertia. Instead of y = f(x), the network evolves via dV/dt = f(V, x), and predictions emerge through a settling process - not a single forward pass.

On clean data, TNNs typically match classical accuracy. The difference shows up under real-world stress: noise, missing samples, irregular streams. TNNs produce far fewer prediction flips and degrade more gracefully - stability comes from the computation itself, not post-hoc smoothing.
pcoz
·6 เดือนที่ผ่านมา·discuss
Are we overusing neural networks for time-series analysis?

Neural networks are incredible tools.

But in many real-world time-series problems, they’re simply overkill.

If your signal is driven by a handful of rhythms, trends, decays, or saturations, training a model with thousands (or millions) of parameters can be like using a jet engine to stir tea. You’ll get motion - but also compute cost, power draw, latency, and deployment pain.

That’s why I built and open-sourced Time Series Formula Finder which takes a different approach: • Find the simplest mathematical forms that explain the data • Decompose signals into layers of structure • Produce human-readable equations, not black boxes

Instead of “trust this model,” the output is: “Here’s the equation that explains your signal.”

Why formulas often beat NNs in practice 1⃣ Edge deployment becomes trivial

A formula runs in a few operations per sample. No GPU. No heavy runtime. Ideal for microcontrollers, industrial devices, and battery-powered sensors.

2⃣ Interpretability is the feature In engineering and operational domains, explanation matters. A formula exposes frequency, decay rates, drift, and saturation directly.

3⃣ Lower lifetime cost Neural networks invite retraining cycles, monitoring pipelines, drift detection, and version churn. A good equation often stays valid far longer.

4⃣ Debugging is possible If performance drops, you can ask which term stopped matching reality. With NNs, the answer is usually far less clear.

What the tool actually does is search for promising partial forms: expressions that explain part of a signal well, subtract them, then analyze the residual.

This produces a layered explanation rather than a monolithic model.

All feedback appreciated!
pcoz
·6 เดือนที่ผ่านมา·discuss
Built a small experiment around conditional compute by reasoning type.

This repo (1) classifies prompts into 6 reasoning types (weighting/consensus/deduction/comparison/causal/lookup) via simple patterns, then (2) runs GPT-2 Small and compares neuron activation patterns by type (overlap + “type-specific” neurons). On a toy set (48 prompts) the classifier is ~92% accurate, and some type pairs show low overlap.

Has potential applications in query-aware routing / MoE-style gating, serving-cost reduction (skip irrelevant compute for “lookup-ish” prompts), prompt triage (send hard cases to stronger models/tools), and interpretability (what subnetworks light up for what reasoning demands).
pcoz
·9 เดือนที่ผ่านมา·discuss
AI and The Art of Persuasion

***************

We built an AI script that models persuasion as navigation through two-dimensional space—advancing legal arguments while simultaneously managing emotional progression. The framework applies to any persuasive context: sales, negotiations, dispute resolution, even marketing.

Read how we translated abstract philosophy into practical AI that actually works: https://fleetingswallow.com/winning-small-claims-with-ai/

#AI #Persuasion #AIScripting
pcoz
·9 เดือนที่ผ่านมา·discuss
Traditional knowledge graphs fail when applied uniformly to mixed documentation types. Force a well-organized spec through the same extraction pipeline as chaotic Slack threads and you either over-process structured content or under-extract from conversations. AILang's Knowledge Amalgamator solves this by processing documents according to their inherent structure. Well-structured docs (Confluence, specs) get minimal internalization—just outlines and anchors. Why re-serialize what's already navigable? Loosely-structured sources (Slack, email) undergo heavy extraction of decisions, risks, and procedures buried in conversations. The system uses a Person-based memory architecture that mirrors human cognition: separate episodic, semantic, and procedural memory types with natural boundaries between them. The lightweight schema eliminates massive ML costs while enabling production-grade reliability. GitHub: https://github.com/pcoz/ailang/tree/main/examples/knowledge_...
pcoz
·10 เดือนที่ผ่านมา·discuss
It's really a prompt engineering thing. Prompt engineering allows you to play off different areas of the LLM's training data against each other to produce a useful result by returning the intersection between the two sets (knowledge areas) of training data. The make_bigger(document) effect occurs when you let the LLM freewheel.
pcoz
·10 เดือนที่ผ่านมา·discuss
I wrote this language to address the issue with letting AI into production environments, which is that the AI is unpredictable to a certain degree. The purpose of this language is to provide hard, defined constraints in which the AI's human-like processing is invoked. All feedback welcome! Thanks, Edward