How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-generation", model="yeonjooooni/Qwen3_8B_WEASEL")
messages = [
    {"role": "user", "content": "Who are you?"},
]
pipe(messages)
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("yeonjooooni/Qwen3_8B_WEASEL")
model = AutoModelForCausalLM.from_pretrained("yeonjooooni/Qwen3_8B_WEASEL", device_map="auto")
messages = [
    {"role": "user", "content": "Who are you?"},
]
inputs = tokenizer.apply_chat_template(
	messages,
	add_generation_prompt=True,
	tokenize=True,
	return_dict=True,
	return_tensors="pt",
).to(model.device)

outputs = model.generate(**inputs, max_new_tokens=40)
print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:]))
Quick Links

Qwen3_8B_WEASEL

Qwen3_8B_WEASEL is a WEASEL fine-tuned variant of Qwen/Qwen3-8B for web-agent style reasoning and action generation.

Model Description

  • Base model: Qwen/Qwen3-8B
  • Format: Hugging Face Transformers + Safetensors
  • Intended domain: web navigation, browser interaction, reasoning-to-action generation

Intended Uses

This model is intended for:

  • Research on language agents for web environments
  • Multi-turn prompting with reasoning and action generation
  • Offline evaluation on browser-task datasets
  • Experiments involving tool-use and UI-grounded planning

Out-of-Scope Uses

This model is not intended for:

  • Production autonomy without action validation
  • Safety-critical or regulated domains
  • Situations requiring guaranteed factuality or correctness
  • Fully trusted execution of generated actions

Training Data

This model was fine-tuned on a WEASEL/AgentTrek-style web-agent dataset with message-based interaction trajectories. The underlying trajectories come from yeonjooooni/agenttrek-WEASEL, while the reasoning traces were newly generated using inference from Qwen3-8B.

Training Objective

The fine-tuning objective emphasizes:

  • following browser-task instructions
  • producing coherent next actions
  • grounding outputs in observed state
  • supporting reasoning-heavy interaction traces

Limitations

  • The model can generate invalid or non-executable actions
  • Reasoning traces may sound confident while being wrong
  • Performance may degrade outside the web-agent data distribution
  • Prompt wording can materially affect output quality
  • Additional runtime checks are recommended before action execution

Usage

Transformers

from transformers import AutoTokenizer, AutoModelForCausalLM

model_id = "yeonjooooni/Qwen3_8B_WEASEL"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id)
Downloads last month
7
Safetensors
Model size
8B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for yeonjooooni/Qwen3_8B_WEASEL

Finetuned
Qwen/Qwen3-8B
Finetuned
(1986)
this model

Collection including yeonjooooni/Qwen3_8B_WEASEL