Metadata-Version: 2.1
Name: tinysets
Version: 0.0.3
Summary: Collection of different datasets
Home-page: https://github.com/yisaienkov/tinysets
Author: Yaroslav Isaienkov
Author-email: oiuygl@gmail.com
License: UNKNOWN
Description: # TinySets
        [![PyPI version](https://badge.fury.io/py/tinysets.svg)](https://badge.fury.io/py/tinysets)
        
        - This project contains different datasets.
        - The main purpose of these sets is to quickly check the performance of
          models and algorithms.
        
        
        ## Table of contents
        - [How to use](#how-to-use)
        - [Installation](#installation)
          - [PyPI](#pypi)
        - [Datasets](#datasets)
          - [LEGO Minifigures Classification](#LEGOMinifiguresClassification)
          - [Ukrainian Descriptions Of Words](#UkrainianDescriptionsOfWords)
        
        
        ## How to use
        
        You can see all available sets and their actual locations using the next code:
        
        ```
        >>> from tinysets import get_all_sets
        >>> get_all_sets()
        {'LEGO Minifigures Classification': ['https://www.kaggle.com/ihelon/lego-minifigures-classification']}'
        ```
        
        ## Installation
        
        ### PyPI
        You can use pip to install evaluations:
        ```
        pip install tinysets
        ```
        Or you can clone and install the latest version of the library from GitHub:
        ```
        pip install -U git+https://github.com/yisaienkov/tinysets
        ```
        
        ## Datasets
        
        ### LEGO Minifigures Classification
        
        ![](https://i.imgur.com/4cPQlEN.jpg)
        
        This dataset contains pictures of various LEGO Minifigures. There are several
        images in different poses and with different environments for each Minifigure in
        the dataset.
        
        Currently, it contains 7 figures (76 images totally) from the LEGO sets
        [Yoda's Hut](https://www.lego.com/en-us/product/yoda-s-hut-75208),
        [Spider Mech vs. Venom](https://www.lego.com/en-us/product/spider-mech-vs-venom-76115).
        
        This dataset is available in [Kaggle Datasets](https://www.kaggle.com/ihelon/lego-minifigures-classification)
        
        ### Ukrainian Descriptions Of Words
        
        ![](https://i.imgur.com/UqXawPb.png)
        
        This dataset contains descriptions of various words in simple terms by different 
        people. It looks like the Alias game when you need to describe the desired word 
        using other words so that the other player guesses your word.
        
        Currently, it contains descriptions from 8 different people for 15 unique words.
        
        This dataset is available in [Kaggle Datasets](https://www.kaggle.com/ihelon/ukrainian-descriptions-of-words)
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: tests
