black-yt commited on
Commit
3a4740a
·
1 Parent(s): a8a248a

Update public links for Stanford-CongLab

Browse files
Files changed (1) hide show
  1. README.md +10 -10
README.md CHANGED
@@ -23,12 +23,12 @@ tags:
23
 
24
  <div align="center">
25
 
26
- [![Website](https://img.shields.io/badge/%F0%9F%9A%80%20Website-LabHorizon-00c2a8)](https://conglab-research.github.io/LabHorizon/)&nbsp;
27
  ![arXiv](https://img.shields.io/badge/arXiv-coming%20soon-b31b1b?logo=arxiv&logoColor=white)&nbsp;
28
- [![Code](https://img.shields.io/badge/Code-LabHorizon-000000?logo=github&logoColor=white)](https://github.com/CongLab-Research/LabHorizon)&nbsp;
29
- [![Data L1 3D Asset](https://img.shields.io/badge/%F0%9F%A4%97%20Data-L1%203D%20Asset-blue)](https://huggingface.co/datasets/CongLab-Research/LabHorizon-3D-Asset-Perception)&nbsp;
30
- [![Data L2 Protocol](https://img.shields.io/badge/%F0%9F%A4%97%20Data-L2%20Protocol-purple)](https://huggingface.co/datasets/CongLab-Research/LabHorizon-Protocol-Conditioned-Planning)&nbsp;
31
- [![Model](https://img.shields.io/badge/%F0%9F%A4%97%20Model-Qwen3.6-orange)](https://huggingface.co/CongLab-Research/LabHorizon-Model)
32
 
33
  **Qwen3.6-35B-A3B LoRA for protocol-conditioned laboratory action prediction**
34
 
@@ -73,8 +73,8 @@ The adapter is trained on the same public LabHorizon train split described by th
73
 
74
  | Level | Hugging Face Dataset | Input | Target | Metric |
75
  |:---|:---|:---|:---|:---|
76
- | **Level 1** | [LabHorizon-3D-Asset-Perception](https://huggingface.co/datasets/CongLab-Research/LabHorizon-3D-Asset-Perception) | Three asset views, historical actions, candidate next actions | Gold next action | Next-action accuracy |
77
- | **Level 2** | [LabHorizon-Protocol-Conditioned-Planning](https://huggingface.co/datasets/CongLab-Research/LabHorizon-Protocol-Conditioned-Planning) | Context, goal, constraints, available inputs, action pool | Gold experimental action sequence | L2 Action Sequence Similarity, L2 Parameter Accuracy |
78
 
79
  ## 📦 Model
80
 
@@ -118,7 +118,7 @@ For Level 1, the evaluator maps the final next action back to the candidate list
118
 
119
  ## 🏆 Leaderboard
120
 
121
- The tables below report direct-prompting baselines on the same test split used for the trained model comparison. The full code and evaluation scripts are maintained in the [LabHorizon GitHub repository](https://github.com/CongLab-Research/LabHorizon).
122
 
123
  ### 🔬 Level 1: 3D Asset Perception
124
 
@@ -228,7 +228,7 @@ from transformers import AutoModelForCausalLM, AutoProcessor
228
  from peft import PeftModel
229
 
230
  base_id = "Qwen/Qwen3.6-35B-A3B"
231
- adapter_id = "CongLab-Research/LabHorizon-Model"
232
 
233
  processor = AutoProcessor.from_pretrained(adapter_id, trust_remote_code=True)
234
  base = AutoModelForCausalLM.from_pretrained(
@@ -245,7 +245,7 @@ model = PeftModel.from_pretrained(base, adapter_id)
245
  Use the public code repository for evaluation and agent workflows:
246
 
247
  ```bash
248
- git clone https://github.com/CongLab-Research/LabHorizon
249
  cd LabHorizon
250
  ```
251
 
 
23
 
24
  <div align="center">
25
 
26
+ [![Website](https://img.shields.io/badge/%F0%9F%9A%80%20Website-LabHorizon-00c2a8)](https://stanford-conglab.github.io/LabHorizon/)&nbsp;
27
  ![arXiv](https://img.shields.io/badge/arXiv-coming%20soon-b31b1b?logo=arxiv&logoColor=white)&nbsp;
28
+ [![Code](https://img.shields.io/badge/Code-LabHorizon-000000?logo=github&logoColor=white)](https://github.com/Stanford-CongLab/LabHorizon)&nbsp;
29
+ [![Data L1 3D Asset](https://img.shields.io/badge/%F0%9F%A4%97%20Data-L1%203D%20Asset-blue)](https://huggingface.co/datasets/Stanford-CongLab/LabHorizon-3D-Asset-Perception)&nbsp;
30
+ [![Data L2 Protocol](https://img.shields.io/badge/%F0%9F%A4%97%20Data-L2%20Protocol-purple)](https://huggingface.co/datasets/Stanford-CongLab/LabHorizon-Protocol-Conditioned-Planning)&nbsp;
31
+ [![Model](https://img.shields.io/badge/%F0%9F%A4%97%20Model-Qwen3.6-orange)](https://huggingface.co/Stanford-CongLab/LabHorizon-Model)
32
 
33
  **Qwen3.6-35B-A3B LoRA for protocol-conditioned laboratory action prediction**
34
 
 
73
 
74
  | Level | Hugging Face Dataset | Input | Target | Metric |
75
  |:---|:---|:---|:---|:---|
76
+ | **Level 1** | [LabHorizon-3D-Asset-Perception](https://huggingface.co/datasets/Stanford-CongLab/LabHorizon-3D-Asset-Perception) | Three asset views, historical actions, candidate next actions | Gold next action | Next-action accuracy |
77
+ | **Level 2** | [LabHorizon-Protocol-Conditioned-Planning](https://huggingface.co/datasets/Stanford-CongLab/LabHorizon-Protocol-Conditioned-Planning) | Context, goal, constraints, available inputs, action pool | Gold experimental action sequence | L2 Action Sequence Similarity, L2 Parameter Accuracy |
78
 
79
  ## 📦 Model
80
 
 
118
 
119
  ## 🏆 Leaderboard
120
 
121
+ The tables below report direct-prompting baselines on the same test split used for the trained model comparison. The full code and evaluation scripts are maintained in the [LabHorizon GitHub repository](https://github.com/Stanford-CongLab/LabHorizon).
122
 
123
  ### 🔬 Level 1: 3D Asset Perception
124
 
 
228
  from peft import PeftModel
229
 
230
  base_id = "Qwen/Qwen3.6-35B-A3B"
231
+ adapter_id = "Stanford-CongLab/LabHorizon-Model"
232
 
233
  processor = AutoProcessor.from_pretrained(adapter_id, trust_remote_code=True)
234
  base = AutoModelForCausalLM.from_pretrained(
 
245
  Use the public code repository for evaluation and agent workflows:
246
 
247
  ```bash
248
+ git clone https://github.com/Stanford-CongLab/LabHorizon
249
  cd LabHorizon
250
  ```
251