惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Last Week in AI
Last Week in AI
D
DataBreaches.Net
腾讯CDC
Recent Announcements
Recent Announcements
有赞技术团队
有赞技术团队
A
About on SuperTechFans
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Google DeepMind News
Google DeepMind News
Microsoft Security Blog
Microsoft Security Blog
云风的 BLOG
云风的 BLOG
罗磊的独立博客
月光博客
月光博客
MyScale Blog
MyScale Blog
U
Unit 42
Martin Fowler
Martin Fowler
Stack Overflow Blog
Stack Overflow Blog
T
Tailwind CSS Blog
Engineering at Meta
Engineering at Meta
N
Netflix TechBlog - Medium
G
Google Developers Blog
博客园 - 【当耐特】
D
Docker
I
InfoQ
雷峰网
雷峰网

Show HN

Show HN: AI agents for UK GDAD PCF roles and their skills The Two Pillars: Mixer Mode and Meta-Software in the Reorganization of Software Work After AI GitHub - JaiCode08/teleport-env What 1,000+ Harness Experiments Taught Me About Self-Improving Agents Show HN: Liiists, a Markdown-first, iOS and CLI list app SwiperTab – Get this Extension for 🦊 Firefox (en-US) GitHub - kouhxp/fftext: Summarize, explain, fact-check, or translate any text, URL, or file. No GPU. No cloud. One command GitHub - sweetpad-dev/sweetpad: Develop Swift/iOS projects using VSCode GitHub - dogmaticdev/IRON: IRON a.k.a. Intermediate Representation Object Notation is a Interpreter/Database that is used to create Programming Languages. GitHub - sjhalani7/vaen: Package your AI coding harness into a portable .agent file, and share it across repos, teams, & the community without ever having to copy-paste instructions, skills, MCP config, or secrets. Show HN: Gandalf the Grader Show HN: Citadeld – replay any CI failure locally from a single file GitHub - tdortman/cuSBF: High-Performance GPU Super Bloom Filter coral-ai/claude-code-token-xray at main · Coral-Bricks-AI/coral-ai GitHub - ulyssestenn/funes: Funes is a Git-based framework for LLM-managed knowledge work: an AI Librarian ingests raw sources, builds an interlinked Markdown knowledge base, and uses it to produce cited reports, analyses, and other outputs. GitHub - ThatXliner/gah: Git Add Hunk, built for agents to use GitHub - harmont-dev/harmont-cli: Command-line client for the Harmont CI platform GitHub - brooksmcmillin/mcp-authflow: OAuth 2.0 Authorization Server framework for MCP servers GitHub - javaid-codes/audit-supply-chain-agents GitHub - amorey/gochan: A small library of common channel architectures for Go, inspired by Rust GitHub - arifozgun/OpenGem: Free, Open-Source AI API Gateway with Gemini, OpenAI & Anthropic Compatibility in 1 file GitHub - Pranesh950/BioPetals: 🌸 Run BIOxAI models at home, BitTorrent-style. Fine-tuning and inference up to 10x faster than offloading GitHub - cnguyen14/bounty-doctor: Diagnose a GitHub bounty issue before you waste hours: detects honeypot scam repos, AI-bot attempt swarms, and stale contests. Show HN: CoreMCP – MCP Server for On-Prem DBs Show HN: KittyHTML – Render HTML/CSS as an inline image in your terminal GitHub - bingud/filemat: Web-based file manager Show HN: TruthLens – Free multi-signal deepfake image detector GitHub - apexlocal-jz/claude-usage-tray: Windows system-tray app showing your Claude Code rate-limit usage at a glance. Zero deps, ~300 lines of PowerShell. Cross-IDE (works regardless of VS Code, Cursor, plain terminal). Release v0.1.2.1 · kouhxp/yapsnap GitHub - noopolis/moltnet: Self-hostable chat network for AI agents. Pre-built bridges for Claude Code, Codex, and the Claws. Rooms, DMs, history. No Slack bots, no Matrix, no glue code.
HyperC - AI products for computable markets that make a p...
Authors · 2026-06-20 · via Show HN

HyperC P34 preview

Tabular model for profit targets.

Simulation

P34 is a Profit-as-Regression model that generates profitable portfolios out of available deals to trade.

It is intended as a replacement for naive tabular data fitting that tends to be too optimistic on real-world markets (above plot).

Usage

Predicting a Trade

To create a portfolio out of available trade options, you just need to feed the features to predict:

from P34 import P34

model = P34(api_key)
selected_df = model.predict(
    X_menu=X_df,
    x_keys=x_keys,
    market_type="synthetic_inventory"
)

where X_menu is a dataframe with features and a separate line per qty (sizing of deal), and x_keys - a dataframe with a single key column identifying separate options so that qty will be unique within each key:

                                           
| qty | feature_1 | feature.. |  | key |        qty | profit
|-----|-----------|-----------|  |-----|       -----|--------
|  1  |    0.1    |    ...    |  | 123 |     ->  0  |  $0
|  2  |    1.6    |    ...    |  | 123 |     ->  0  |  $0
|  3  |    ...    |    ...    |  | 123 |     ->  0  |  $0
|  1  |    0.3    |    ...    |  | 456 |     ->  5  | $151.3
               (input)                           (predict)
                X_df                            selected_df

the model will predict best qty and profit per each key.

Feeding the training data

The model accepts previous history of observed trades as a “heavy” context:

from P34 import P34

model = P34(api_key)
selected = model.fit(
  X_historical_df,    # features, one deal per line
  y_historical_df,    # historical profit
  x_historical_keys,  # SKU, ASIN, etc.
  x_historical_dates, # integer dates
  x_historical_menus, # integer menu identifiers
  X_historical_available=None, # 1/0 for each qty line (availability)
  x_historical_choices=None,   # if exact historical choice is known 
  market_type="synthetic_inventory" 
        # pre-configured markets like "amazon" will be available
)

where X_historical_df is a (dataframe) list of all options that were available (all applications traffic, entire catalogs of inventory available historically, etc.),

y_historical_df - a single profit column dataframe with profit outcomes when available, and None if this option in X_historical_df was historically not traded,

x_historical_keys are key (SKU, ASIN, application_id etc.), and x_historical_dates - integer date columns,

x_historical_menus is a menu_id column that identifies which option belongs to which “menu” (a menu is a list of options that were present for the business to select from at decision time),

market_type is either one of the pre-configured markets, or “grounded” for advanced, fully-custom markets. TBD: advanced mode link.

Trading the portfolio

The resulting table is a list of items to purchase. qty column - the sizing, and profit column - the indicative profit score that gives portfolio-wise prediction estimation. 0 when decided not to trade this option this time.

Quick examples

Amazon Wholesale Reselling with P34

TBD

Small Loans with P34

TBD

Startup Investing with P34

TBD

More examples

More computable markets include electricity, collectibles, virtual goods/skins, betting markets, used cars, industrial chemicals, construction materials, retail real estate, and others.

Benchmark and API

We recommend studying our synthetic benchmarks and requesting early API access to get familiar with the interface and to check if the performance meets your case.

Explanation

The hard part of biased-data problems isn’t fitting the data — it’s the chain of engineering judgment calls made to compensate for the bias: feature treatment, regularization, conservatism assumptions. Different choices produce very different models, and the one that fits history best is usually the one that’s most over-optimistic on real markets.

P34 treats that space of engineering choices as the problem itself. We enumerate the choices as large, sparse unrolls and score each configuration by a survival criterion: across grounded simulations and real market history, did it avoid losses, stay comparable to the business’s prior performance, and stay close on portfolio-level profit predictions? The final-layer weights are trained against a lifted proxy loss so the model selects the configuration that survives across scenarios — not the one that fits the past best.

Limitations

Entire historical “menu” must be provided; The model does not speculate on how the past and missed opportunities looked like.

P34 is slow and is designed to exploit inefficiencies of partially observed markets where market data mostly exists in latent space. It has no value in regulated, fully materialized (e.g. where historical order book exists) and high-frequency environments.

We are working hard to assess general limitations and safety issues. Currently, P34 is available upon approval and we’re working with select partners to come up with a safe and ethical usage rules.

Terms

The services are provided for technical research, engineering evaluation, and discussion purposes only. They do not constitute investment advice, financial advice, trading advice, a recommendation to buy or sell any asset, or an offer to provide investment-management services. HyperC does not guarantee profit, positive returns, loss avoidance, model accuracy, live-market performance, or suitability for any particular market, business, trading strategy, or investment decision. All benchmark results shown here are experimental and may not generalize to real-world deployment. Any use of P34 or related PARML methods in a live business or trading environment requires independent validation, risk controls, compliance review, and professional judgment.

Pricing

Please contact us.

Team

The HyperC team.

© 2026 HyperC (CriticalHop Inc)
+1 650 388 94 99
Santa Clara, CA
info@hyperc.com
Request Early Access | Support | Join us