Dataset Viewer
Auto-converted to Parquet Duplicate
repo
stringlengths
1
152
file
stringlengths
15
205
code
stringlengths
0
41.6M
file_length
int64
0
41.6M
avg_line_length
float64
0
1.81M
max_line_length
int64
0
12.7M
extension_type
stringclasses
90 values
psutil
psutil-master/psutil/_psutil_common.h
/* * 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. */ #include <Python.h> // ==================================================================== // --- Global vars / constants // ==================...
6,118
33.570621
77
h
psutil
psutil-master/psutil/_psutil_posix.h
/* * 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. */ long psutil_getpagesize(void); int psutil_pid_exists(pid_t pid); void psutil_raise_for_pid(pid_t pid, char *msg);
289
28
73
h
psutil
psutil-master/psutil/arch/aix/common.h
/* * Copyright (c) 2017, Arnon Yaari * All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef __PSUTIL_AIX_COMMON_H__ #define __PSUTIL_AIX_COMMON_H__ #include <sys/core.h> #define PROCINFO_INCR (256) #define PROCSIZE (sizeof...
894
26.96875
73
h
psutil
psutil-master/psutil/arch/aix/ifaddrs.h
/* * Copyright (c) 2017, Arnon Yaari * All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ /*! Based on code from https://lists.samba.org/archive/samba-technical/2009-February/063079.html !*/ #ifndef GENERIC_AIX_IFADDRS_H #define GENE...
767
20.942857
77
h
psutil
psutil-master/psutil/arch/aix/net_connections.h
/* * Copyright (c) 2017, Arnon Yaari * All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #ifndef __NET_CONNECTIONS_H__ #define __NET_CONNECTIONS_H__ #include <Python.h> PyObject* psutil_net_connections(PyObject *self, PyObject *args); ...
356
21.3125
73
h
psutil
psutil-master/psutil/arch/aix/net_kernel_structs.h
/* * Copyright (c) 2017, Arnon Yaari * All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ /* The kernel is always 64 bit but Python is usually compiled as a 32 bit * process. We're reading the kernel memory to get the network connections,...
4,060
35.258929
77
h
psutil
psutil-master/psutil/arch/bsd/cpu.h
/* * Copyright (c) 2009, Jay Loden, 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. */ #include <Python.h> PyObject *psutil_cpu_count_logical(PyObject *self, PyObject *args); PyObject *psutil_cpu_times(PyObject *self, Py...
335
29.545455
73
h
psutil
psutil-master/psutil/arch/bsd/disk.h
/* * Copyright (c) 2009, Jay Loden, 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. */ #include <Python.h> PyObject *psutil_disk_partitions(PyObject *self, PyObject *args);
273
26.4
73
h
psutil
psutil-master/psutil/arch/bsd/net.h
/* * Copyright (c) 2009, Jay Loden, 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. */ #include <Python.h> PyObject *psutil_net_io_counters(PyObject *self, PyObject *args);
273
26.4
73
h
psutil
psutil-master/psutil/arch/bsd/proc.h
/* * Copyright (c) 2009, Jay Loden, 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. */ #include <Python.h> PyObject *psutil_pids(PyObject *self, PyObject *args); PyObject *psutil_proc_environ(PyObject *self, PyObject *ar...
519
36.142857
73
h
psutil
psutil-master/psutil/arch/bsd/sys.h
/* * Copyright (c) 2009, Jay Loden, 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. */ #include <Python.h> PyObject *psutil_boot_time(PyObject *self, PyObject *args); PyObject *psutil_users(PyObject *self, PyObject *args...
323
28.454545
73
h
psutil
psutil-master/psutil/arch/freebsd/cpu.h
/* * Copyright (c) 2009, Jay Loden, 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. */ #include <Python.h> PyObject *psutil_cpu_freq(PyObject* self, PyObject* args); PyObject *psutil_cpu_stats(PyObject* self, PyObject* a...
453
33.923077
73
h
psutil
psutil-master/psutil/arch/freebsd/disk.h
/* * Copyright (c) 2009, Jay Loden, 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. */ #include <Python.h> PyObject *psutil_disk_io_counters(PyObject* self, PyObject* args);
274
26.5
73
h
psutil
psutil-master/psutil/arch/freebsd/mem.h
/* * Copyright (c) 2009, Jay Loden, 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. */ #include <Python.h> PyObject *psutil_swap_mem(PyObject* self, PyObject* args); PyObject *psutil_virtual_mem(PyObject* self, PyObject*...
328
28.909091
73
h
psutil
psutil-master/psutil/arch/freebsd/proc.h
/* * Copyright (c) 2009, Jay Loden, 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. */ #include <Python.h> typedef struct kinfo_proc kinfo_proc; int psutil_get_proc_list(struct kinfo_proc **procList, size_t *procCount);...
1,102
43.12
74
h
psutil
psutil-master/psutil/arch/freebsd/proc_socks.h
/* * 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. */ #include <Python.h> PyObject* psutil_proc_connections(PyObject* self, PyObject* args);
263
25.4
73
h
psutil
psutil-master/psutil/arch/freebsd/sensors.h
/* * Copyright (c) 2009, Jay Loden, 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. */ #include <Python.h> PyObject* psutil_sensors_battery(PyObject* self, PyObject* args); PyObject* psutil_sensors_cpu_temperature(PyObje...
347
30.636364
73
h
psutil
psutil-master/psutil/arch/freebsd/sys_socks.h
/* * 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. */ #include <Python.h> PyObject* psutil_net_connections(PyObject* self, PyObject* args);
265
23.181818
73
h
psutil
psutil-master/psutil/arch/netbsd/cpu.h
/* * Copyright (c) 2009, Giampaolo Rodola', Landry Breuil. * All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #include <Python.h> PyObject *psutil_cpu_stats(PyObject *self, PyObject *args); PyObject *psutil_per_cpu_times(PyObject *self,...
338
27.25
73
h
psutil
psutil-master/psutil/arch/netbsd/disk.h
/* * Copyright (c) 2009, Giampaolo Rodola', Landry Breuil. * All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #include <Python.h> PyObject *psutil_disk_io_counters(PyObject *self, PyObject *args);
281
24.636364
73
h
psutil
psutil-master/psutil/arch/netbsd/mem.h
/* * Copyright (c) 2009, Giampaolo Rodola', Landry Breuil. * All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #include <Python.h> PyObject *psutil_virtual_mem(PyObject *self, PyObject *args); PyObject *psutil_swap_mem(PyObject *self, Py...
335
27
73
h
psutil
psutil-master/psutil/arch/netbsd/proc.h
/* * Copyright (c) 2009, Giampaolo Rodola', Landry Breuil. * All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #include <Python.h> typedef struct kinfo_proc2 kinfo_proc; int psutil_kinfo_proc(pid_t pid, kinfo_proc *proc); struct kinfo_f...
927
37.666667
73
h
psutil
psutil-master/psutil/arch/netbsd/socks.h
/* * Copyright (c) 2009, Giampaolo Rodola'. * Copyright (c) 2015, Ryo ONODERA. * All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ PyObject *psutil_proc_connections(PyObject *, PyObject *); PyObject *psutil_net_connections(PyObject *, Py...
331
29.181818
73
h
psutil
psutil-master/psutil/arch/openbsd/cpu.h
/* * Copyright (c) 2009, Giampaolo Rodola', Landry Breuil. * All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #include <Python.h> PyObject *psutil_cpu_freq(PyObject* self, PyObject* args); PyObject *psutil_cpu_stats(PyObject* self, PyOb...
397
29.615385
73
h
psutil
psutil-master/psutil/arch/openbsd/disk.h
/* * Copyright (c) 2009, Giampaolo Rodola', Landry Breuil. * All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #include <Python.h> PyObject *psutil_disk_io_counters(PyObject* self, PyObject* args);
281
24.636364
73
h
psutil
psutil-master/psutil/arch/openbsd/mem.h
/* * Copyright (c) 2009, Giampaolo Rodola', Landry Breuil. * All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #include <Python.h> PyObject *psutil_virtual_mem(PyObject *self, PyObject *args); PyObject *psutil_swap_mem(PyObject *self, Py...
335
27
73
h
psutil
psutil-master/psutil/arch/openbsd/proc.h
/* * Copyright (c) 2009, Giampaolo Rodola', Landry Breuil. * All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #include <Python.h> typedef struct kinfo_proc kinfo_proc; int psutil_kinfo_proc(pid_t pid, struct kinfo_proc *proc); struct k...
728
33.714286
74
h
psutil
psutil-master/psutil/arch/openbsd/socks.h
/* * 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. */ PyObject *psutil_net_connections(PyObject* self, PyObject* args);
244
26.222222
73
h
psutil
psutil-master/psutil/arch/osx/cpu.h
/* * Copyright (c) 2009, Jay Loden, 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. */ #include <Python.h> PyObject *psutil_cpu_count_cores(PyObject *self, PyObject *args); PyObject *psutil_cpu_count_logical(PyObject *se...
584
38
73
h
psutil
psutil-master/psutil/arch/osx/disk.h
/* * Copyright (c) 2009, Jay Loden, 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. */ #include <Python.h> PyObject *psutil_disk_io_counters(PyObject *self, PyObject *args); PyObject *psutil_disk_partitions(PyObject *sel...
406
32.916667
73
h
psutil
psutil-master/psutil/arch/osx/mem.h
/* * Copyright (c) 2009, Jay Loden, 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. */ #include <Python.h> PyObject *psutil_swap_mem(PyObject *self, PyObject *args); PyObject *psutil_virtual_mem(PyObject *self, PyObject ...
328
28.909091
73
h
psutil
psutil-master/psutil/arch/osx/net.h
/* * Copyright (c) 2009, Jay Loden, 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. */ #include <Python.h> PyObject *psutil_net_io_counters(PyObject *self, PyObject *args);
273
26.4
73
h
psutil
psutil-master/psutil/arch/osx/proc.h
/* * Copyright (c) 2009, Jay Loden, 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. */ #include <Python.h> PyObject *psutil_pids(PyObject *self, PyObject *args); PyObject *psutil_proc_cmdline(PyObject *self, PyObject *ar...
1,035
46.090909
74
h
psutil
psutil-master/psutil/arch/osx/sensors.h
/* * Copyright (c) 2009, Jay Loden, 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. */ #include <Python.h> PyObject *psutil_sensors_battery(PyObject *self, PyObject *args);
273
26.4
73
h
psutil
psutil-master/psutil/arch/osx/sys.h
/* * Copyright (c) 2009, Jay Loden, 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. */ #include <Python.h> PyObject *psutil_boot_time(PyObject *self, PyObject *args); PyObject *psutil_users(PyObject *self, PyObject *args...
323
28.454545
73
h
psutil
psutil-master/psutil/arch/solaris/environ.h
/* * Copyright (c) 2009, Giampaolo Rodola', Oleksii Shevchuk. * All rights reserved. Use of this source code is governed by a BSD-style * license that can be found in the LICENSE file. */ #ifndef PROCESS_AS_UTILS_H #define PROCESS_AS_UTILS_H char ** psutil_read_raw_args(psinfo_t info, const char *procfs_path, siz...
511
24.6
76
h
psutil
psutil-master/psutil/arch/solaris/v10/ifaddrs.h
/* Reference: https://lists.samba.org/archive/samba-technical/2009-February/063079.html */ #ifndef __IFADDRS_H__ #define __IFADDRS_H__ #include <sys/socket.h> #include <net/if.h> #undef ifa_dstaddr #undef ifa_broadaddr #define ifa_broadaddr ifa_dstaddr struct ifaddrs { struct ifaddrs *ifa_next; char ...
567
20.037037
90
h
psutil
psutil-master/psutil/arch/windows/cpu.h
/* * 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. */ #include <Python.h> PyObject *psutil_cpu_count_logical(PyObject *self, PyObject *args); PyObject *psutil_cpu_count_cores(PyObject *self, PyObjec...
573
37.266667
73
h
psutil
psutil-master/psutil/arch/windows/disk.h
/* * Copyright (c) 2009, Jay Loden, 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. */ #include <Python.h> PyObject *psutil_disk_io_counters(PyObject *self, PyObject *args); PyObject *psutil_disk_partitions(PyObject *sel...
466
34.923077
73
h
psutil
psutil-master/psutil/arch/windows/mem.h
/* * Copyright (c) 2009, Jay Loden, 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. */ #include <Python.h> PyObject *psutil_getpagesize(PyObject *self, PyObject *args); PyObject *psutil_virtual_mem(PyObject *self, PyObje...
394
31.916667
73
h
psutil
psutil-master/psutil/arch/windows/net.h
/* * Copyright (c) 2009, Jay Loden, 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. */ #include <Python.h> PyObject *psutil_net_if_addrs(PyObject *self, PyObject *args); PyObject *psutil_net_if_stats(PyObject *self, PyOb...
399
32.333333
73
h
psutil
psutil-master/psutil/arch/windows/ntextapi.h
/* * Copyright (c) 2009, Jay Loden, 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. * Define Windows structs and constants which are considered private. */ #if !defined(__NTEXTAPI_H__) #define __NTEXTAPI_H__ #include <wi...
19,323
26.293785
120
h
psutil
psutil-master/psutil/arch/windows/proc.h
/* * Copyright (c) 2009, Jay Loden, 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. */ #include <Python.h> PyObject *TimeoutExpired; PyObject *TimeoutAbandoned; PyObject *psutil_pid_exists(PyObject *self, PyObject *args...
1,767
49.514286
73
h
psutil
psutil-master/psutil/arch/windows/proc_handles.h
/* * Copyright (c) 2009, Jay Loden, 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. */ #include <Python.h> #include <windows.h> PyObject* psutil_get_open_files(DWORD pid, HANDLE hProcess);
289
25.363636
73
h
psutil
psutil-master/psutil/arch/windows/proc_info.h
/* * Copyright (c) 2009, Jay Loden, 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. */ #include <Python.h> #include <windows.h> #include "ntextapi.h" #define PSUTIL_FIRST_PROCESS(Processes) ( \ (PSYSTEM_PROCESS_INFO...
961
37.48
80
h
psutil
psutil-master/psutil/arch/windows/proc_utils.h
/* * 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. */ DWORD* psutil_get_pids(DWORD *numberOfReturnedPIDs); HANDLE psutil_handle_from_pid(DWORD pid, DWORD dwDesiredAccess); HANDLE psutil_check_phandle...
517
38.846154
77
h
psutil
psutil-master/psutil/arch/windows/security.h
/* * Copyright (c) 2009, Jay Loden, 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. * * Security related functions for Windows platform (Set privileges such as * SeDebug), as well as security helper functions. */ #incl...
365
25.142857
74
h
psutil
psutil-master/psutil/arch/windows/sensors.h
/* * Copyright (c) 2009, Jay Loden, 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. */ #include <Python.h> PyObject *psutil_sensors_battery(PyObject *self, PyObject *args);
273
26.4
73
h
psutil
psutil-master/psutil/arch/windows/services.h
/* * 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. */ #include <Python.h> #include <Winsvc.h> SC_HANDLE psutil_get_service_handle( char service_name, DWORD scm_access, DWORD access); PyObject *p...
734
39.833333
73
h
psutil
psutil-master/psutil/arch/windows/socks.h
/* * Copyright (c) 2009, Giampaolo Rodola', Jeff Tang. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #include <Python.h> PyObject *psutil_net_connections(PyObject *self, PyObject *args);
273
26.4
73
h
psutil
psutil-master/psutil/arch/windows/sys.h
/* * Copyright (c) 2009, Jay Loden, 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. */ #include <Python.h> PyObject *psutil_boot_time(PyObject *self, PyObject *args); PyObject *psutil_users(PyObject *self, PyObject *args...
323
28.454545
73
h
psutil
psutil-master/psutil/arch/windows/wmi.h
/* * 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. */ #include <Python.h> PyObject* psutil_init_loadavg_counter(); PyObject* psutil_get_loadavg();
268
23.454545
73
h
ffhq-features-dataset
ffhq-features-dataset-master/extract_features.sh
mkdir ffhq for i in {00000..69999}; do date; echo "$i"; curl -H "Ocp-Apim-Subscription-Key: <Your-Key-Here>" "<Your-Microsoft-Cognitive-Server-Here>/face/v1.0/detect?returnFaceId=true&returnFaceLandmarks=false&returnFaceAttributes=age,gender,headPose,smile,facialHair,glasses,emotion,hair,makeup,occlusion,accessor...
535
66
426
sh
FIt-SNE
FIt-SNE-master/src/annoylib.h
// Copyright (c) 2013 Spotify AB // // Licensed under the Apache License, Version 2.0 (the "License"); you may not // use this file except in compliance with the License. You may obtain a copy of // the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in w...
40,303
29.303759
143
h
FIt-SNE
FIt-SNE-master/src/kissrandom.h
#ifndef KISSRANDOM_H #define KISSRANDOM_H #if defined(_MSC_VER) && _MSC_VER == 1500 typedef unsigned __int32 uint32_t; typedef unsigned __int64 uint64_t; #else #include <stdint.h> #endif // KISS = "keep it simple, stupid", but high quality random number generator // http://www0.cs.ucl.ac.uk/staff/d.jones/GoodPr...
2,365
21.11215
109
h
FIt-SNE
FIt-SNE-master/src/nbodyfft.cpp
#include "winlibs/stdafx.h" #include "parallel_for.h" #include "time_code.h" #include "nbodyfft.h" void precompute_2d(double x_max, double x_min, double y_max, double y_min, int n_boxes, int n_interpolation_points, kernel_type_2d kernel, double *box_lower_bounds, double *box_upper_bounds, double ...
20,456
43.861842
126
cpp
FIt-SNE
FIt-SNE-master/src/nbodyfft.h
#ifndef NBODYFFT_H #define NBODYFFT_H #ifdef _WIN32 #include "winlibs/fftw3.h" #else #include <fftw3.h> #endif #include <complex> using namespace std; typedef double (*kernel_type)(double, double, double); typedef double (*kernel_type_2d)(double, double, double, double, double); void precompute_2d(double x_max, do...
1,677
44.351351
125
h
FIt-SNE
FIt-SNE-master/src/parallel_for.h
#ifndef PARALLEL_FOR_H #define PARALLEL_FOR_H #include<algorithm> #include <functional> #include <thread> #include <vector> #if defined(_OPENMP) #pragma message "Using OpenMP threading." #define PARALLEL_FOR(nthreads,LOOP_END,O) { \ if (nthreads >1 ) { \ _Pragma("omp parallel num_threads(nthreads)")...
1,222
26.177778
83
h
FIt-SNE
FIt-SNE-master/src/sptree.cpp
/* * * Copyright (c) 2014, Laurens van der Maaten (Delft University of Technology) * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above ...
13,754
33.216418
134
cpp
FIt-SNE
FIt-SNE-master/src/sptree.h
/* * * Copyright (c) 2014, Laurens van der Maaten (Delft University of Technology) * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * 1. Redistributions of source code must retain the above ...
4,413
30.304965
129
h
FIt-SNE
FIt-SNE-master/src/time_code.h
#ifndef TIME_CODE_H #define TIME_CODE_H #include <chrono> #if defined(TIME_CODE) #pragma message "Timing code" #define INITIALIZE_TIME std::chrono::steady_clock::time_point STARTVAR; #define START_TIME \ STARTVAR = std::chrono::stead...
950
44.285714
133
h
End of preview. Expand in Data Studio

Dataset card for ArtifactAI/arxiv_cplusplus_research_code

Dataset Description

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

Dataset Summary

ArtifactAI/arxiv_python_research_code contains over 10.6GB 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 (10.6GB of data)
ds = load_dataset("AlgorithmicResearchGroup/arxiv_cplusplus_research_code", split="train")

# dataset streaming (will only download the data as needed)
ds = load_dataset("AlgorithmicResearchGroup/arxiv_cplusplus_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 of "cpp", "cxx", "cc", "h", "hpp", "hxx" file extension was extracted into 1.4 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_cplusplus_research_code,
    title={arxiv_cplusplus_research_code},
    author={Matthew Kenney},
    year={2023}
}
Downloads last month
51