Dataset Viewer
Auto-converted to Parquet Duplicate
Search is not available for this dataset
repo
stringlengths
2
152
file
stringlengths
15
239
code
stringlengths
0
58.4M
file_length
int64
0
58.4M
avg_line_length
float64
0
1.81M
max_line_length
int64
0
12.7M
extension_type
stringclasses
364 values
psutil
psutil-master/CONTRIBUTING.md
Contributing to psutil project ============================== Issues ------ * The issue tracker is for reporting problems or proposing enhancements related to the **program code**. * Please do not open issues **asking for support**. Instead, use the forum at: https://groups.google.com/g/psutil. * Before submittin...
1,681
45.722222
93
md
psutil
psutil-master/appveyor.yml
# Build: 3 (bump this up by 1 to force an appveyor run) os: Visual Studio 2015 # avoid 2 builds when pushing on PRs skip_branch_with_pr: true # avoid build on new GIT tag skip_tags: true matrix: # stop build on first failure fast_finish: true environment: global: # SDK v7.0 MSVC Express 2008's SetEnv.cmd scr...
2,395
27.52381
92
yml
psutil
psutil-master/setup.py
#!/usr/bin/env python3 # Copyright (c) 2009 Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. """Cross-platform lib for process and system monitoring in Python.""" from __future__ import print_function import contextlib impo...
16,521
32.787321
79
py
psutil
psutil-master/.github/FUNDING.yml
# These are supported funding model platforms tidelift: "pypi/psutil" github: giampaolo patreon: # Replace with a single Patreon username open_collective: psutil ko_fi: # Replace with a single Ko-fi username community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry custom: https://www...
392
38.3
91
yml
psutil
psutil-master/.github/PULL_REQUEST_TEMPLATE.md
## Summary * OS: { type-or-version } * Bug fix: { yes/no } * Type: { core, doc, performance, scripts, tests, wheels, new-api } * Fixes: { comma-separated list of issues fixed by this PR, if any } ## Description {{{ A clear explanation of your bugfix or enhancement. Please read the contributing guidelines before su...
396
27.357143
107
md
psutil
psutil-master/.github/no-response.yml
# Configuration for probot-no-response: https://github.com/probot/no-response # Number of days of inactivity before an issue is closed for lack of response daysUntilClose: 14 # Label requiring a response responseRequiredLabel: need-more-info # Comment to post when closing an Issue for lack of response. # Set to `false...
575
51.363636
225
yml
psutil
psutil-master/.github/ISSUE_TEMPLATE/bug.md
--- name: Bug about: Report a bug title: "[OS] title" labels: 'bug' --- ## Summary * OS: { type-or-version } * Architecture: { 64bit, 32bit, ARM, PowerPC, s390 } * Psutil version: { pip3 show psutil } * Python version: { python3 -V } * Type: { core, doc, performance, scripts, tests, wheels, new-api, installation } #...
536
23.409091
126
md
psutil
psutil-master/.github/ISSUE_TEMPLATE/config.yml
blank_issues_enabled: false contact_links: - name: Ask a question url: https://groups.google.com/g/psutil about: Use this to ask for support
151
24.333333
43
yml
psutil
psutil-master/.github/ISSUE_TEMPLATE/enhancement.md
--- name: Enhancement about: Propose an enhancement labels: 'enhancement' title: "[OS] title" --- ## Summary * OS: { type-or-version } * Type: { core, doc, performance, scripts, tests, wheels, new-api } ## Description {{{ A clear explanation of your proposal. Please read the contributing guidelines before submit...
392
18.65
94
md
psutil
psutil-master/.github/workflows/bsd.yml
# Execute tests on *BSD platforms. Does not produce wheels. # Useful URLs: # https://github.com/vmactions/freebsd-vm # https://github.com/vmactions/openbsd-vm # https://github.com/vmactions/netbsd-vm on: [push, pull_request] name: bsd-tests concurrency: group: ${{ github.ref }}-${{ github.workflow }}-${{ github.even...
1,955
27.764706
180
yml
psutil
psutil-master/.github/workflows/build.yml
# Runs CI tests and generates wheels on the following platforms: # # * Linux (py2 and py3) # * macOS (py2 and py3) # * Windows (py3, py2 is done by appveyor) # # Useful URLs: # * https://github.com/pypa/cibuildwheel # * https://github.com/actions/checkout # * https://github.com/actions/setup-python # * https://github.c...
3,742
25.928058
110
yml
psutil
psutil-master/.github/workflows/issues.py
#!/usr/bin/env python3 # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. """ Bot triggered by Github Actions every time a new issue, PR or comment is created. Assign labels, provide replies, closes issues...
9,551
26.527378
78
py
psutil
psutil-master/.github/workflows/issues.yml
# Fired by Github Actions every time an issue, PR or comment is created. name: issues on: issues: types: [opened] pull_request: typed: [opened] issue_comment: types: [created] jobs: build: runs-on: ubuntu-latest steps: # install python - uses: actions/checkout@v3 - name: Install...
680
20.28125
84
yml
psutil
psutil-master/docs/conf.py
# -*- coding: utf-8 -*- # # psutil documentation build configuration file, created by # sphinx-quickstart on Wed Oct 19 21:54:30 2016. # # This file is execfile()d with the current directory set to its # containing dir. # # Note that not all possible configuration values are present in this # autogenerated file. # # Al...
10,839
27.753316
79
py
psutil
psutil-master/docs/_static/css/custom.css
.wy-nav-content { max-width: 100% !important; padding: 15px !important; } .rst-content dl:not(.docutils) { margin: 0px 0px 0px 0px !important; } .data dd { margin-bottom: 0px !important; } .data .descname { border-right:10px !important; } .local-toc li ul li { padding-left: 20px !important; ...
8,199
14.213358
213
css
psutil
psutil-master/psutil/__init__.py
# -*- coding: utf-8 -*- # Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. """psutil is a cross-platform library for retrieving information on running processes and system utilization (CPU, memory, disks, ...
87,870
35.086653
79
py
psutil
psutil-master/psutil/_common.py
# Copyright (c) 2009, Giampaolo Rodola'. All rights reserved. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. """Common objects shared by __init__.py and _ps*.py modules.""" # Note: this module is imported by setup.py so it should not import # psutil or third-part...
29,186
30.149413
81
py
End of preview. Expand in Data Studio

Dataset Card for "AlgorithmicResearchGroup/arxiv_research_code"

Dataset Description

https://huggingface.co/datasets/AlgorithmicResearchGroup/arxiv_research_code

Dataset Summary

ArtifactAI/arxiv_research_code contains over 21.8GB of source code files referenced strictly in ArXiv papers. The dataset serves as a curated dataset for Code LLMs.

How to use it

from datasets import load_dataset

# full dataset (21.8GB of data)
ds = load_dataset("AlgorithmicResearchGroup/arxiv_research_code", split="train")

# dataset streaming (will only download the data as needed)
ds = load_dataset("AlgorithmicResearchGroup/arxiv_research_code", streaming=True, split="train")
for sample in iter(ds): print(sample["code"])

Dataset Structure

Data Instances

Each data instance corresponds to one file. The content of the file is in the code feature, and other features (repo, file, etc.) provide some metadata.

Data Fields

  • repo (string): code repository name.
  • file (string): file path in the repository.
  • code (string): code within the file.
  • file_length: (integer): number of characters in the file.
  • avg_line_length: (float): the average line-length of the file.
  • max_line_length: (integer): the maximum line-length of the file.
  • extension_type: (string): file extension.

Data Splits

The dataset has no splits and all data is loaded as train split by default.

Dataset Creation

Source Data

Initial Data Collection and Normalization

34,099 active GitHub repository names were extracted from ArXiv papers from its inception through July 21st, 2023 totaling 773G of compressed github repositories.

These repositories were then filtered, and the code from each file was extracted into 4.7 million files.

Who are the source language producers?

The source (code) language producers are users of GitHub that created unique repository

Personal and Sensitive Information

The released dataset may contain sensitive information such as emails, IP addresses, and API/ssh keys that have previously been published to public repositories on GitHub.

Additional Information

Dataset Curators

Matthew Kenney, AlgorithmicResearchGroup, matt@algorithmicresearchgroup.com

Citation Information

@misc{arxiv_research_code,
    title={arxiv_research_code},
    author={Matthew Kenney},
    year={2023}
}
Downloads last month
90