Spaces:
Sleeping
Sleeping
File size: 663 Bytes
0e24aff | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | spec_version: 1
name: physix
description: >-
Iterative equation discovery from noisy trajectory data. The agent proposes
an ODE; the env simulates it via scipy.odeint and rewards on per-step R² —
no LLM-as-judge.
# Tells OpenEnv's container provider how to launch the env in a sandbox.
type: space
runtime: fastapi
app: physix.server.app:app
port: 7860
# Class-name overrides for openenv.auto auto-discovery (the convention
# would Pascal-case "physix" -> "Physix*", but we use "PhysiX*").
action: PhysiXAction
observation: PhysiXObservation
# Hub metadata.
tags:
- physics
- equation-discovery
- rlvr
- verifiable-reward
- ode
license: mit
|