How to use MichiganNLP/TAMA-QWen3 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("table-question-answering", model="MichiganNLP/TAMA-QWen3")
# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("MichiganNLP/TAMA-QWen3") model = AutoModelForCausalLM.from_pretrained("MichiganNLP/TAMA-QWen3")
The community tab is the place to discuss and collaborate with the HF community!