Modelo
Dados & Embeddings
google/tabfm-1.0.0-pytorch
Modelo de tabular classification — 3 downloads e 82 curtidas no Hugging Face.
Hugging Face · Modelos
·google
·
·↓ 3
·♥ 82
O modelo google/tabfm-1.0.0-pytorch aparece entre os mais comentados do Hugging Face — um termômetro do que a comunidade está realmente usando agora na tarefa de tabular classification.
Ficha técnica
- Tarefa: tabular classification
- Biblioteca:
tabfm - Licença: proprietária / outra
- Downloads: 3 · Curtidas: 82
Como rodar localmente
Carregue com a transformers usando o template de chat:
pip install -U transformers accelerate torch
from transformers import AutoModelForCausalLM, AutoTokenizer
model_id = "google/tabfm-1.0.0-pytorch"
tok = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(
model_id, torch_dtype="auto", device_map="auto"
)
msgs = [{"role": "user", "content": "Explique o que é entropia."}]
inputs = tok.apply_chat_template(
msgs, add_generation_prompt=True, return_tensors="pt"
).to(model.device)
out = model.generate(inputs, max_new_tokens=256)
print(tok.decode(out[0][inputs.shape[-1]:], skip_special_tokens=True))Para servir como API (recomendado para modelos grandes), use o vLLM:
pip install vllm
vllm serve google/tabfm-1.0.0-pytorchTags
tabfm tabular tabular-regression zero-shot in-context-learning pytorch foundation-model tabular-classification
// relacionados
Leia também
Blog
Using Lift to Turn Research PDFs into Structured JSON with Controlled, Schema-Guided Field-Level Evaluation
Blog
SpaceX shows investors a slim AI smartphone prototype powered by xAI technology
Blog
Hidden code in Claude Code secretly flagged Chinese users
Blog