SBD99/my-ai-blindspots-assignment
Technical Challenge: Blind Spots of Frontier Models 1. Tested Model Model Name: SmolLM2-135M Model Link: HuggingFaceTB/SmolLM2-135M Parameters: 135 Million (Base Model) 2. Loading Methodology The model was loaded using the transformers library in a local VS Code environment with the following configuration: from transformers import AutoModelForCausalLM, AutoTokenizer import torch model_id = "HuggingFaceTB/SmolLM2-135M" tokenizer =… See the full description on the dataset page: https://huggingface.co/datasets/SBD99/my-ai-blindspots-assignment.
03
Technical Challenge: Blind Spots of Frontier Models
1. Tested Model
- Model Name: SmolLM2-135M
- Model Link: HuggingFaceTB/SmolLM2-135M
- Parameters: 135 Million (Base Model)
2. Loading Methodology
The model was loaded using the transformers library in a local VS Code environment with the following configuration:
from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
model_id = "HuggingFaceTB/SmolLM2-135M"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id, device_map="auto", torch_dtype="auto")