6 datasets found
  1. Sanity check: Dexscreener FDV and Liquidity aren't found but pool is...

    • dune.com
    Updated May 5, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    enso_finance (2025). Sanity check: Dexscreener FDV and Liquidity aren't found but pool is resolved [Dataset]. https://dune.com/discover/content/relevant?q=author:enso_finance&resource-type=queries
    Explore at:
    Dataset updated
    May 5, 2025
    Dataset provided by
    Enso Labs AG
    Authors
    enso_finance
    License

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

    Description

    Blockchain data query: Sanity check: Dexscreener FDV and Liquidity aren't found but pool is resolved

  2. d

    NFT Trades VeeFriends Sanity Check

    • dune.com
    Updated Oct 1, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    jeremyknowsvf (2025). NFT Trades VeeFriends Sanity Check [Dataset]. https://dune.com/discover/content/trending?q=NFT%20Trades&resource-type=queries
    Explore at:
    Dataset updated
    Oct 1, 2025
    Authors
    jeremyknowsvf
    License

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

    Description

    Blockchain data query: NFT Trades VeeFriends Sanity Check

  3. d

    usdc/cbbtc fee function calls, single day sanity check

    • dune.com
    Updated Aug 21, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    polymorpher (2025). usdc/cbbtc fee function calls, single day sanity check [Dataset]. https://dune.com/discover/content/relevant?q=author:polymorpher&resource-type=queries
    Explore at:
    Dataset updated
    Aug 21, 2025
    Authors
    polymorpher
    License

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

    Description

    Blockchain data query: usdc/cbbtc fee function calls, single day sanity check

  4. d

    aerodrome swap event v. getswapfee calls sanity check

    • dune.com
    Updated Aug 21, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    polymorpher (2025). aerodrome swap event v. getswapfee calls sanity check [Dataset]. https://dune.com/discover/content/relevant?q=author:polymorpher&resource-type=queries
    Explore at:
    Dataset updated
    Aug 21, 2025
    Authors
    polymorpher
    License

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

    Description

    Blockchain data query: aerodrome swap event v. getswapfee calls sanity check

  5. Amazon ML Challenge 2024 Hackathon

    • kaggle.com
    zip
    Updated Sep 15, 2024
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    MD Tahseen Equbal (2024). Amazon ML Challenge 2024 Hackathon [Dataset]. https://www.kaggle.com/datasets/mdtahseenequbal/amazon-ml-challenge-2024-hackathon/code
    Explore at:
    zip(5303932 bytes)Available download formats
    Dataset updated
    Sep 15, 2024
    Authors
    MD Tahseen Equbal
    License

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

    Description

    Problem Statement

    Feature Extraction from Images

    In this hackathon, the goal is to create a machine learning model that extracts entity values from images. This capability is crucial in fields like healthcare, e-commerce, and content moderation, where precise product information is vital. As digital marketplaces expand, many products lack detailed textual descriptions, making it essential to obtain key details directly from images. These images provide important information such as weight, volume, voltage, wattage, dimensions, and many more, which are critical for digital stores.

    Data Description:

    The dataset consists of the following columns: **1. index: **A unique identifier (ID) for the data sample. **2. image_link: **Public URL where the product image is available for download. Example link- https://m.media-amazon.com/images/I/71XfHPR36-L.jpg To download images, use the download_images function from src/utils.py. See sample code in src/test.ipynb.

    3. group_id: Category code of the product. **4. entity_name: **Product entity name. For example, “item_weight”. 5. entity_value: Product entity value. For example, “34 gram”. Note: For test.csv, you will not see the column entity_value as it is the target variable.

    Output Format:

    The output file should be a CSV with 2 columns:

    1. index: The unique identifier (ID) of the data sample. Note that the index should match the test record index. 2. prediction: A string which should have the following format: “x unit” where x is a float number in standard formatting and unit is one of the allowed units (allowed units are mentioned in the Appendix). The two values should be concatenated and have a space between them. For example: “2 gram”, “12.5 centimetre”, “2.56 ounce” are valid. Invalid cases: “2 gms”, “60 ounce/1.7 kilogram”, “2.2e2 kilogram”, etc. Note: Make sure to output a prediction for all indices. If no value is found in the image for any test sample, return an empty string, i.e., “”. If you have less/more number of output samples in the output file as compared to test.csv, your output won’t be evaluated.

    File Descriptions:

    Source Files: 1. src/sanity.py: Sanity checker to ensure that the final output file passes all formatting checks. Note: The script will not check if fewer/more number of predictions are present compared to the test file. See sample code in src/test.ipynb. **2. src/utils.py: **Contains helper functions for downloading images from the image_link. 3. src/constants.py: Contains the allowed units for each entity type. 4. sample_code.py: A sample dummy code that can generate an output file in the given format. Usage of this file is optional.

    Dataset Files:

    1. dataset/train.csv: Training file with labels (entity_value). 2. dataset/test.csv: Test file without output labels (entity_value). Generate predictions using your model/solution on this file's data and format the output file to match sample_test_out.csv (Refer to the "Output Format" section above). 3. dataset/sample_test.csv: Sample test input file. 4. dataset/sample_test_out.csv: Sample outputs for sample_test.csv. The output for test.csv must be formatted in the exact same way. Note: The predictions in the file might not be correct.

    Constraints:

    1. You will be provided with a sample output file and a sanity checker file. Format your output to match the sample output file exactly and pass it through the sanity checker to ensure its validity. Note: If the file does not pass through the sanity checker, it will not be evaluated. You should receive a message like Parsing successful for file: ...csv if the output file is correctly formatted.
    2. You are given the list of allowed units in constants.py and also in the Appendix. Your outputs must be in these units. Predictions using any other units will be considered invalid during validation. ### Evaluation Criteria: Submissions will be evaluated based on the F1 score, which is a standard measure of prediction accuracy for classification and extraction problems. Let GT = Ground truth value for a sample and OUT be the output prediction from the model for a sample. Then we classify the predictions into one of the 4 classes with the following logic:
    3. True Positives: If OUT != "" and GT != "" and OUT == GT
    4. False Positives: If OUT != "" and GT != "" and OUT != GT
    5. False Positives: If OUT != "" and GT == ""
    6. False Negatives: If OUT == "" and GT != ""
    7. True Negatives: If OUT == "" and GT == "" Then, F1 score = 2 * Precision * Recall / (Precision + Recall) where:
    8. Precision = True Positives / (True Positives + False Positives)
    9. Recall = True Positives / (True Positives + False Negatives) Submission File: Upload a test_out.csv file in the portal with the exact same formatting as sample_test_out.csv.
  6. h

    RedPajama-Tiny

    • huggingface.co
    + more versions
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Sylvain Lesage, RedPajama-Tiny [Dataset]. https://huggingface.co/datasets/severo/RedPajama-Tiny
    Explore at:
    CroissantCroissant is a format for machine-learning datasets. Learn more about this at mlcommons.org/croissant.
    Authors
    Sylvain Lesage
    License

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

    Description

    Dataset Card for Dataset Name

      Dataset Summary
    

    This is a tiny version of the RedPajama dataset. It contains 64 samples from each of the 7 sources. This dataset is intended for developing and testing data/training pipeline for loading the full RedPajama dataset or any general HuggingFace dataset. It is very fast to download and easy to examine. You should not use it for training a full model, but you can use it for overfitting test or any other sanity checks.… See the full description on the dataset page: https://huggingface.co/datasets/severo/RedPajama-Tiny.

  7. Not seeing a result you expected?
    Learn how you can add new datasets to our index.

Share
FacebookFacebook
TwitterTwitter
Email
Click to copy link
Link copied
Close
Cite
enso_finance (2025). Sanity check: Dexscreener FDV and Liquidity aren't found but pool is resolved [Dataset]. https://dune.com/discover/content/relevant?q=author:enso_finance&resource-type=queries
Organization logo

Sanity check: Dexscreener FDV and Liquidity aren't found but pool is resolved

Explore at:
Dataset updated
May 5, 2025
Dataset provided by
Enso Labs AG
Authors
enso_finance
License

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

Description

Blockchain data query: Sanity check: Dexscreener FDV and Liquidity aren't found but pool is resolved

Search
Clear search
Close search
Google apps
Main menu