python-gfm 0.1.4__tar.gz → 0.1.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {python_gfm-0.1.4 → python_gfm-0.1.5}/PKG-INFO +1 -1
- {python_gfm-0.1.4 → python_gfm-0.1.5}/pyproject.toml +6 -2
- {python_gfm-0.1.4 → python_gfm-0.1.5}/python_gfm.egg-info/PKG-INFO +1 -1
- {python_gfm-0.1.4 → python_gfm-0.1.5}/python_gfm.egg-info/SOURCES.txt +3 -0
- python_gfm-0.1.5/src/pygfm/__main__.py +6 -0
- python_gfm-0.1.5/src/pygfm/_scripts_bundle.zip +0 -0
- python_gfm-0.1.5/src/pygfm/cli/baselines/mdgpt.py +14 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/cli/script_runner.py +41 -4
- {python_gfm-0.1.4 → python_gfm-0.1.5}/README.md +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/python_gfm.egg-info/dependency_links.txt +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/python_gfm.egg-info/entry_points.txt +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/python_gfm.egg-info/requires.txt +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/python_gfm.egg-info/top_level.txt +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/setup.cfg +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/bim_gfm/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/bim_gfm/ablation.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/bim_gfm/downprompt.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/bim_gfm/preprompt.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/bridge/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/bridge/downprompt.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/bridge/downprompt_graph.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/bridge/preprompt.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/classic_gnn/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/classic_gnn/downprompt.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/classic_gnn/preprompt.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/downprompt.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/downprompt_graph.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/build_instruct_arxiv_ds.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/constants.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/conversation.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/eval/run_graphgpt.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/eval/run_graphgpt_LP.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/eval/run_vicuna.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/model/GraphLlama.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/model/GraphLlama_pl.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/model/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/model/apply_delta.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/model/apply_lora.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/model/builder.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/model/compression.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/model/convert_fp16.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/model/graph_layers/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/model/graph_layers/clip_graph.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/model/graph_layers/graph_transformer.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/model/graph_layers/mpnn.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/model/graph_layers/simple_tokenizer.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/model/make_delta.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/model/model_adapter.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/model/model_registry.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/model/monkey_patch_non_inplace.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/model/utils.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/protocol/openai_api_protocol.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/serve/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/serve/api_provider.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/serve/bard_worker.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/serve/cacheflow_worker.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/serve/cli.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/serve/controller.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/serve/controller_graph.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/serve/gradio_block_arena_anony.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/serve/gradio_block_arena_named.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/serve/gradio_css.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/serve/gradio_patch.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/serve/gradio_web_server.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/serve/gradio_web_server_graph.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/serve/gradio_web_server_multi.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/serve/huggingface_api.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/serve/inference.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/serve/model_worker.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/serve/model_worker_graph.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/serve/monitor/basic_stats.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/serve/monitor/clean_battle_data.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/serve/monitor/elo_analysis.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/serve/monitor/hf_space_leaderboard_app.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/serve/monitor/monitor.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/serve/openai_api_server.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/serve/register_worker.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/serve/test_message.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/serve/test_throughput.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/train/graphchat_trainer.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/train/llama_flash_attn_monkey_patch.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/train/train_graph.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/train/train_light.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/train/train_lora.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/train/train_mem.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/utils.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/preprompt.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/build_instruct_arxiv_ds.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/constants.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/conversation.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/eval/run_graphgpt.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/eval/run_graphgpt_LP.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/eval/run_vicuna.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/model/GraphLlama.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/model/GraphLlama_pl.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/model/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/model/apply_delta.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/model/apply_lora.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/model/builder.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/model/compression.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/model/convert_fp16.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/model/graph_layers/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/model/graph_layers/clip_graph.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/model/graph_layers/graph_transformer.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/model/graph_layers/mpnn.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/model/graph_layers/simple_tokenizer.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/model/make_delta.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/model/model_adapter.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/model/model_registry.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/model/monkey_patch_non_inplace.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/model/utils.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/protocol/openai_api_protocol.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/api_provider.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/bard_worker.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/cacheflow_worker.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/cli.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/controller.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/controller_graph.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/gradio_block_arena_anony.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/gradio_block_arena_named.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/gradio_css.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/gradio_patch.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/gradio_web_server.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/gradio_web_server_graph.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/gradio_web_server_multi.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/huggingface_api.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/inference.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/model_worker.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/model_worker_graph.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/monitor/basic_stats.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/monitor/clean_battle_data.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/monitor/elo_analysis.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/monitor/hf_space_leaderboard_app.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/monitor/monitor.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/openai_api_server.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/register_worker.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/test_message.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/test_throughput.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/train/graphchat_trainer.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/train/llama_flash_attn_monkey_patch.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/train/train_graph.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/train/train_light.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/train/train_lora.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/train/train_mem.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/utils.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphkeeper/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphkeeper/downprompt.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphkeeper/downprompt_graph.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphkeeper/preprompt.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphmore/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphmore/downprompt.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphmore/downprompt_graph.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphmore/preprompt.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphprompt/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphprompt/downprompt.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphprompt/downprompt_graph.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphprompt/preprompt.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphprompt/prompt_layers.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/eval/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/eval/run_icl.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/graph_text/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/graph_text/agent.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/graph_text/conversation.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/graph_text/graph_instruction_dataset.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/graph_text/icl.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/graph_text/llama_flash_attn_monkey_patch.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/graph_text/model.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/graph_text/prompts.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/graph_text/samplers.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/llm/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/llm/deepseek.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/llm/fake_llm.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/llm/gpt.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/llm/llama_icl.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/llm/llm.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/llm/smoke_llm.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/train/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/train/run_sft.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/utils/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/utils/basics/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/utils/basics/cfg_utils.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/utils/basics/iterables.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/utils/basics/logging.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/utils/basics/np_utils.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/utils/basics/os_utils.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/utils/data/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/utils/data/graph_tree.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/utils/data/ppr.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/utils/data/preprocess.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/utils/data/pyg_graph.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/utils/data/textual_graph.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/utils/pkg/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/utils/pkg/dict2xml.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/utils/pkg/distributed.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/utils/pkg/graph_utils.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/utils/pkg/hf_utils.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/utils/project/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/utils/project/exp.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graver/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graver/downprompt.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graver/downprompt_graph.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graver/preprompt.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/hgprompt/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/hgprompt/downprompt.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/hgprompt/preprompt.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/hgprompt/prompt_layers.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/eval/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/eval/eval_pretrain.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/eval/eval_pretrain_logit.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/eval/eval_res.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/fixtures/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/fixtures/smoke_bundle.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/io_utils.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/model/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/model/apply_delta.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/model/builder.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/model/consolidate.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/model/language_model/llaga_llama.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/model/language_model/llaga_mpt.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/model/language_model/llaga_opt.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/model/language_model/mpt/adapt_tokenizer.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/model/language_model/mpt/attention.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/model/language_model/mpt/blocks.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/model/language_model/mpt/configuration_mpt.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/model/language_model/mpt/custom_embedding.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/model/language_model/mpt/flash_attn_triton.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/model/language_model/mpt/hf_prefixlm_converter.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/model/language_model/mpt/meta_init_context.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/model/language_model/mpt/modeling_mpt.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/model/language_model/mpt/norm.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/model/language_model/mpt/param_init_fns.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/model/llaga_arch.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/model/make_delta.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/model/utils.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/paths.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/pyg_dataset.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/train/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/train/llaga_trainer.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/train/llama_flash_attn_monkey_patch.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/train/train.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/train/train_mem.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/utils/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/utils/constants.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/utils/conversation.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/utils/data_process.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/llaga/utils/utils.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/mdgfm/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/mdgfm/downprompt.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/mdgfm/downprompt_graph.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/mdgfm/preprompt.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/mdgpt/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/mdgpt/downprompt.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/mdgpt/downprompt_graph.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/mdgpt/multidomain_gfm.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/mdgpt/preprompt.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/multigprompt/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/multigprompt/aug.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/multigprompt/downprompt.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/multigprompt/layers/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/multigprompt/layers/discriminator.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/multigprompt/layers/discriminator2.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/multigprompt/layers/gcn.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/multigprompt/layers/readout.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/multigprompt/models/LP.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/multigprompt/models/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/multigprompt/models/dgi.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/multigprompt/models/gcnlayers.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/multigprompt/models/graphcl.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/multigprompt/models/logreg.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/multigprompt/paths.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/multigprompt/preprompt.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/multigprompt/utils/process.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/data/KG/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/data/KG/gen_data.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/data/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/data/chemmol/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/data/chemmol/gen_data.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/data/chemmol/gen_raw_graph.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/data/ofa_data.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/data/single_graph/Cora/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/data/single_graph/Cora/gen_data.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/data/single_graph/Pubmed/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/data/single_graph/Pubmed/gen_data.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/data/single_graph/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/data/single_graph/arxiv/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/data/single_graph/arxiv/gen_data.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/data/single_graph/gen_data.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/data/single_graph/wikics/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/data/single_graph/wikics/gen_data.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/data/torch_io.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/fs_datamanager.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/gp/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/gp/lightning/data_template.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/gp/lightning/metric.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/gp/lightning/module_template.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/gp/lightning/training.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/gp/nn/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/gp/nn/layer/pyg.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/gp/nn/loss.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/gp/nn/models/GNN.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/gp/nn/models/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/gp/nn/models/dgl.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/gp/nn/models/pyg.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/gp/nn/models/task_predictor.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/gp/nn/models/util_model.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/gp/nn/pooling.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/gp/nn/resolver.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/gp/utils/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/gp/utils/datasets.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/gp/utils/graph.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/gp/utils/io.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/gp/utils/utils.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/lightning_model.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/models/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/models/model.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/ofa_datasets.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/paths.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/run_cdm.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/task_constructor.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/oneforall/utils.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/rag_gfm/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/rag_gfm/preprompt.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/sa2gfm/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/sa2gfm/attack_data_gen/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/sa2gfm/attack_data_gen/lib/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/sa2gfm/attack_data_gen/lib/data_utils.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/sa2gfm/attack_data_gen/lib/gcn_surrogate.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/sa2gfm/attack_data_gen/lib/paths.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/sa2gfm/attack_data_gen/pipeline/01_train_gcn_surrogate.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/sa2gfm/attack_data_gen/pipeline/02_nettack_reports.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/sa2gfm/attack_data_gen/pipeline/03_assemble_final.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/sa2gfm/attack_data_gen/pipeline/04_random_perturb.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/sa2gfm/attack_data_gen/pipeline/05_metattack_surrogate.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/sa2gfm/attack_data_gen/pipeline/06_metattack_batch.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/sa2gfm/community_detection/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/sa2gfm/community_detection/pipeline/01_detect_communities.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/sa2gfm/community_detection/pipeline/02_analyze_communities.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/sa2gfm/downstream/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/sa2gfm/downstream/lib/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/sa2gfm/downstream/lib/config.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/sa2gfm/downstream/models/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/sa2gfm/downstream/models/down_model.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/sa2gfm/downstream/models/moe.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/sa2gfm/downstream/pipeline/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/sa2gfm/downstream/pipeline/train_downstream.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/sa2gfm/few_shot_gen/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/sa2gfm/few_shot_gen/pipeline/01_generate_splits.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/sa2gfm/node_feature_enhance/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/sa2gfm/node_feature_enhance/pipeline/01_build_enhanced_x.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/sa2gfm/paths.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/sa2gfm/pretrain/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/sa2gfm/pretrain/pipeline/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/sa2gfm/pretrain/pipeline/data_utils.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/sa2gfm/pretrain/pipeline/model.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/sa2gfm/pretrain/pipeline/train_single.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/samgpt/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/samgpt/downprompt.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/samgpt/downprompt_graph.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/samgpt/preprompt.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/cli/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/cli/baseline_registry.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/cli/baselines/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/cli/baselines/stub_config.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/cli/mdgpt_stages.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/cli/run_yaml.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/cli/sa2gfm.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/private/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/private/core/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/private/core/gnn_encoder.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/private/utlis/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/private/utlis/domain_alignment.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/private/utlis/downstream_data_gen/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/private/utlis/downstream_data_gen/generator.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/private/utlis/feature_handling.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/private/utlis/graph_construction.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/private/utlis/graph_type_variants.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/private/utlis/loss_calculation.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/private/utlis/rag_gfm/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/private/utlis/rag_gfm/corpus_builder.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/private/utlis/rag_gfm/motif_builder.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/backbone_models/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/backbone_models/gnn_encoder.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/cli/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/cli/default_ckpt.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/cli/export_yaml.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/cli/multigprompt_config.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/cli/yaml_config.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/cli/yaml_flat_to_argv.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/model_bases.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/utils/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/utils/data_process/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/utils/data_process/ogb_preprocess.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/utils/data_process/pyg_graph.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/utils/data_process/text_embed.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/utils/llm/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/utils/llm/dev_llm_stub.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/utils/llm/hf_hub.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/utils/llm/openai_api.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/utils/llm/openai_client.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/utils/loss_func/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/utils/loss_func/cca_loss.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/utils/loss_func/domain_contrastive.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/utils/loss_func/domain_regularizer.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/utils/loss_func/gradient_reversal.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/utils/loss_func/info_nce_mi_matrix.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/utils/loss_func/loss_support.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/utils/loss_func/motif_contrastive_loss.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/utils/loss_func/negative_sampling.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/utils/loss_func/node_node_contrastive.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/utils/loss_func/pairwise_ranking.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/utils/loss_func/spectral_loss.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/utils/loss_func/task_head.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/utils/others/__init__.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/utils/others/core.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/utils/others/dict2xml.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/utils/others/distributed_compat.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/utils/others/graph_utils.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/utils/others/ppr.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/utils/others/runtime.py +0 -0
- {python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/public/utils/runtime.py +0 -0
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "python-gfm"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.5"
|
|
8
8
|
authors = [
|
|
9
9
|
{ name = "BUAA SKLCCSE", email = "your.email@example.com" },
|
|
10
10
|
]
|
|
@@ -55,4 +55,8 @@ gfm-sa2gfm-downstream = "pygfm.cli.sa2gfm:downstream_main"
|
|
|
55
55
|
|
|
56
56
|
[tool.setuptools.packages.find]
|
|
57
57
|
where = ["src", "scripts", "ckpts"]
|
|
58
|
-
include = ["pygfm*"]
|
|
58
|
+
include = ["pygfm*"]
|
|
59
|
+
|
|
60
|
+
# Ship scripts/ as a zip next to pygfm so ``pip install`` can run YAML without a git checkout.
|
|
61
|
+
[tool.setuptools.package-data]
|
|
62
|
+
pygfm = ["_scripts_bundle.zip"]
|
|
@@ -7,6 +7,8 @@ python_gfm.egg-info/entry_points.txt
|
|
|
7
7
|
python_gfm.egg-info/requires.txt
|
|
8
8
|
python_gfm.egg-info/top_level.txt
|
|
9
9
|
src/pygfm/__init__.py
|
|
10
|
+
src/pygfm/__main__.py
|
|
11
|
+
src/pygfm/_scripts_bundle.zip
|
|
10
12
|
src/pygfm/baseline_models/__init__.py
|
|
11
13
|
src/pygfm/baseline_models/bim_gfm/__init__.py
|
|
12
14
|
src/pygfm/baseline_models/bim_gfm/ablation.py
|
|
@@ -367,6 +369,7 @@ src/pygfm/cli/run_yaml.py
|
|
|
367
369
|
src/pygfm/cli/sa2gfm.py
|
|
368
370
|
src/pygfm/cli/script_runner.py
|
|
369
371
|
src/pygfm/cli/baselines/__init__.py
|
|
372
|
+
src/pygfm/cli/baselines/mdgpt.py
|
|
370
373
|
src/pygfm/cli/baselines/stub_config.py
|
|
371
374
|
src/pygfm/private/__init__.py
|
|
372
375
|
src/pygfm/private/core/__init__.py
|
|
Binary file
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"""MDGPT YAML runners that do not require a repo ``scripts/`` checkout (pip-friendly).
|
|
2
|
+
|
|
3
|
+
Overrides script-based stubs from ``baseline_registry`` for pretrain / finetune.
|
|
4
|
+
``finetune_graph`` still uses ``scripts/mdgpt/finetune_graph.py`` when ``PYGFM_REPO_ROOT`` is set.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
from __future__ import annotations
|
|
8
|
+
|
|
9
|
+
from pygfm.cli.mdgpt_stages import run_mdgpt_finetune, run_mdgpt_pretrain
|
|
10
|
+
|
|
11
|
+
RUNNERS = {
|
|
12
|
+
"pretrain": run_mdgpt_pretrain,
|
|
13
|
+
"finetune": run_mdgpt_finetune,
|
|
14
|
+
}
|
|
@@ -2,8 +2,12 @@
|
|
|
2
2
|
Run repository ``scripts/<baseline>/*.py`` like the original CLI: write a flat YAML and pass
|
|
3
3
|
``-c`` (for parsers that support it), then call ``main()``.
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
Resolution order for ``scripts/``:
|
|
6
|
+
|
|
7
|
+
1. ``PYGFM_REPO_ROOT`` / ``PYGFM_SCRIPTS_ROOT``
|
|
8
|
+
2. A git checkout (walk parents from this file, or ``cwd`` with ``./scripts``)
|
|
9
|
+
3. **Wheel / pip install:** ``pygfm._scripts_bundle.zip`` next to this package — unpacked once under
|
|
10
|
+
the system temp dir (same layout as repo ``scripts/``).
|
|
7
11
|
|
|
8
12
|
Some scripts only expose logic under ``if __name__ == "__main__"``; those need one-off handling
|
|
9
13
|
(see ``_run_sa2gfm_script``).
|
|
@@ -11,10 +15,12 @@ Some scripts only expose logic under ``if __name__ == "__main__"``; those need o
|
|
|
11
15
|
|
|
12
16
|
from __future__ import annotations
|
|
13
17
|
|
|
18
|
+
import hashlib
|
|
14
19
|
import importlib.util
|
|
15
20
|
import os
|
|
16
21
|
import sys
|
|
17
22
|
import tempfile
|
|
23
|
+
import zipfile
|
|
18
24
|
from pathlib import Path
|
|
19
25
|
from typing import Any, Callable
|
|
20
26
|
|
|
@@ -54,6 +60,34 @@ DEFAULT_STAGE_FILES: dict[str, str] = {
|
|
|
54
60
|
}
|
|
55
61
|
|
|
56
62
|
|
|
63
|
+
def _bundled_scripts_dir() -> Path | None:
|
|
64
|
+
"""Unpack ``_scripts_bundle.zip`` (shipped in the wheel) to a temp dir; return ``.../scripts``."""
|
|
65
|
+
try:
|
|
66
|
+
import pygfm
|
|
67
|
+
except ImportError:
|
|
68
|
+
return None
|
|
69
|
+
pkg_root = Path(pygfm.__file__).resolve().parent
|
|
70
|
+
zpath = pkg_root / "_scripts_bundle.zip"
|
|
71
|
+
if not zpath.is_file():
|
|
72
|
+
return None
|
|
73
|
+
key = hashlib.sha256(zpath.read_bytes()).hexdigest()[:24]
|
|
74
|
+
cache = Path(tempfile.gettempdir()) / "pygfm_bundled_scripts" / key
|
|
75
|
+
scripts_dir = cache / "scripts"
|
|
76
|
+
done = cache / ".extracted"
|
|
77
|
+
if not done.is_file():
|
|
78
|
+
import shutil
|
|
79
|
+
|
|
80
|
+
if cache.exists():
|
|
81
|
+
shutil.rmtree(cache, ignore_errors=True)
|
|
82
|
+
cache.mkdir(parents=True, exist_ok=True)
|
|
83
|
+
with zipfile.ZipFile(zpath) as zf:
|
|
84
|
+
zf.extractall(cache)
|
|
85
|
+
done.write_text("1", encoding="ascii")
|
|
86
|
+
if not (scripts_dir / "mdgpt").is_dir():
|
|
87
|
+
return None
|
|
88
|
+
return scripts_dir.resolve()
|
|
89
|
+
|
|
90
|
+
|
|
57
91
|
def find_scripts_root() -> Path | None:
|
|
58
92
|
env = os.environ.get("PYGFM_REPO_ROOT") or os.environ.get("PYGFM_SCRIPTS_ROOT")
|
|
59
93
|
if env:
|
|
@@ -72,6 +106,9 @@ def find_scripts_root() -> Path | None:
|
|
|
72
106
|
cwd = Path.cwd()
|
|
73
107
|
if (cwd / "scripts").is_dir():
|
|
74
108
|
return (cwd / "scripts").resolve()
|
|
109
|
+
bundled = _bundled_scripts_dir()
|
|
110
|
+
if bundled is not None:
|
|
111
|
+
return bundled
|
|
75
112
|
return None
|
|
76
113
|
|
|
77
114
|
|
|
@@ -158,8 +195,8 @@ def run_script_main(baseline: str, stage: str, cfg: dict[str, Any]) -> None:
|
|
|
158
195
|
if path is None:
|
|
159
196
|
raise FileNotFoundError(
|
|
160
197
|
f"No script for baseline={baseline!r}, stage={stage!r}. "
|
|
161
|
-
"Set PYGFM_REPO_ROOT to the repo root
|
|
162
|
-
"or
|
|
198
|
+
"Set PYGFM_REPO_ROOT to the repo root, run from a checkout with scripts/, "
|
|
199
|
+
"or use a python-gfm wheel that includes _scripts_bundle.zip."
|
|
163
200
|
)
|
|
164
201
|
|
|
165
202
|
if baseline.lower() == "sa2gfm" and stage.lower() == "detect":
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/conversation.py
RENAMED
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/eval/run_graphgpt.py
RENAMED
|
File without changes
|
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/eval/run_vicuna.py
RENAMED
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/model/GraphLlama.py
RENAMED
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/model/GraphLlama_pl.py
RENAMED
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/model/__init__.py
RENAMED
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/model/apply_delta.py
RENAMED
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/model/apply_lora.py
RENAMED
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/model/builder.py
RENAMED
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/model/compression.py
RENAMED
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/model/convert_fp16.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/model/make_delta.py
RENAMED
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/model/model_adapter.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/model/utils.py
RENAMED
|
File without changes
|
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/serve/__init__.py
RENAMED
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/serve/api_provider.py
RENAMED
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/serve/bard_worker.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/serve/controller.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/serve/gradio_css.py
RENAMED
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/serve/gradio_patch.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/serve/inference.py
RENAMED
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/serve/model_worker.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/serve/test_message.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/train/train_graph.py
RENAMED
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/train/train_light.py
RENAMED
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/train/train_lora.py
RENAMED
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/gcot/graphgpt/train/train_mem.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/build_instruct_arxiv_ds.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/eval/run_graphgpt.py
RENAMED
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/eval/run_graphgpt_LP.py
RENAMED
|
File without changes
|
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/model/GraphLlama.py
RENAMED
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/model/GraphLlama_pl.py
RENAMED
|
File without changes
|
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/model/apply_delta.py
RENAMED
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/model/apply_lora.py
RENAMED
|
File without changes
|
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/model/compression.py
RENAMED
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/model/convert_fp16.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/model/graph_layers/mpnn.py
RENAMED
|
File without changes
|
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/model/make_delta.py
RENAMED
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/model/model_adapter.py
RENAMED
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/model/model_registry.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/api_provider.py
RENAMED
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/bard_worker.py
RENAMED
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/cacheflow_worker.py
RENAMED
|
File without changes
|
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/controller.py
RENAMED
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/controller_graph.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/gradio_css.py
RENAMED
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/gradio_patch.py
RENAMED
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/gradio_web_server.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/huggingface_api.py
RENAMED
|
File without changes
|
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/model_worker.py
RENAMED
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/model_worker_graph.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/monitor/monitor.py
RENAMED
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/openai_api_server.py
RENAMED
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/register_worker.py
RENAMED
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/test_message.py
RENAMED
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/serve/test_throughput.py
RENAMED
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/train/graphchat_trainer.py
RENAMED
|
File without changes
|
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/train/train_graph.py
RENAMED
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/train/train_light.py
RENAMED
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphgpt/train/train_lora.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphkeeper/downprompt_graph.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphmore/downprompt_graph.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphprompt/downprompt_graph.py
RENAMED
|
File without changes
|
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphprompt/prompt_layers.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/graph_text/__init__.py
RENAMED
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/graph_text/agent.py
RENAMED
|
File without changes
|
{python_gfm-0.1.4 → python_gfm-0.1.5}/src/pygfm/baseline_models/graphtext/graph_text/conversation.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|