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

推荐订阅源

Recent Announcements
Recent Announcements
人人都是产品经理
人人都是产品经理
月光博客
月光博客
博客园 - 三生石上(FineUI控件)
GbyAI
GbyAI
博客园 - 司徒正美
美团技术团队
Vercel News
Vercel News
IT之家
IT之家
U
Unit 42
Y
Y Combinator Blog
罗磊的独立博客
Microsoft Security Blog
Microsoft Security Blog
MongoDB | Blog
MongoDB | Blog
Jina AI
Jina AI
V
Visual Studio Blog
B
Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
MyScale Blog
MyScale Blog
博客园 - 叶小钗
A
About on SuperTechFans
WordPress大学
WordPress大学
Hugging Face - Blog
Hugging Face - Blog
B
Blog RSS Feed

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
HyperC - AI products for computable markets that make a p...
Authors · 2026-06-20 · via Hacker News: 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