100+ datasets found
  1. Big Cats Images Dataset

    • kaggle.com
    Updated Aug 4, 2023
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Cyborg (2023). Big Cats Images Dataset [Dataset]. https://www.kaggle.com/datasets/crownedhead06/big-cats-images-dataset
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Dataset updated
    Aug 4, 2023
    Dataset provided by
    Kagglehttp://kaggle.com/
    Authors
    Cyborg
    License

    Open Database License (ODbL) v1.0https://www.opendatacommons.org/licenses/odbl/1.0/
    License information was derived automatically

    Description

    Humans have long struggled to discern between these majestic big cats species, and now we invite data scientists, researchers, and enthusiasts to unleash the power of artificial intelligence. Your mission is to craft and fine-tune models that transcend human perception, differentiating between diverse big cat species with unrivaled accuracy.

    Our meticulously curated dataset lays the foundation for this remarkable undertaking. With images meticulously sourced from various habitats, the dataset forms a comprehensive compendium of big cat diversity. As a participant, you'll harness this trove of data to create models that decipher the intricate features distinguishing lions, tigers, cheetahs, and more. Through your innovative approach and algorithmic prowess, the challenge aims to crown the model that can elegantly navigate the spectrum of big cat species.

  2. P

    CATS Dataset

    • paperswithcode.com
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Wayne Treible; Philip Saponaro; Scott Sorensen; Abhishek Kolagunda; Michael O'Neal; Brian Phelan; Kelly Sherbondy; Chandra Kambhamettu, CATS Dataset [Dataset]. https://paperswithcode.com/dataset/cats
    Explore at:
    Authors
    Wayne Treible; Philip Saponaro; Scott Sorensen; Abhishek Kolagunda; Michael O'Neal; Brian Phelan; Kelly Sherbondy; Chandra Kambhamettu
    Description

    A dataset consisting of stereo thermal, stereo color, and cross-modality image pairs with high accuracy ground truth (< 2mm) generated from a LiDAR. The authors scanned 100 cluttered indoor and 80 outdoor scenes featuring challenging environments and conditions. CATS contains approximately 1400 images of pedestrians, vehicles, electronics, and other thermally interesting objects in different environmental conditions, including nighttime, daytime, and foggy scenes.

  3. R

    Cats Dataset

    • universe.roboflow.com
    zip
    Updated Nov 17, 2022
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Mohamed Traore (2022). Cats Dataset [Dataset]. https://universe.roboflow.com/mohamed-traore-2ekkp/cats-n9b87/dataset/3
    Explore at:
    zipAvailable download formats
    Dataset updated
    Nov 17, 2022
    Dataset authored and provided by
    Mohamed Traore
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Variables measured
    Cats Bounding Boxes
    Description

    About this Dataset

    This dataset was created by exporting the Oxford Pets dataset from Roboflow Universe, generating a version with Modify Classes to drop all of the classes for the labeled dog breeds and consolidating all cat breeds under the label, "cat." The bounding boxes were also modified to incude the entirety of the cats within the images, rather than only their faces/heads.

    https://i.imgur.com/3IEzlCf.png" alt="Annotated image of a cat from the dataset">

    Oxford Pets

    • The Oxford Pets dataset (also known as the "dogs vs cats" dataset) is a collection of images and annotations labeling various breeds of dogs and cats. There are approximately 100 examples of each of the 37 breeds. This dataset contains the object detection portion of the original dataset with bounding boxes around the animals' heads.

    • Origin: This dataset was collected by the Visual Geometry Group (VGG) at the University of Oxford.

  4. h

    DALL-E-Cats

    • huggingface.co
    Updated Sep 7, 2023
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    BirdL Legacy (2023). DALL-E-Cats [Dataset]. https://huggingface.co/datasets/TheBirdLegacy/DALL-E-Cats
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Dataset updated
    Sep 7, 2023
    Dataset authored and provided by
    BirdL Legacy
    License

    https://choosealicense.com/licenses/other/https://choosealicense.com/licenses/other/

    Description

    DALL-E-Cats is a dataset meant to produce a synthetic animal dataset. This is a successor to DALL-E-Dogs. DALL-E-Dogs and DALL-E-Cats will be fed into an image classifier to see how it performs. This is under the BirdL-AirL License.

  5. Cat Images Classification Dataset

    • kaggle.com
    Updated Oct 19, 2023
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Satwik Tanwar (2023). Cat Images Classification Dataset [Dataset]. https://www.kaggle.com/datasets/satwiktanwar/cat-images-classification-dataset
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Dataset updated
    Oct 19, 2023
    Dataset provided by
    Kagglehttp://kaggle.com/
    Authors
    Satwik Tanwar
    License

    Apache License, v2.0https://www.apache.org/licenses/LICENSE-2.0
    License information was derived automatically

    Description

    The dataset contains two files in h5 format: 1. test_catvnoncat.h5: It contains 50 test examples of cat and non-cat images 2. train_catvnoncat.h5: It contains 209 train examples of cat and non-cat images

    The dataset contains images of size 64x64. The task is to classify an image as a cat (1) or not a cat (0). I am going to publish a series of notebooks for this dataset that would demonstrate neural networks from very basic level. Each notebook will build upon the previous one. Stay tuned to learn neural networks with the help of those notebooks!

    You can use the below code snippet to load and visualize the dataset. ```python import numpy as np import matplotlib.pyplot as plt import h5py import os

    for dirname, _, filenames in os.walk('/kaggle/input'): for filename in filenames: print(os.path.join(dirname, filename))

    def load_data(): train_dataset = h5py.File('/kaggle/input/cat-images-classification-dataset/train_catvnoncat.h5', "r") train_set_x_orig = np.array(train_dataset["train_set_x"][:]) # your train set features train_set_y_orig = np.array(train_dataset["train_set_y"][:]) # your train set labels

    test_dataset = h5py.File('/kaggle/input/cat-images-classification-dataset/test_catvnoncat.h5', "r")
    test_set_x_orig = np.array(test_dataset["test_set_x"][:]) # your test set features
    test_set_y_orig = np.array(test_dataset["test_set_y"][:]) # your test set labels
    
    classes = np.array(test_dataset["list_classes"][:]) # the list of classes
    
    train_set_y_orig = train_set_y_orig.reshape((1, train_set_y_orig.shape[0]))
    test_set_y_orig = test_set_y_orig.reshape((1, test_set_y_orig.shape[0]))
    
    return train_set_x_orig, train_set_y_orig, test_set_x_orig, test_set_y_orig, classes
    

    load data

    train_x_orig, train_y, test_x_orig, test_y, classes = load_data()

    visualize an example image

    index = 10 plt.imshow(train_x_orig[index]) print ("y = " + str(train_y[0,index]) + ". It's a " + classes[train_y[0,index]].decode("utf-8") + " picture.") ```

  6. P

    Cats and Dogs Dataset

    • paperswithcode.com
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Cats and Dogs Dataset [Dataset]. https://paperswithcode.com/dataset/cats-vs-dogs
    Explore at:
    Description

    A large set of images of cats and dogs.

    Homepage: https://www.microsoft.com/en-us/download/details.aspx?id=54765

    Source code: tfds.image_classification.CatsVsDogs

    Versions:

    4.0.0 (default): New split API (https://tensorflow.org/datasets/splits) Download size: 786.68 MiB

    Source: https://www.tensorflow.org/datasets/catalog/cats_vs_dogs

  7. R

    Coco 2017 Cats Dataset

    • universe.roboflow.com
    zip
    Updated Jul 13, 2023
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Catman (2023). Coco 2017 Cats Dataset [Dataset]. https://universe.roboflow.com/catman/coco-2017-cats-dataset
    Explore at:
    zipAvailable download formats
    Dataset updated
    Jul 13, 2023
    Dataset authored and provided by
    Catman
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Variables measured
    Cats Bounding Boxes
    Description

    COCO 2017 Cats Dataset

    ## Overview
    
    COCO 2017 Cats Dataset is a dataset for object detection tasks - it contains Cats annotations for 4,111 images.
    
    ## Getting Started
    
    You can download this dataset for use within your own projects, or fork it into a workspace on Roboflow to create your own model.
    
      ## License
    
      This dataset is available under the [CC BY 4.0 license](https://creativecommons.org/licenses/CC BY 4.0).
    
  8. h

    Cat_and_Dog

    • huggingface.co
    Updated Oct 2, 2023
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Dowon Hwang (2023). Cat_and_Dog [Dataset]. https://huggingface.co/datasets/Bingsu/Cat_and_Dog
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Dataset updated
    Oct 2, 2023
    Authors
    Dowon Hwang
    License

    https://choosealicense.com/licenses/cc0-1.0/https://choosealicense.com/licenses/cc0-1.0/

    Description

    Dataset Summary

    A dataset from kaggle with duplicate data removed.

      Data Fields
    

    The data instances have the following fields:

    image: A PIL.Image.Image object containing the image. Note that when accessing the image column: dataset[0]["image"] the image file is automatically decoded. Decoding of a large number of image files might take a significant amount of time. Thus it is important to first query the sample index before the "image" column, i.e. dataset[0]["image"]… See the full description on the dataset page: https://huggingface.co/datasets/Bingsu/Cat_and_Dog.

  9. Z

    Controlled Anomalies Time Series (CATS) Dataset

    • data.niaid.nih.gov
    Updated Jul 11, 2024
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Patrick Fleith (2024). Controlled Anomalies Time Series (CATS) Dataset [Dataset]. https://data.niaid.nih.gov/resources?id=zenodo_7646896
    Explore at:
    Dataset updated
    Jul 11, 2024
    Dataset authored and provided by
    Patrick Fleith
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Description

    The Controlled Anomalies Time Series (CATS) Dataset consists of commands, external stimuli, and telemetry readings of a simulated complex dynamical system with 200 injected anomalies.

    The CATS Dataset exhibits a set of desirable properties that make it very suitable for benchmarking Anomaly Detection Algorithms in Multivariate Time Series [1]:

    Multivariate (17 variables) including sensors reading and control signals. It simulates the operational behaviour of an arbitrary complex system including:

    4 Deliberate Actuations / Control Commands sent by a simulated operator / controller, for instance, commands of an operator to turn ON/OFF some equipment.

    3 Environmental Stimuli / External Forces acting on the system and affecting its behaviour, for instance, the wind affecting the orientation of a large ground antenna.

    10 Telemetry Readings representing the observable states of the complex system by means of sensors, for instance, a position, a temperature, a pressure, a voltage, current, humidity, velocity, acceleration, etc.

    5 million timestamps. Sensors readings are at 1Hz sampling frequency.

    1 million nominal observations (the first 1 million datapoints). This is suitable to start learning the "normal" behaviour.

    4 million observations that include both nominal and anomalous segments. This is suitable to evaluate both semi-supervised approaches (novelty detection) as well as unsupervised approaches (outlier detection).

    200 anomalous segments. One anomalous segment may contain several successive anomalous observations / timestamps. Only the last 4 million observations contain anomalous segments.

    Different types of anomalies to understand what anomaly types can be detected by different approaches. The categories are available in the dataset and in the metadata.

    Fine control over ground truth. As this is a simulated system with deliberate anomaly injection, the start and end time of the anomalous behaviour is known very precisely. In contrast to real world datasets, there is no risk that the ground truth contains mislabelled segments which is often the case for real data.

    Suitable for root cause analysis. In addition to the anomaly category, the time series channel in which the anomaly first developed itself is recorded and made available as part of the metadata. This can be useful to evaluate the performance of algorithm to trace back anomalies to the right root cause channel.

    Affected channels. In addition to the knowledge of the root cause channel in which the anomaly first developed itself, we provide information of channels possibly affected by the anomaly. This can also be useful to evaluate the explainability of anomaly detection systems which may point out to the anomalous channels (root cause and affected).

    Obvious anomalies. The simulated anomalies have been designed to be "easy" to be detected for human eyes (i.e., there are very large spikes or oscillations), hence also detectable for most algorithms. It makes this synthetic dataset useful for screening tasks (i.e., to eliminate algorithms that are not capable to detect those obvious anomalies). However, during our initial experiments, the dataset turned out to be challenging enough even for state-of-the-art anomaly detection approaches, making it suitable also for regular benchmark studies.

    Context provided. Some variables can only be considered anomalous in relation to other behaviours. A typical example consists of a light and switch pair. The light being either on or off is nominal, the same goes for the switch, but having the switch on and the light off shall be considered anomalous. In the CATS dataset, users can choose (or not) to use the available context, and external stimuli, to test the usefulness of the context for detecting anomalies in this simulation.

    Pure signal ideal for robustness-to-noise analysis. The simulated signals are provided without noise: while this may seem unrealistic at first, it is an advantage since users of the dataset can decide to add on top of the provided series any type of noise and choose an amplitude. This makes it well suited to test how sensitive and robust detection algorithms are against various levels of noise.

    No missing data. You can drop whatever data you want to assess the impact of missing values on your detector with respect to a clean baseline.

    Change Log

    Version 2

    Metadata: we include a metadata.csv with information about:

    Anomaly categories

    Root cause channel (signal in which the anomaly is first visible)

    Affected channel (signal in which the anomaly might propagate) through coupled system dynamics

    Removal of anomaly overlaps: version 1 contained anomalies which overlapped with each other resulting in only 190 distinct anomalous segments. Now, there are no more anomaly overlaps.

    Two data files: CSV and parquet for convenience.

    [1] Example Benchmark of Anomaly Detection in Time Series: “Sebastian Schmidl, Phillip Wenig, and Thorsten Papenbrock. Anomaly Detection in Time Series: A Comprehensive Evaluation. PVLDB, 15(9): 1779 - 1797, 2022. doi:10.14778/3538598.3538602”

    About Solenix

    Solenix is an international company providing software engineering, consulting services and software products for the space market. Solenix is a dynamic company that brings innovative technologies and concepts to the aerospace market, keeping up to date with technical advancements and actively promoting spin-in and spin-out technology activities. We combine modern solutions which complement conventional practices. We aspire to achieve maximum customer satisfaction by fostering collaboration, constructivism, and flexibility.

  10. R

    Different Cats Dataset

    • universe.roboflow.com
    zip
    Updated Aug 4, 2023
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    DatasetOD (2023). Different Cats Dataset [Dataset]. https://universe.roboflow.com/datasetod/different-cats
    Explore at:
    zipAvailable download formats
    Dataset updated
    Aug 4, 2023
    Dataset authored and provided by
    DatasetOD
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Variables measured
    Cats Bounding Boxes
    Description

    Different Cats

    ## Overview
    
    Different Cats is a dataset for object detection tasks - it contains Cats annotations for 2,970 images.
    
    ## Getting Started
    
    You can download this dataset for use within your own projects, or fork it into a workspace on Roboflow to create your own model.
    
      ## License
    
      This dataset is available under the [CC BY 4.0 license](https://creativecommons.org/licenses/CC BY 4.0).
    
  11. Dogs Vs Cats Dataset

    • kaggle.com
    Updated Oct 12, 2024
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Sarim-Javed (2024). Dogs Vs Cats Dataset [Dataset]. https://www.kaggle.com/datasets/sarimr/dogs-vs-cats-dataset
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Dataset updated
    Oct 12, 2024
    Dataset provided by
    Kagglehttp://kaggle.com/
    Authors
    Sarim-Javed
    License

    MIT Licensehttps://opensource.org/licenses/MIT
    License information was derived automatically

    Description

    Dataset

    This dataset was created by Sarim Javed

    Released under MIT

    Contents

  12. Number of cats in the U.S. 2000-2017

    • statista.com
    Updated Jan 12, 2024
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Statista (2024). Number of cats in the U.S. 2000-2017 [Dataset]. https://www.statista.com/statistics/198102/cats-in-the-united-states-since-2000/
    Explore at:
    Dataset updated
    Jan 12, 2024
    Dataset authored and provided by
    Statistahttp://statista.com/
    Area covered
    United States
    Description

    According to a national pet owners survey, there was a total of approximately 95.6 million cats living in households in the United States in 2017. In the same year, some 68 percent of all U.S. households owned at least one pet.

    Increasing pet expenditure

    Whilst the number of households owning cats, and pets in general, has remained relatively consistent over the last few years, pet industry expenditure has steadily grown. Consumers are expected to spend a record breaking 75.38 billion U.S. dollars on their pets in 2019. The majority of pet market revenue comes from food sales, followed by veterinary care costs.

    Shopping location preferences

    When it comes to shopping locations, most consumers still purchase their pet products in physical retail stores. However, the number of consumers buying pet products online is on the rise. Dry cat food was the number one pet product bought online by cat owners in the United States in 2018.

  13. cats dataset

    • kaggle.com
    Updated Jan 5, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    ZhLK (2025). cats dataset [Dataset]. https://www.kaggle.com/datasets/nagisakoichi/cats-dataset/code
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Dataset updated
    Jan 5, 2025
    Dataset provided by
    Kagglehttp://kaggle.com/
    Authors
    ZhLK
    Description

    Dataset

    This dataset was created by ZhLK

    Contents

    cat dataset used for AIHW5 diffusion model.

  14. w

    Cats per square kilometre- lower 95th percentile

    • data.wu.ac.at
    • environment.data.gov.uk
    • +1more
    csv
    Updated May 18, 2018
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Animal and Plant Health Agency (2018). Cats per square kilometre- lower 95th percentile [Dataset]. https://data.wu.ac.at/odso/data_gov_uk/YTE5ZDExMWEtZmE5ZS00MThlLTgzZTYtMWI1ZGU3M2ZlYTdk
    Explore at:
    csvAvailable download formats
    Dataset updated
    May 18, 2018
    Dataset provided by
    Animal and Plant Health Agency
    License

    Open Government Licence 3.0http://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/
    License information was derived automatically

    Area covered
    f7d4d36244bee61350a1e25d3fa48fee569a449d
    Description

    This dataset is a modelled dataset, describing a lower estimate of cats per square kilometre across GB. The figures are aligned to the British national grid, with a population estimate provided for each 1km square. These data were generated as part of the delivery of commissioned research. The data contained within this dataset are modelled figures, based on lower 95th percentile national estimates for pet population, and available information on Veterinary activity across GB. The data are accurate as of 01/01/2015. The data provided are summarised to the 1km level. Further information on this research is available in a research publication by James Aegerter, David Fouracre & Graham C. Smith, discussing the structure and density of pet cat and dog populations across Great Britain. Attribution statement:

  15. Number of cats in Turkey 2012-2023

    • statista.com
    Updated Jul 23, 2024
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Statista (2024). Number of cats in Turkey 2012-2023 [Dataset]. https://www.statista.com/statistics/516039/cat-population-europe-turkey/
    Explore at:
    Dataset updated
    Jul 23, 2024
    Dataset authored and provided by
    Statistahttp://statista.com/
    Area covered
    Türkiye
    Description

    The estimated number of cats owned by households in Turkey constantly increased in the observed years from 2012 to 2023. The cat population in Turkey peaked at over 4.7 million in 2023.

  16. R

    Classification Dogs And Cats Dataset

    • universe.roboflow.com
    zip
    Updated Mar 5, 2024
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    toan (2024). Classification Dogs And Cats Dataset [Dataset]. https://universe.roboflow.com/toan-qvdgb/classification-dogs-and-cats
    Explore at:
    zipAvailable download formats
    Dataset updated
    Mar 5, 2024
    Dataset authored and provided by
    toan
    License

    Attribution 4.0 (CC BY 4.0)https://creativecommons.org/licenses/by/4.0/
    License information was derived automatically

    Variables measured
    DAP
    Description

    Classification Dogs And Cats

    ## Overview
    
    Classification Dogs And Cats is a dataset for classification tasks - it contains DAP annotations for 697 images.
    
    ## Getting Started
    
    You can download this dataset for use within your own projects, or fork it into a workspace on Roboflow to create your own model.
    
      ## License
    
      This dataset is available under the [CC BY 4.0 license](https://creativecommons.org/licenses/CC BY 4.0).
    
  17. h

    ascii-cats

    • huggingface.co
    Updated Jun 8, 2025
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Ishmeet Singh Nagi (2025). ascii-cats [Dataset]. https://huggingface.co/datasets/Ishmeet153/ascii-cats
    Explore at:
    Dataset updated
    Jun 8, 2025
    Authors
    Ishmeet Singh Nagi
    Description

    Ishmeet153/ascii-cats dataset hosted on Hugging Face and contributed by the HF Datasets community

  18. p

    Licensed Dogs and Cats - Dataset - CKAN

    • ckan0.cf.opendata.inter.prod-toronto.ca
    Updated Dec 6, 2024
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    (2024). Licensed Dogs and Cats - Dataset - CKAN [Dataset]. https://ckan0.cf.opendata.inter.prod-toronto.ca/dataset/licensed-dogs-and-cats
    Explore at:
    Dataset updated
    Dec 6, 2024
    Description

    The reports include data on licensed dogs and cats residing in Toronto after year 2023, including primary breed, Forward Sortation Area (FSA), and year of licensing. For data before 2023, please visit: Licensed Dog and Cat Names: https://open.toronto.ca/dataset/licensed-dog-and-cat-names/ Licensed Dogs and Cats Reports: https://open.toronto.ca/dataset/licensed-dogs-and-cats-reports/

  19. Number of cats in Norway 2010-2023

    • statista.com
    Updated Jan 9, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Statista (2025). Number of cats in Norway 2010-2023 [Dataset]. https://www.statista.com/statistics/516009/cat-population-europe-norway/
    Explore at:
    Dataset updated
    Jan 9, 2025
    Dataset authored and provided by
    Statistahttp://statista.com/
    Area covered
    Norway
    Description

    This statistic presents the estimated number of cats owned by households in Norway in selected years from 2010 to 2023. The cat population in Norway was measured at approximately 720,000 in 2023.

  20. CATS-ISS Level 1B Day Mode 7.1 Version 3-00 - Dataset - NASA Open Data...

    • data.nasa.gov
    • data.staging.idas-ds1.appdat.jsc.nasa.gov
    Updated Apr 1, 2025
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    data.nasa.gov (2025). CATS-ISS Level 1B Day Mode 7.1 Version 3-00 - Dataset - NASA Open Data Portal [Dataset]. https://data.nasa.gov/dataset/cats-iss-level-1b-day-mode-7-1-version-3-00-40cc0
    Explore at:
    Dataset updated
    Apr 1, 2025
    Dataset provided by
    NASAhttp://nasa.gov/
    Description

    CATS-ISS_L1B_D-M7.1-V3-00 is the Cloud-Aerosol Transport System (CATS) International Space Station (ISS) Level 1B Day Mode 7.1 Version 3-00 data product. The collection spans from February 10, 2015 through March 21, 2015. CATS, which was launched on January 10, 2015, was a lidar remote sensing instrument that provided range-resolved profile measurements of atmospheric aerosols and clouds from the ISS. CATS was intended to operate on-orbit for up to three years. CATS provides vertical profiles at three wavelengths, orbiting between ~230 and ~270 miles above the Earth's surface at a 51-degree inclination with nearly a three-day repeat cycle. For the first time, scientists were able to study diurnal (day-to-night) changes in cloud and aerosol effects from space by observing the same spot on Earth at different times each day. Level 1B data have been calibrated and annotated with ancillary meteorological data and processed to sensor units.

Share
FacebookFacebook
TwitterTwitter
Email
Click to copy link
Link copied
Close
Cite
Cyborg (2023). Big Cats Images Dataset [Dataset]. https://www.kaggle.com/datasets/crownedhead06/big-cats-images-dataset
Organization logo

Big Cats Images Dataset

Large image classification dataset on top 10 breeds of Big Cats aka Felidae

Explore at:
CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
Dataset updated
Aug 4, 2023
Dataset provided by
Kagglehttp://kaggle.com/
Authors
Cyborg
License

Open Database License (ODbL) v1.0https://www.opendatacommons.org/licenses/odbl/1.0/
License information was derived automatically

Description

Humans have long struggled to discern between these majestic big cats species, and now we invite data scientists, researchers, and enthusiasts to unleash the power of artificial intelligence. Your mission is to craft and fine-tune models that transcend human perception, differentiating between diverse big cat species with unrivaled accuracy.

Our meticulously curated dataset lays the foundation for this remarkable undertaking. With images meticulously sourced from various habitats, the dataset forms a comprehensive compendium of big cat diversity. As a participant, you'll harness this trove of data to create models that decipher the intricate features distinguishing lions, tigers, cheetahs, and more. Through your innovative approach and algorithmic prowess, the challenge aims to crown the model that can elegantly navigate the spectrum of big cat species.

Search
Clear search
Close search
Google apps
Main menu