YAML Metadata Warning: empty or missing yaml metadata in repo card (https://huggingface.co/docs/hub/model-cards#model-card-metadata)

Fine-Tuned LLaMA-3-8B CEFR Model

This is a fine-tuned version of unsloth/llama-3-8b-instruct-bnb-4bit for CEFR-level sentence generation.

  • Base Model: unsloth/llama-3-8b-instruct-bnb-4bit
  • Fine-Tuning: LoRA with SMOTE-balanced dataset
  • Training Details:
    • Dataset: CEFR-level sentences with SMOTE and undersampling for balance
    • LoRA Parameters: r=32, lora_alpha=32, lora_dropout=0.5
    • Training Args: learning_rate=2e-5, batch_size=8, epochs=0.1, cosine scheduler
    • Optimizer: adamw_8bit
    • Early Stopping: Patience=3, threshold=0.01
  • Evaluation Metrics (Exact Matches):
    • CEFR Classifier Accuracy: 0.167
    • Precision (Macro): 0.056
    • Recall (Macro): 0.167
    • F1-Score (Macro): 0.083
  • Evaluation Metrics (Within 卤1 Level):
    • CEFR Classifier Accuracy: 0.333
    • Precision (Macro): 0.167
    • Recall (Macro): 0.333
    • F1-Score (Macro): 0.222
  • Other Metrics:
    • Perplexity: 5.344
    • Diversity (Unique Sentences): 0.100
    • Inference Time (ms): 6161.786
    • Model Size (GB): 4.8
    • Robustness (F1): 0.079
  • Confusion Matrix (Exact Matches):
  • Confusion Matrix (Within 卤1 Level):
  • Per-Class Confusion Metrics (Exact Matches):
    • A1: TP=0, FP=20, FN=10, TN=30
    • A2: TP=10, FP=20, FN=0, TN=30
    • B1: TP=0, FP=10, FN=10, TN=40
    • B2: TP=0, FP=0, FN=10, TN=50
    • C1: TP=0, FP=0, FN=10, TN=50
    • C2: TP=0, FP=0, FN=10, TN=50
  • Per-Class Confusion Metrics (Within 卤1 Level):
    • A1: TP=0, FP=20, FN=10, TN=30
    • A2: TP=10, FP=10, FN=0, TN=40
    • B1: TP=10, FP=10, FN=0, TN=40
    • B2: TP=0, FP=0, FN=10, TN=50
    • C1: TP=0, FP=0, FN=10, TN=50
    • C2: TP=0, FP=0, FN=10, TN=50
  • Usage:
    from transformers import AutoModelForCausalLM, AutoTokenizer
    
    model = AutoModelForCausalLM.from_pretrained("Mr-FineTuner/Test___01_withNewEval_andWithin-1")
    tokenizer = AutoTokenizer.from_pretrained("Mr-FineTuner/Test___01_withNewEval_andWithin-1")
    
    # Example inference
    prompt = "<|user|>Generate a CEFR B1 level sentence.<|end|>"
    inputs = tokenizer(prompt, return_tensors="pt")
    outputs = model.generate(**inputs, max_length=50)
    print(tokenizer.decode(outputs[0], skip_special_tokens=True))
    

Uploaded using huggingface_hub.

Downloads last month
5
Safetensors
Model size
9B params
Tensor type
F32
F16
U8
Inference Providers NEW
This model isn't deployed by any Inference Provider. 馃檵 Ask for provider support