4 datasets found
  1. Fantasy RPG Game with Gemini

    • kaggle.com
    zip
    Updated Nov 29, 2024
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Yuchen20 (2024). Fantasy RPG Game with Gemini [Dataset]. https://www.kaggle.com/datasets/yuchen2066/fantasy-rpg-game-with-gemini
    Explore at:
    zip(164522 bytes)Available download formats
    Dataset updated
    Nov 29, 2024
    Authors
    Yuchen20
    License

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

    Description

    The dataset includes the Fantasy RPG context.txt file, which is utilized in the notebook Fantasy RPG Game with Gemini: Ultimate Tutorial as the foundational game context for a Fantasy RPG text adventure. This context can be uploaded to Gemini using its context caching feature.

    The notebook demonstrates how to generate consistent and expanded game contexts, showcasing the method previously used to create the original Fantasy RPG context.txt. The newly generated game context is stored in separate text files, which are subsequently concatenated to form the updated Fantasy RPG context new.txt. This updated file, exceeding 100,000 tokens, meets the token-length requirements and is uploaded to Gemini for context caching, allowing users or players to interact with the enhanced game world.

  2. injection-molding-QA

    • kaggle.com
    • huggingface.co
    zip
    Updated Apr 2, 2024
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Mustafa Keser (2024). injection-molding-QA [Dataset]. https://www.kaggle.com/datasets/mustafakeser4/injection-molding-qa/data
    Explore at:
    zip(2998736 bytes)Available download formats
    Dataset updated
    Apr 2, 2024
    Authors
    Mustafa Keser
    License

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

    Description

    injection-molding-QA

    Description

    This dataset contains questions and answers related to injection molding, focusing on topics such as 'Materials', 'Techniques', 'Machinery', 'Troubleshooting', 'Safety','Design','Maintenance','Manufacturing','Development','R&D'. The dataset is provided in CSV format with two columns: Questions and Answers.

    Usage

    Researchers, practitioners, and enthusiasts in the field of injection molding can utilize this dataset for tasks such as:

    • Natural Language Processing (NLP) tasks such as question answering, text generation, and summarization.
    • Training and evaluation of machine learning models for understanding and generating responses related to injection molding.

    Example pandas

    import pandas as pd
    
    # Load the dataset
    dataset = pd.read_csv('injection_molds_dataset.csv')
    
    # Display the first few rows
    print(dataset. Head())
    

    Example datasets

    from datasets import load_dataset
    
    # Load the dataset
    dataset = load_dataset("mustafakeser/injection-molding-QA")
    
    # Display dataset info
    print(dataset)
    
    # Accessing the first few examples
    print(dataset['train'][:5])
    #or 
    dataset['train'].to_pandas()
    
    

    Columns

    1. Questions: Contains questions related to injection molding.
    2. Answers: Provides detailed answers to the corresponding questions.

    Citation

    If you use this dataset in your work, please consider citing it as:

    @misc{injectionmold_dataset,
     author = {Your Name},
     title = {Injection Molds Dataset},
     year = {2024},
     publisher = {Hugging Face},
     journal = {Hugging Face Datasets},
     howpublished = {\url{link to the dataset}},
    }
    

    Huggingface

    https://huggingface.co/datasets/mustafakeser/injection-molding-QA mustafakeser/injection-molding-QA

    Notes

    This dataset curated with gemini-1.0-pro

    license: apache-2.0

  3. Training data for 'Exome sequencing data analysis' tutorial (Galaxy Training...

    • zenodo.org
    bin
    Updated Aug 4, 2022
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Wolfgang Maier; Wolfgang Maier (2022). Training data for 'Exome sequencing data analysis' tutorial (Galaxy Training Material) [Dataset]. http://doi.org/10.5281/zenodo.3054169
    Explore at:
    binAvailable download formats
    Dataset updated
    Aug 4, 2022
    Dataset provided by
    Zenodohttp://zenodo.org/
    Authors
    Wolfgang Maier; Wolfgang Maier
    License

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

    Description

    The data used in this tutorial are a subset of the data published previously in Training material for the course "Exome analysis with GALAXY". Credit for uploading the original data goes to Paolo Uva and Gianmauro Cuccuru!

    Specifically, you may need the following datasets for following the tutorial:

    Raw sequencing reads

    Premapped sequencing reads

    Reference sequence (human chromosome 8)

    If you would just like to play with GEMINI rather than work through the full tutorial, you'll find below a prebuilt GEMINI database (for GEMINI version 0.20.1) for the family trio. You can start exploring this database without having to run GEMINI load and, in fact, without having to install GEMINI's bundled annotation data.

  4. Enterprise GenAI Adoption & Workforce Impact Data

    • kaggle.com
    zip
    Updated Jun 12, 2025
    Share
    FacebookFacebook
    TwitterTwitter
    Email
    Click to copy link
    Link copied
    Close
    Cite
    Rishi (2025). Enterprise GenAI Adoption & Workforce Impact Data [Dataset]. https://www.kaggle.com/datasets/tfisthis/enterprise-genai-adoption-and-workforce-impact-data/discussion?sort=undefined
    Explore at:
    zip(3081470 bytes)Available download formats
    Dataset updated
    Jun 12, 2025
    Authors
    Rishi
    License

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

    Description

    Enterprise GenAI Adoption & Workforce Impact Dataset (100K+ Rows)

    This dataset originates from a multi-year enterprise survey conducted across industries and countries. It focuses on the organizational effects of adopting Generative AI tools such as ChatGPT, Claude, Gemini, Mixtral, LLaMA, and Groq. The dataset captures detailed metrics on job role creation, workforce transformation, productivity changes, and employee sentiment.

    Data Schema

    columns = [
      "Company Name",           # Anonymized name
      "Industry",             # Sector (e.g., Finance, Healthcare)
      "Country",              # Country of operation
      "GenAI Tool",            # GenAI platform used
      "Adoption Year",           # Year of initial deployment (2022–2024)
      "Number of Employees Impacted",   # Affected staff count
      "New Roles Created",        # Number of AI-driven job roles introduced
      "Training Hours Provided",     # Upskilling time investment
      "Productivity Change (%)",     # % shift in reported productivity
      "Employee Sentiment"        # Textual feedback from employees
    ]
    

    Load the Dataset

    import pandas as pd
    
    df = pd.read_csv("Large_Enterprise_GenAI_Adoption_Impact.csv")
    df.shape
    

    Basic Exploration

    df.head(10)
    df.describe()
    df["GenAI Tool"].value_counts()
    df["Industry"].unique()
    

    Filter Examples

    Filter by Year and Country

    df[(df["Adoption Year"] == 2023) & (df["Country"] == "India")]
    

    Get Top 5 Industries by Productivity Gain

    df.groupby("Industry")["Productivity Change (%)"].mean().sort_values(ascending=False).head()
    

    Text Analysis on Employee Sentiment

    Word Frequency Analysis

    from collections import Counter
    import re
    
    text = " ".join(df["Employee Sentiment"].dropna().tolist())
    words = re.findall(r'\b\w+\b', text.lower())
    common_words = Counter(words).most_common(20)
    print(common_words)
    

    Sentiment Length Distribution

    df["Sentiment Length"] = df["Employee Sentiment"].apply(lambda x: len(x.split()))
    df["Sentiment Length"].hist(bins=50)
    

    Group-Based Insights

    Role Creation by Tool

    df.groupby("GenAI Tool")["New Roles Created"].mean().sort_values(ascending=False)
    

    Training Hours by Industry

    df.groupby("Industry")["Training Hours Provided"].mean().sort_values(ascending=False)
    

    Sample Use Cases

    • Evaluate GenAI adoption patterns by sector or region
    • Analyze workforce upskilling initiatives and investments
    • Explore employee reactions to AI integration using NLP
    • Build models to predict productivity impact based on tool, industry, or country
    • Study role creation trends to anticipate future AI-based job market shifts
  5. 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
Yuchen20 (2024). Fantasy RPG Game with Gemini [Dataset]. https://www.kaggle.com/datasets/yuchen2066/fantasy-rpg-game-with-gemini
Organization logo

Fantasy RPG Game with Gemini

Explore at:
zip(164522 bytes)Available download formats
Dataset updated
Nov 29, 2024
Authors
Yuchen20
License

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

Description

The dataset includes the Fantasy RPG context.txt file, which is utilized in the notebook Fantasy RPG Game with Gemini: Ultimate Tutorial as the foundational game context for a Fantasy RPG text adventure. This context can be uploaded to Gemini using its context caching feature.

The notebook demonstrates how to generate consistent and expanded game contexts, showcasing the method previously used to create the original Fantasy RPG context.txt. The newly generated game context is stored in separate text files, which are subsequently concatenated to form the updated Fantasy RPG context new.txt. This updated file, exceeding 100,000 tokens, meets the token-length requirements and is uploaded to Gemini for context caching, allowing users or players to interact with the enhanced game world.

Search
Clear search
Close search
Google apps
Main menu