File size: 2,597 Bytes
201c16d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
{
"@context": {
"ml": "http://mlcommons.org/croissant/",
"schema": "https://schema.org/",
"sc": "https://schema.org/",
"codesense": "https://codesense-bench.github.io/schema/"
},
"@type": "schema:Dataset",
"schema:name": "CodeSense-Bench-block_analysis_python",
"schema:description": "Dataset for block based code reasoning for Python Language",
"schema:license": "CC-BY-4.0",
"schema:url": "https://huggingface.co/datasets/codesense-bench/codesense/blob/main/Task%20Specific%20Datasets/block_analysis_python.jsonl",
"schema:creator": {
"@type": "schema:Organization",
"schema:name": "CodeSense Research Team"
},
"schema:distribution": [
{
"@type": "schema:FileObject",
"schema:contentUrl": "https://huggingface.co/datasets/codesense-bench/codesense/resolve/main/Task%20Specific%20Datasets/block_analysis_python.jsonl",
"schema:encodingFormat": "application/jsonl",
"schema:name": "block_analysis_python",
"schema:sha256": "2f620e1cf8ff6cf70fa2fc4ef67e130c5134a560cfd6aa71aaadc7919d598bd3"
}
],
"recordSet": [
{
"name": "block_analysis_python",
"description": "Annotated samples for block size analysis for Python codes.",
"field": [
{
"name": "Programming Language",
"dataType": "sc:Text",
"description": "Programming language of the Source Code."
},
{
"name": "Source Code",
"dataType": "sc:Text",
"description": "Code snippet used for benchmarking."
},
{
"name": "Selected Statement",
"dataType": "sc:Text",
"description": "Statement selected for block reasoning."
},
{
"name": "Function Input",
"dataType": "sc:StructuredValue",
"description": "Input of Source Code."
},
{
"name": "Variable Values Before Statement",
"dataType": "sc:StructuredValue",
"description": "Variable values before the execution of the statement."
},
{
"name": "Value After Statement Execution",
"dataType": "sc:Text",
"description": "Ground Truth. Contains the value of the statement after execution."
},
{
"name": "Block_Size",
"dataType": "sc:Integer",
"description": "Block Size of the Selected Statement."
},
{
"name": "Project Information",
"dataType": "sc:Text",
"description": "Source Codes project information."
}
]
}
]
} |