YAML Metadata Warning:empty or missing yaml metadata in repo card

Check out the documentation for more information.

Inference Execution Guide

This guide explains how to perform inference using Hugging Face models (llm-jp/llm-jp-3-13b + tajimataso/llm-jp-3-13b-finetune_1216) on input data (elyza-tasks-100-TV_0.jsonl) and output the results to a file named {adapter_id}-outputs.jsonl.

Prerequisites

  • Python environment (e.g., Google Colab)
  • Hugging Face access token (HF_TOKEN)

Setup

Install the required libraries:

!pip install -U bitsandbytes
!pip install -U transformers
!pip install -U accelerate
!pip install -U datasets
!pip install -U pef
!pip install ipywidgets --upgrade

Verify that you have your Hugging Face token. Here's an example using userdata in Google Colab (modify according to your environment):

from google.colab import userdata
HF_TOKEN = userdata.get('HF_TOKEN')

Loading Model and Tokenizer

import torch
from transformers import (
    AutoModelForCausalLM,
    AutoTokenizer,
    BitsAndBytesConfig,
)
from peft import PeftModel
import json
from tqdm import tqdm
import re

model_id = "llm-jp/llm-jp-3-13b"
adapter_id = "tajimataso/llm-jp-3-13b-finetune_1216"

# QLoRA configuration
bnb_config = BitsAndBytesConfig(
    load_in_4bit=True,
    bnb_4bit_quant_type="nf4",
    bnb_4bit_compute_dtype=torch.bfloat16,
)

# Load model
model = AutoModelForCausalLM.from_pretrained(
    model_id,
    quantization_config=bnb_config,
    device_map="auto",
    token=HF_TOKEN
)

tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True, token=HF_TOKEN)

# Apply Peft model
model = PeftModel.from_pretrained(model, adapter_id, token=HF_TOKEN)

Preparing Input Data

Load the dataset from ./elyza-tasks-100-TV_0.jsonl:

datasets = []
with open("./elyza-tasks-100-TV_0.jsonl", "r") as f:
    item = ""
    for line in f:
        line = line.strip()
        item += line
        if item.endswith("}"):
            datasets.append(json.loads(item))
            item = ""

Running Inference

results = []
for data in tqdm(datasets):
    input_data = data["input"]

    prompt = f"""### 指示
{input_data}
### 回答
"""

    tokenized_input = tokenizer.encode(prompt, add_special_tokens=False, return_tensors="pt").to(model.device)
    attention_mask = torch.ones_like(tokenized_input)
    with torch.no_grad():
        outputs = model.generate(
            tokenized_input,
            attention_mask=attention_mask,
            max_new_tokens=200,
            do_sample=False,
            repetition_penalty=1.2,
            pad_token_id=tokenizer.eos_token_id
        )[0]

    output = tokenizer.decode(outputs[tokenized_input.size(1):], skip_special_tokens=True)
    
    # Save results
    results.append({
        "input": input_data,
        "output": output
    })

Saving Output

Save the results to a JSONL file named based on the adapter_id:

jsonl_id = re.sub(".*/", "", adapter_id)
with open(f"./{jsonl_id}-outputs.jsonl", 'w', encoding='utf-8') as f:
    for result in results:
        json.dump(result, f, ensure_ascii=False)
        f.write('\n')

Following these steps will create a file named {adapter_id}-outputs.jsonl containing the inference results.

Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support