Animals Dataset
This dataset contains information about various animals.
File
animals.jsonl
Columns / Fields
idโ unique identifiernameโ common name of the animalspeciesโ scientific namehabitatโ natural habitatdietโ dietary type
Usage
Load in Python:
import json
animals = []
with open("animals.jsonl", "r") as f:
for line in f:
animals.append(json.loads(line))
print(animals[:5])
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐ Ask for provider support