├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── example_datasets ├── code_details.yaml ├── document_code.json ├── instruct.json ├── py2dataset │ ├── get_code_graph.py.code_details.yaml │ ├── get_code_graph.py.details.yaml │ ├── get_code_graph.py.entire_code_graph.png │ ├── get_code_graph.py.instruct.json │ ├── get_params.py.code_details.yaml │ ├── get_params.py.details.yaml │ ├── get_params.py.entire_code_graph.png │ ├── get_params.py.instruct.json │ ├── get_python_datasets.py.code_details.yaml │ ├── get_python_datasets.py.details.yaml │ ├── get_python_datasets.py.entire_code_graph.png │ ├── get_python_datasets.py.instruct.json │ ├── get_python_file_details.py.code_details.yaml │ ├── get_python_file_details.py.details.yaml │ ├── get_python_file_details.py.entire_code_graph.png │ ├── get_python_file_details.py.instruct.json │ ├── py2dataset.py.code_details.yaml │ ├── py2dataset.py.details.yaml │ ├── py2dataset.py.entire_code_graph.png │ ├── py2dataset.py.instruct.json │ ├── save_output.py.code_details.yaml │ ├── save_output.py.details.yaml │ ├── save_output.py.entire_code_graph.png │ ├── save_output.py.instruct.json │ ├── setup.py.code_details.yaml │ ├── setup.py.details.yaml │ ├── setup.py.entire_code_graph.png │ └── setup.py.instruct.json └── sharegpt.json ├── get_code_graph.py ├── get_params.py ├── get_python_datasets.py ├── get_python_file_details.py ├── models └── add local gguf models here.txt ├── py2dataset.png ├── py2dataset.py ├── py2dataset.uml ├── py2dataset_model_config.yaml ├── py2dataset_questions.json ├── requirements.txt ├── save_output.py ├── setup.py └── vr.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/__init__.py -------------------------------------------------------------------------------- /example_datasets/code_details.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/example_datasets/code_details.yaml -------------------------------------------------------------------------------- /example_datasets/document_code.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/example_datasets/document_code.json -------------------------------------------------------------------------------- /example_datasets/instruct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/example_datasets/instruct.json -------------------------------------------------------------------------------- /example_datasets/py2dataset/get_code_graph.py.code_details.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/example_datasets/py2dataset/get_code_graph.py.code_details.yaml -------------------------------------------------------------------------------- /example_datasets/py2dataset/get_code_graph.py.details.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/example_datasets/py2dataset/get_code_graph.py.details.yaml -------------------------------------------------------------------------------- /example_datasets/py2dataset/get_code_graph.py.entire_code_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/example_datasets/py2dataset/get_code_graph.py.entire_code_graph.png -------------------------------------------------------------------------------- /example_datasets/py2dataset/get_code_graph.py.instruct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/example_datasets/py2dataset/get_code_graph.py.instruct.json -------------------------------------------------------------------------------- /example_datasets/py2dataset/get_params.py.code_details.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/example_datasets/py2dataset/get_params.py.code_details.yaml -------------------------------------------------------------------------------- /example_datasets/py2dataset/get_params.py.details.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/example_datasets/py2dataset/get_params.py.details.yaml -------------------------------------------------------------------------------- /example_datasets/py2dataset/get_params.py.entire_code_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/example_datasets/py2dataset/get_params.py.entire_code_graph.png -------------------------------------------------------------------------------- /example_datasets/py2dataset/get_params.py.instruct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/example_datasets/py2dataset/get_params.py.instruct.json -------------------------------------------------------------------------------- /example_datasets/py2dataset/get_python_datasets.py.code_details.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/example_datasets/py2dataset/get_python_datasets.py.code_details.yaml -------------------------------------------------------------------------------- /example_datasets/py2dataset/get_python_datasets.py.details.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/example_datasets/py2dataset/get_python_datasets.py.details.yaml -------------------------------------------------------------------------------- /example_datasets/py2dataset/get_python_datasets.py.entire_code_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/example_datasets/py2dataset/get_python_datasets.py.entire_code_graph.png -------------------------------------------------------------------------------- /example_datasets/py2dataset/get_python_datasets.py.instruct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/example_datasets/py2dataset/get_python_datasets.py.instruct.json -------------------------------------------------------------------------------- /example_datasets/py2dataset/get_python_file_details.py.code_details.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/example_datasets/py2dataset/get_python_file_details.py.code_details.yaml -------------------------------------------------------------------------------- /example_datasets/py2dataset/get_python_file_details.py.details.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/example_datasets/py2dataset/get_python_file_details.py.details.yaml -------------------------------------------------------------------------------- /example_datasets/py2dataset/get_python_file_details.py.entire_code_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/example_datasets/py2dataset/get_python_file_details.py.entire_code_graph.png -------------------------------------------------------------------------------- /example_datasets/py2dataset/get_python_file_details.py.instruct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/example_datasets/py2dataset/get_python_file_details.py.instruct.json -------------------------------------------------------------------------------- /example_datasets/py2dataset/py2dataset.py.code_details.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/example_datasets/py2dataset/py2dataset.py.code_details.yaml -------------------------------------------------------------------------------- /example_datasets/py2dataset/py2dataset.py.details.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/example_datasets/py2dataset/py2dataset.py.details.yaml -------------------------------------------------------------------------------- /example_datasets/py2dataset/py2dataset.py.entire_code_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/example_datasets/py2dataset/py2dataset.py.entire_code_graph.png -------------------------------------------------------------------------------- /example_datasets/py2dataset/py2dataset.py.instruct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/example_datasets/py2dataset/py2dataset.py.instruct.json -------------------------------------------------------------------------------- /example_datasets/py2dataset/save_output.py.code_details.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/example_datasets/py2dataset/save_output.py.code_details.yaml -------------------------------------------------------------------------------- /example_datasets/py2dataset/save_output.py.details.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/example_datasets/py2dataset/save_output.py.details.yaml -------------------------------------------------------------------------------- /example_datasets/py2dataset/save_output.py.entire_code_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/example_datasets/py2dataset/save_output.py.entire_code_graph.png -------------------------------------------------------------------------------- /example_datasets/py2dataset/save_output.py.instruct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/example_datasets/py2dataset/save_output.py.instruct.json -------------------------------------------------------------------------------- /example_datasets/py2dataset/setup.py.code_details.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/example_datasets/py2dataset/setup.py.code_details.yaml -------------------------------------------------------------------------------- /example_datasets/py2dataset/setup.py.details.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/example_datasets/py2dataset/setup.py.details.yaml -------------------------------------------------------------------------------- /example_datasets/py2dataset/setup.py.entire_code_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/example_datasets/py2dataset/setup.py.entire_code_graph.png -------------------------------------------------------------------------------- /example_datasets/py2dataset/setup.py.instruct.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/example_datasets/py2dataset/setup.py.instruct.json -------------------------------------------------------------------------------- /example_datasets/sharegpt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/example_datasets/sharegpt.json -------------------------------------------------------------------------------- /get_code_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/get_code_graph.py -------------------------------------------------------------------------------- /get_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/get_params.py -------------------------------------------------------------------------------- /get_python_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/get_python_datasets.py -------------------------------------------------------------------------------- /get_python_file_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/get_python_file_details.py -------------------------------------------------------------------------------- /models/add local gguf models here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /py2dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/py2dataset.png -------------------------------------------------------------------------------- /py2dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/py2dataset.py -------------------------------------------------------------------------------- /py2dataset.uml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/py2dataset.uml -------------------------------------------------------------------------------- /py2dataset_model_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/py2dataset_model_config.yaml -------------------------------------------------------------------------------- /py2dataset_questions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/py2dataset_questions.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | ctransformers[cuda] 2 | networkx 3 | matplotlib 4 | PyYAML 5 | GitPython -------------------------------------------------------------------------------- /save_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/save_output.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/setup.py -------------------------------------------------------------------------------- /vr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffmeloy/py2dataset/HEAD/vr.html --------------------------------------------------------------------------------