Quadruped Mammals
Donated on 8/24/1992
The file animals.c is a data generator of structured instances representing quadruped animals
Dataset Characteristics
Multivariate, Data-Generator
Subject Area
Biology
Associated Tasks
Classification
Feature Type
Real
# Instances
-
# Features
72
Dataset Information
Additional Information
The file animals.c is a data generator of structured instances representing quadruped animals as used by Gennari, Langley, and Fisher (1989) to evaluate the CLASSIT unsupervised learning algorithm. Instances have 8 components: neck, four legs, torso, head, and tail. Each component is represented as a simplified/generalized cylinder (i.e., inspired by David Marr's work in "Vision: A Computational Investigation Into the Human Representation and Processing of Visual Information", published by Freeman in 1982). Each cylinder is itself described by 9 attributes: location x 3, axis x 3, height, radius, and texture. This code generates instances in one of four classes: dogs, cats, horses, and giraffes. The program generates instances by selecting a class according to a distribution determined by function rand4(). Each class has a prototype; the prototype of the selected class is perturbed according to a distribution described in the code for the four classes (i.e., parameterized means with Guassian distributions are used to represent prototypes and perturbation distributions, where the means are used to distinguish the four classes). From John Gennari: (1990) The only notes I have about it is that I don't use the data format it creates any more. To change this, modify "printpart()". Also, it uses a very rough approximation for a bell-shaped distribution. Currently, I use a much more sophisticated random number generator. To fix this, just replace "bellrand()" with a real bell shaped distribution.
Has Missing Values?
No
Variable Information
A. Eight components per instances/animal: 1. Head 2. Tail 3. 4 legs 4. torso 5. neck B. Nine attributes per component: 1. Location 1 2. Location 2 3. Location 3 4. Axis 1 5. Axis 2 6. Axis 3 7. Height 8. Radius 9. Texture
Dataset Files
File | Size |
---|---|
animals.c | 19.3 KB |
animals.names | 3 KB |
Index | 114 Bytes |
Reviews
There are no reviews for this dataset yet.
pip install ucimlrepo
from ucimlrepo import fetch_ucirepo # fetch dataset quadruped_mammals = fetch_ucirepo(id=86) # data (as pandas dataframes) X = quadruped_mammals.data.features y = quadruped_mammals.data.targets # metadata print(quadruped_mammals.metadata) # variable information print(quadruped_mammals.variables)
Langley, P. & Fisher, D. (1989). Quadruped Mammals [Dataset]. UCI Machine Learning Repository. https://doi.org/10.24432/C5860F.
Creators
P. Langley
D. Fisher
DOI
License
This dataset is licensed under a Creative Commons Attribution 4.0 International (CC BY 4.0) license.
This allows for the sharing and adaptation of the datasets for any purpose, provided that the appropriate credit is given.