File size: 957 Bytes
123cdfa
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
28
29
30
31
32
33
34
# Deploy tabBench to Hugging Face Spaces

This Space is configured to appear under `google/tabfm-1.0.0-pytorch` because `README.md` includes:

```yaml
models:
  - google/tabfm-1.0.0-pytorch
```

After publishing, Hugging Face may take a short time to re-index the model page's **Spaces using this model** section.

## One-shot upload

Replace `YOUR_USERNAME` with your Hugging Face username or organization.

```bash
hf auth login
hf repo create YOUR_USERNAME/tabBench --type space --space-sdk gradio --exist-ok
hf upload YOUR_USERNAME/tabBench . . --repo-type space \
  --include app.py \
  --include README.md \
  --include requirements.txt \
  --commit-message "Launch tabBench"
```

## Suggested hardware

Start with `cpu-upgrade` for baseline-only runs. For reliable live TabFM benchmarking, use a GPU flavor such as `t4-small` or better:

```bash
hf repo create YOUR_USERNAME/tabBench --type space --space-sdk gradio --flavor t4-small --exist-ok
```