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