Datasets:
Tasks:
Text Generation
Formats:
parquet
Languages:
English
Size:
10K - 100K
ArXiv:
Tags:
code
DOI:
License:
tiginamaria
commited on
Commit
•
cf324f6
1
Parent(s):
bff3956
Update README.md
Browse files
README.md
CHANGED
@@ -470,7 +470,8 @@ This is the data for **Bug Localization** benchmark as part of LCA.
|
|
470 |
for i, repo_zip_path in enumerate(repos):
|
471 |
repo_name = os.path.basename(repo_zip_path).split('.')[0]
|
472 |
repo_path = os.path.join(repos_path, repo_name)
|
473 |
-
|
|
|
474 |
local_repo_zip_path = hf_hub_download(
|
475 |
"JetBrains-Research/lca-bug-localization",
|
476 |
filename=repo_zip_path,
|
@@ -478,13 +479,14 @@ This is the data for **Bug Localization** benchmark as part of LCA.
|
|
478 |
local_dir="path/to/zips"
|
479 |
)
|
480 |
|
481 |
-
# Unzip
|
482 |
with zipfile.ZipFile(local_repo_zip_path, 'r') as zip_ref:
|
483 |
zip_ref.extractall(repo_path)
|
484 |
os.remove(local_repo_zip_path)
|
485 |
```
|
486 |
|
487 |
-
Moreover, all process of data loading and streaming is implemented in [HFDataSource](https://github.com/JetBrains-Research/lca-baselines/blob/main/bug_localization/src/baselines/data_sources/hf_data_source.py) which utilize Hugging Face data usage in
|
|
|
488 |
|
489 |
## Dataset Structure
|
490 |
|
@@ -516,9 +518,16 @@ Each example has the following fields:
|
|
516 |
| `kt_changed_files_count` | Number of changed `.kt` files. |
|
517 |
| `py_changed_files_count` | Number of changed `.py` files. |
|
518 |
| `code_changed_files_count` | Number of changed `.java`, `.kt` or `.py` files. |
|
|
|
|
|
|
|
|
|
519 |
| `pull_create_at` | Data of pull request creation in format yyyy-mm-ddThh:mm:ssZ. |
|
520 |
-
| `
|
|
|
|
|
|
|
521 |
|
522 |
### Repos data
|
523 |
|
524 |
-
TODO: describe repos data as `.
|
|
|
470 |
for i, repo_zip_path in enumerate(repos):
|
471 |
repo_name = os.path.basename(repo_zip_path).split('.')[0]
|
472 |
repo_path = os.path.join(repos_path, repo_name)
|
473 |
+
|
474 |
+
# Load repo zip
|
475 |
local_repo_zip_path = hf_hub_download(
|
476 |
"JetBrains-Research/lca-bug-localization",
|
477 |
filename=repo_zip_path,
|
|
|
479 |
local_dir="path/to/zips"
|
480 |
)
|
481 |
|
482 |
+
# Unzip repo
|
483 |
with zipfile.ZipFile(local_repo_zip_path, 'r') as zip_ref:
|
484 |
zip_ref.extractall(repo_path)
|
485 |
os.remove(local_repo_zip_path)
|
486 |
```
|
487 |
|
488 |
+
Moreover, all process of data loading and streaming is implemented in [HFDataSource](https://github.com/JetBrains-Research/lca-baselines/blob/main/bug_localization/src/baselines/data_sources/hf_data_source.py) which utilize Hugging Face data usage in benchmark infrastructure.
|
489 |
+
We recommend using it as besides repository cloning process, it returns the state of the repository where bug is reproducable, by extraction repository content for the moment of the base commit sha of fixing pull request.
|
490 |
|
491 |
## Dataset Structure
|
492 |
|
|
|
518 |
| `kt_changed_files_count` | Number of changed `.kt` files. |
|
519 |
| `py_changed_files_count` | Number of changed `.py` files. |
|
520 |
| `code_changed_files_count` | Number of changed `.java`, `.kt` or `.py` files. |
|
521 |
+
| `issue_tokens_count`* | Number of tokens* in issue body (separated by \\n). |
|
522 |
+
| `issue_lines_count`* | Number of text lines in issue body (separated by \\n). |
|
523 |
+
| `issue_links_count` | Number of links (\[...\](...)) presented in issue body. |
|
524 |
+
| `issue_code_blocks_count` | Number of code blocks (\`\`\`...\`\`\`) presented in issue body. |
|
525 |
| `pull_create_at` | Data of pull request creation in format yyyy-mm-ddThh:mm:ssZ. |
|
526 |
+
| `repo_stars` | Number of repo stars. |
|
527 |
+
| `repo_language` | Main programming language used in the repository. |
|
528 |
+
| `repo_languages` | All programming languages used in the repository. |
|
529 |
+
| `repo_license` | Licenses assigned to the repository. |
|
530 |
|
531 |
### Repos data
|
532 |
|
533 |
+
TODO: describe repos data as `.zip` archives with list of repos metadata
|