rehaidib commited on
Commit
aa29aaf
·
verified ·
1 Parent(s): 7d93635

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +24 -0
README.md CHANGED
@@ -106,3 +106,27 @@ Each row corresponds to **one Python function** identified across open-source re
106
  ```python
107
  from datasets import load_dataset
108
  data = load_dataset("ReemAlehaidib/pyfunc-fe", split="train")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
106
  ```python
107
  from datasets import load_dataset
108
  data = load_dataset("ReemAlehaidib/pyfunc-fe", split="train")
109
+ ```
110
+
111
+ or manually:
112
+
113
+ ```python
114
+ import pandas as pd
115
+ df = pd.read_parquet("pyfunc_fe_train.parquet")
116
+ ```
117
+
118
+ ---
119
+ ## Citation
120
+ If you use this dataset, please cite:
121
+
122
+ ``` bibtex
123
+ @dataset{pyfunc_code_features,
124
+ title = {pyfunc_code_features: Python Function-Level AST and Lexical Features Dataset},
125
+ author = {Reem Al-Ehaidib},
126
+ year = {2025},
127
+ month = {11},
128
+ publisher = {Hugging Face Datasets},
129
+ version = {1.0},
130
+ url = {https://huggingface.co/datasets/rehaidib/pyfunc_code_features}
131
+ }
132
+ ```