CoolFace
Datasetpublic

mohsul2000/bloom-1b1-blind-spots

Blind Spots Dataset for bigscience/bloom-1b1 Model Tested: bigscience/bloom-1b1 How I loaded the model in Colab: from transformers import AutoModelForCausalLM, AutoTokenizer model_name = "bigscience/bloom-1b1" tokenizer = AutoTokenizer.from_pretrained(model_name) model = AutoModelForCausalLM.from_pretrained(model_name) # Example input input_text = "The capital of France is" inputs = tokenizer(input_text, return_tensors="pt") outputs = model.generate(**inputs… See the full description on the dataset page: https://huggingface.co/datasets/mohsul2000/bloom-1b1-blind-spots.

sourceHugging Faceupdated 7mo agoView on Hugging Face
0likes1downloads
3 commits on main
d35a3107mo ago

Create blind_spots.json

mohsul2000
5f0d2e67mo ago

Update README.md

mohsul2000
02ea4c97mo ago

initial commit

mohsul2000