-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Integration of torch models in main #34
Commits on May 15, 2024
-
feat: Add Torch graph models class implementations
This commit adds the following implementations to the models_torch subpackage: - Added __init__.py for the subpackage - Implemented GraphAttentionNetwork in graph_attention_network.py - Implemented GraphConvolutionalNetwork in graph_convolutional_network.py - Implemented GraphSAGENetwork in graph_sage_network.py - Implemented GraphTransformerNetwork in graph_transformer_network.py These implementations provide configurable nn architectural support for training graph-based models using PyTorch.
Configuration menu - View commit details
-
Copy full SHA for ffb9af2 - Browse repository at this point
Copy the full SHA ffb9af2View commit details -
feat: Move torch-related code in jaqpotpy_torch/
Create a new directory named jaqpotpy_torch/ to organize all torch-related code. We'll decide later whether to keep this code here or move it to an entirely new standalone torch-specific package.
Configuration menu - View commit details
-
Copy full SHA for 69d0c8f - Browse repository at this point
Copy the full SHA 69d0c8fView commit details -
feat: Add Smiles Graph Featurizer
This commit initializes the featurizers_torch subpackage, adding the following implementations: - Added __init__.py for the subpackage - Implemented SmilesGraphFeaturizer in smiles_graph_featurizer.py. The SmilesGraphFeaturizer class is designed to create custom graph featurizations from SMILES strings. It offers highly configurable options, allowing users to choose from a wide range of both atom and bond characteristics to be included.
Configuration menu - View commit details
-
Copy full SHA for 2972b63 - Browse repository at this point
Copy the full SHA 2972b63View commit details -
feat: Add Smiles Graph Dataset
This commit initializes the datasets_torch subpackage, adding the following implementations: - Added __init__.py for the subpackage - Implemented SmilesGraphDataset in smiles_graph_dataset.py. The SmilesGraphDataset class is designed to create a custom torch Dataset for graph-featurized SMILES. Its __getitem__ method is overridden to return a torch_geometric Data object enacpsulating the following information: - Node attributes (x) - Edge indices (edge_index) - Edge attributes (edge_attr) - Target labels (y) - The original SMILES representation (smiles) SmilesGraphDataset enables straightforward integration into torch-based ML pipelines, facilitating the development of graph-based predictive models.
Configuration menu - View commit details
-
Copy full SHA for 2098f95 - Browse repository at this point
Copy the full SHA 2098f95View commit details
Commits on May 16, 2024
-
refactor: Rename subdirectories in jaqpotpy_torch
This commit removes the _torch suffix directory names within the jaqpotpy_torch module: - Renamed datasets_torch directory to datasets - Renamed featurizers_torch directory to featurizers - Renamed models_torch directory to models
Configuration menu - View commit details
-
Copy full SHA for 35ed377 - Browse repository at this point
Copy the full SHA 35ed377View commit details -
feat: Add trainers package for torch models
This commit initializes the trainers subpackage, adding the following implementations: - Added __init__.py for the subpackage - Implemented an initial version of TorchModelTrainer abstract class in torch_model_trainer.py.
Configuration menu - View commit details
-
Copy full SHA for 05a8791 - Browse repository at this point
Copy the full SHA 05a8791View commit details
Commits on May 20, 2024
-
feat: Extended trainers package for torch models
This commit initializes the trainers subpackage, adding the following implementations: - Added BinaryGraphModelTrainer, RegressionGraphModelTrainer in __init__.py - Extended TorchModelTrainer class with additional attributes.
Configuration menu - View commit details
-
Copy full SHA for 6fd3be3 - Browse repository at this point
Copy the full SHA 6fd3be3View commit details -
feat: Implement Binary & Regression Graph Trainers
This commit adds the following implementations to the trainers subpackage: - BinaryGraphModelTrainer subclass - RegressionGraphModelTrainer subclass
Configuration menu - View commit details
-
Copy full SHA for 6aa65ba - Browse repository at this point
Copy the full SHA 6aa65baView commit details
Commits on May 23, 2024
-
feat: Implement SmilesGraphDatasetWithExternal
This commit adds the SmilesGraphDatasetWithExternal class implementation to the datasets subpackage. This class inherits from SmilesGraphDataset, and adds the functionality of providing an external feature vector along with the smiles representation.
Configuration menu - View commit details
-
Copy full SHA for 72dc45a - Browse repository at this point
Copy the full SHA 72dc45aView commit details -
refactor: Add abstract class Featurizer
This commit adds the implementation of the Featurizer abstract class. Also the abstract method featurize() is defined.
Configuration menu - View commit details
-
Copy full SHA for 9bbd19e - Browse repository at this point
Copy the full SHA 9bbd19eView commit details -
feat: Implement Fully Connected Network model
This commit adds the FullyConnectedNetwork class implementation to the models.
Configuration menu - View commit details
-
Copy full SHA for b26555c - Browse repository at this point
Copy the full SHA b26555cView commit details -
feat: Implement graph models with external feats
This commit adds the following implementations to the models subpackage: - GraphAttentionNetworkWithExternal - GraphConvolutionalNetworkWithExternal - GraphSAGENetworkWithExternal - GraphTransformerNetworkWithExternal In these models the corresponding graph neural network is employed to produce global level representations from smiles. Then these are concatenated with the external feature vectors and the concatenated vector is passed through a fully connected network to produce the final output.
Configuration menu - View commit details
-
Copy full SHA for abf26a8 - Browse repository at this point
Copy the full SHA abf26a8View commit details -
fix: Circular import error and add super()
- Fixed a circular import error of the FullyConnectedNetwork class - Added super().__init__() to all the models supporting external features
Configuration menu - View commit details
-
Copy full SHA for 59895d8 - Browse repository at this point
Copy the full SHA 59895d8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 611430c - Browse repository at this point
Copy the full SHA 611430cView commit details
Commits on Jun 3, 2024
-
feat: Deployment for torch models
This commit adds the implementation of the deploy_model for both RegressionGraphModelTrainer and BinaryGraphModelTrainer. deploy_model() is an abstract method of the TorchModelTrainer base class, and must be implemented in every class that inherits from TorchModelTrainer, to support model deployment on Jaqpot.
Configuration menu - View commit details
-
Copy full SHA for 4a4e5f8 - Browse repository at this point
Copy the full SHA 4a4e5f8View commit details
Commits on Jun 4, 2024
-
feat: Deploy for external and changed logic
In this commit we: - Implement the deployment logic for models and trainers that use external features - Set deploy_model function to be on the TorchModelTrainer class - Define the abstract method prepare_for_deployment() with a dynamic set of arguments per trainer subclass which transforms the data into the appropriate JSON - Add 'SMILES' in a protected namespace so that external features can't be named like this - Fix bugs regarding model input arguments
Configuration menu - View commit details
-
Copy full SHA for 044c87d - Browse repository at this point
Copy the full SHA 044c87dView commit details
Commits on Jun 5, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 686106e - Browse repository at this point
Copy the full SHA 686106eView commit details
Commits on Jun 6, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 6b683aa - Browse repository at this point
Copy the full SHA 6b683aaView commit details
Commits on Jun 14, 2024
-
Configuration menu - View commit details
-
Copy full SHA for c3227d2 - Browse repository at this point
Copy the full SHA c3227d2View commit details -
Merge branch 'feat/JAQPOT-62/torch-graph-training' of https://github.…
…com/ntua-unit-of-control-and-informatics/jaqpotpy into feat/JAQPOT-62/torch-graph-training
Configuration menu - View commit details
-
Copy full SHA for 9d5a50b - Browse repository at this point
Copy the full SHA 9d5a50bView commit details -
Configuration menu - View commit details
-
Copy full SHA for dedceae - Browse repository at this point
Copy the full SHA dedceaeView commit details -
feat: Fully functional torch model upload
This commit provides: - Ready for deployment torch models are implemented - Everything up to date with the current structure of the API
Configuration menu - View commit details
-
Copy full SHA for e863a12 - Browse repository at this point
Copy the full SHA e863a12View commit details -
Configuration menu - View commit details
-
Copy full SHA for 26fb527 - Browse repository at this point
Copy the full SHA 26fb527View commit details -
feat: Implement FC Trainer for solely external
This commit implements: - TabularDataset class inheriting from torch.utils.data.Dataset - BinaryFCModelTrainer & RegressionFCModelTrainer - The required changed in the BinaryModelTrainer and RegressionModelTrainer abstract classes to support data from torch.utils.data.DataLoader as well
Configuration menu - View commit details
-
Copy full SHA for 3a81ef6 - Browse repository at this point
Copy the full SHA 3a81ef6View commit details
Commits on Jun 19, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 927d84d - Browse repository at this point
Copy the full SHA 927d84dView commit details -
Configuration menu - View commit details
-
Copy full SHA for c61006c - Browse repository at this point
Copy the full SHA c61006cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7eee23f - Browse repository at this point
Copy the full SHA 7eee23fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5dbe355 - Browse repository at this point
Copy the full SHA 5dbe355View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0e68b16 - Browse repository at this point
Copy the full SHA 0e68b16View commit details -
Configuration menu - View commit details
-
Copy full SHA for f026247 - Browse repository at this point
Copy the full SHA f026247View commit details -
fix: Fix args types of all networks/models
In this commit we: - Fix default value of heads argument - Remove unnecessary 'Optional' types
Configuration menu - View commit details
-
Copy full SHA for 4c7725f - Browse repository at this point
Copy the full SHA 4c7725fView commit details
Commits on Jun 21, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 31cfe29 - Browse repository at this point
Copy the full SHA 31cfe29View commit details -
fix: Two minor fixes in metrics
In this commit we: - Add zero_division=0 to f1 - Add labels to confusion matrix function
Configuration menu - View commit details
-
Copy full SHA for 8c5333f - Browse repository at this point
Copy the full SHA 8c5333fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5600dea - Browse repository at this point
Copy the full SHA 5600deaView commit details
Commits on Jun 22, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 9177278 - Browse repository at this point
Copy the full SHA 9177278View commit details -
Configuration menu - View commit details
-
Copy full SHA for 374e11e - Browse repository at this point
Copy the full SHA 374e11eView commit details -
Configuration menu - View commit details
-
Copy full SHA for e23581a - Browse repository at this point
Copy the full SHA e23581aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 250575a - Browse repository at this point
Copy the full SHA 250575aView commit details
Commits on Jun 26, 2024
-
Configuration menu - View commit details
-
Copy full SHA for d92c875 - Browse repository at this point
Copy the full SHA d92c875View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5cb1b00 - Browse repository at this point
Copy the full SHA 5cb1b00View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1927cfb - Browse repository at this point
Copy the full SHA 1927cfbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2482033 - Browse repository at this point
Copy the full SHA 2482033View commit details -
Configuration menu - View commit details
-
Copy full SHA for f5762ce - Browse repository at this point
Copy the full SHA f5762ceView commit details -
refactor: SmilesGraphFeaturizer code in docs
This commit: - Adds example code blocks in SmilesGraphFeaturizer - Sets '.' instead of '_' for the separator when showing atom/bond characteristics vector labels - Add __call__ to to call abstract featurize() method in abstract class Featurizer
Configuration menu - View commit details
-
Copy full SHA for 3f3259a - Browse repository at this point
Copy the full SHA 3f3259aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4d04f16 - Browse repository at this point
Copy the full SHA 4d04f16View commit details
Commits on Jun 28, 2024
-
refactor: Add docs for models etc
This commit: - Adds/refactors docs for models - Modifies author section
Configuration menu - View commit details
-
Copy full SHA for 498bd7f - Browse repository at this point
Copy the full SHA 498bd7fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 53bdb32 - Browse repository at this point
Copy the full SHA 53bdb32View commit details -
Configuration menu - View commit details
-
Copy full SHA for eb2a165 - Browse repository at this point
Copy the full SHA eb2a165View commit details -
feat: Add Torch graph models class implementations
This commit adds the following implementations to the models_torch subpackage: - Added __init__.py for the subpackage - Implemented GraphAttentionNetwork in graph_attention_network.py - Implemented GraphConvolutionalNetwork in graph_convolutional_network.py - Implemented GraphSAGENetwork in graph_sage_network.py - Implemented GraphTransformerNetwork in graph_transformer_network.py These implementations provide configurable nn architectural support for training graph-based models using PyTorch.
Configuration menu - View commit details
-
Copy full SHA for 0599703 - Browse repository at this point
Copy the full SHA 0599703View commit details -
feat: Move torch-related code in jaqpotpy_torch/
Create a new directory named jaqpotpy_torch/ to organize all torch-related code. We'll decide later whether to keep this code here or move it to an entirely new standalone torch-specific package.
Configuration menu - View commit details
-
Copy full SHA for 52a0a8b - Browse repository at this point
Copy the full SHA 52a0a8bView commit details -
feat: Add Smiles Graph Featurizer
This commit initializes the featurizers_torch subpackage, adding the following implementations: - Added __init__.py for the subpackage - Implemented SmilesGraphFeaturizer in smiles_graph_featurizer.py. The SmilesGraphFeaturizer class is designed to create custom graph featurizations from SMILES strings. It offers highly configurable options, allowing users to choose from a wide range of both atom and bond characteristics to be included.
Configuration menu - View commit details
-
Copy full SHA for 7e94fd1 - Browse repository at this point
Copy the full SHA 7e94fd1View commit details -
feat: Add Smiles Graph Dataset
This commit initializes the datasets_torch subpackage, adding the following implementations: - Added __init__.py for the subpackage - Implemented SmilesGraphDataset in smiles_graph_dataset.py. The SmilesGraphDataset class is designed to create a custom torch Dataset for graph-featurized SMILES. Its __getitem__ method is overridden to return a torch_geometric Data object enacpsulating the following information: - Node attributes (x) - Edge indices (edge_index) - Edge attributes (edge_attr) - Target labels (y) - The original SMILES representation (smiles) SmilesGraphDataset enables straightforward integration into torch-based ML pipelines, facilitating the development of graph-based predictive models.
Configuration menu - View commit details
-
Copy full SHA for 6929bdc - Browse repository at this point
Copy the full SHA 6929bdcView commit details -
refactor: Rename subdirectories in jaqpotpy_torch
This commit removes the _torch suffix directory names within the jaqpotpy_torch module: - Renamed datasets_torch directory to datasets - Renamed featurizers_torch directory to featurizers - Renamed models_torch directory to models
Configuration menu - View commit details
-
Copy full SHA for fee07df - Browse repository at this point
Copy the full SHA fee07dfView commit details -
feat: Add trainers package for torch models
This commit initializes the trainers subpackage, adding the following implementations: - Added __init__.py for the subpackage - Implemented an initial version of TorchModelTrainer abstract class in torch_model_trainer.py.
Configuration menu - View commit details
-
Copy full SHA for db0764c - Browse repository at this point
Copy the full SHA db0764cView commit details -
feat: Extended trainers package for torch models
This commit initializes the trainers subpackage, adding the following implementations: - Added BinaryGraphModelTrainer, RegressionGraphModelTrainer in __init__.py - Extended TorchModelTrainer class with additional attributes.
Configuration menu - View commit details
-
Copy full SHA for 34e6f8f - Browse repository at this point
Copy the full SHA 34e6f8fView commit details -
feat: Implement Binary & Regression Graph Trainers
This commit adds the following implementations to the trainers subpackage: - BinaryGraphModelTrainer subclass - RegressionGraphModelTrainer subclass
Configuration menu - View commit details
-
Copy full SHA for fee812e - Browse repository at this point
Copy the full SHA fee812eView commit details -
feat: Implement SmilesGraphDatasetWithExternal
This commit adds the SmilesGraphDatasetWithExternal class implementation to the datasets subpackage. This class inherits from SmilesGraphDataset, and adds the functionality of providing an external feature vector along with the smiles representation.
Configuration menu - View commit details
-
Copy full SHA for 1c8fe26 - Browse repository at this point
Copy the full SHA 1c8fe26View commit details -
refactor: Add abstract class Featurizer
This commit adds the implementation of the Featurizer abstract class. Also the abstract method featurize() is defined.
Configuration menu - View commit details
-
Copy full SHA for f08cec6 - Browse repository at this point
Copy the full SHA f08cec6View commit details -
feat: Implement Fully Connected Network model
This commit adds the FullyConnectedNetwork class implementation to the models.
Configuration menu - View commit details
-
Copy full SHA for 3be83e0 - Browse repository at this point
Copy the full SHA 3be83e0View commit details -
feat: Implement graph models with external feats
This commit adds the following implementations to the models subpackage: - GraphAttentionNetworkWithExternal - GraphConvolutionalNetworkWithExternal - GraphSAGENetworkWithExternal - GraphTransformerNetworkWithExternal In these models the corresponding graph neural network is employed to produce global level representations from smiles. Then these are concatenated with the external feature vectors and the concatenated vector is passed through a fully connected network to produce the final output.
Configuration menu - View commit details
-
Copy full SHA for 1f459d7 - Browse repository at this point
Copy the full SHA 1f459d7View commit details -
fix: Circular import error and add super()
- Fixed a circular import error of the FullyConnectedNetwork class - Added super().__init__() to all the models supporting external features
Configuration menu - View commit details
-
Copy full SHA for dc403a9 - Browse repository at this point
Copy the full SHA dc403a9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 83f5031 - Browse repository at this point
Copy the full SHA 83f5031View commit details -
feat: Deployment for torch models
This commit adds the implementation of the deploy_model for both RegressionGraphModelTrainer and BinaryGraphModelTrainer. deploy_model() is an abstract method of the TorchModelTrainer base class, and must be implemented in every class that inherits from TorchModelTrainer, to support model deployment on Jaqpot.
Configuration menu - View commit details
-
Copy full SHA for 7d5a3da - Browse repository at this point
Copy the full SHA 7d5a3daView commit details -
feat: Deploy for external and changed logic
In this commit we: - Implement the deployment logic for models and trainers that use external features - Set deploy_model function to be on the TorchModelTrainer class - Define the abstract method prepare_for_deployment() with a dynamic set of arguments per trainer subclass which transforms the data into the appropriate JSON - Add 'SMILES' in a protected namespace so that external features can't be named like this - Fix bugs regarding model input arguments
Configuration menu - View commit details
-
Copy full SHA for 73c13d0 - Browse repository at this point
Copy the full SHA 73c13d0View commit details -
Configuration menu - View commit details
-
Copy full SHA for e55c4a7 - Browse repository at this point
Copy the full SHA e55c4a7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2c54bd6 - Browse repository at this point
Copy the full SHA 2c54bd6View commit details -
feat: Fully functional torch model upload
This commit provides: - Ready for deployment torch models are implemented - Everything up to date with the current structure of the API
Configuration menu - View commit details
-
Copy full SHA for faefa2a - Browse repository at this point
Copy the full SHA faefa2aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 89a071d - Browse repository at this point
Copy the full SHA 89a071dView commit details -
feat: Implement FC Trainer for solely external
This commit implements: - TabularDataset class inheriting from torch.utils.data.Dataset - BinaryFCModelTrainer & RegressionFCModelTrainer - The required changed in the BinaryModelTrainer and RegressionModelTrainer abstract classes to support data from torch.utils.data.DataLoader as well
Configuration menu - View commit details
-
Copy full SHA for 126a53f - Browse repository at this point
Copy the full SHA 126a53fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 35e45a1 - Browse repository at this point
Copy the full SHA 35e45a1View commit details -
Configuration menu - View commit details
-
Copy full SHA for d30a668 - Browse repository at this point
Copy the full SHA d30a668View commit details -
Configuration menu - View commit details
-
Copy full SHA for a31a98c - Browse repository at this point
Copy the full SHA a31a98cView commit details -
Configuration menu - View commit details
-
Copy full SHA for b192d9b - Browse repository at this point
Copy the full SHA b192d9bView commit details -
Configuration menu - View commit details
-
Copy full SHA for b6c4c5c - Browse repository at this point
Copy the full SHA b6c4c5cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4510307 - Browse repository at this point
Copy the full SHA 4510307View commit details -
fix: Fix args types of all networks/models
In this commit we: - Fix default value of heads argument - Remove unnecessary 'Optional' types
Configuration menu - View commit details
-
Copy full SHA for 3dbabfe - Browse repository at this point
Copy the full SHA 3dbabfeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 08ff203 - Browse repository at this point
Copy the full SHA 08ff203View commit details -
fix: Two minor fixes in metrics
In this commit we: - Add zero_division=0 to f1 - Add labels to confusion matrix function
Configuration menu - View commit details
-
Copy full SHA for ddcd72b - Browse repository at this point
Copy the full SHA ddcd72bView commit details -
Configuration menu - View commit details
-
Copy full SHA for f217b38 - Browse repository at this point
Copy the full SHA f217b38View commit details -
Configuration menu - View commit details
-
Copy full SHA for a933dc1 - Browse repository at this point
Copy the full SHA a933dc1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2aabc6d - Browse repository at this point
Copy the full SHA 2aabc6dView commit details -
Configuration menu - View commit details
-
Copy full SHA for f344713 - Browse repository at this point
Copy the full SHA f344713View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4ee8c11 - Browse repository at this point
Copy the full SHA 4ee8c11View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9fd1b39 - Browse repository at this point
Copy the full SHA 9fd1b39View commit details -
Configuration menu - View commit details
-
Copy full SHA for 16b9046 - Browse repository at this point
Copy the full SHA 16b9046View commit details -
Configuration menu - View commit details
-
Copy full SHA for 78b6d3e - Browse repository at this point
Copy the full SHA 78b6d3eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9828db8 - Browse repository at this point
Copy the full SHA 9828db8View commit details -
Configuration menu - View commit details
-
Copy full SHA for d7c30f1 - Browse repository at this point
Copy the full SHA d7c30f1View commit details -
refactor: SmilesGraphFeaturizer code in docs
This commit: - Adds example code blocks in SmilesGraphFeaturizer - Sets '.' instead of '_' for the separator when showing atom/bond characteristics vector labels - Add __call__ to to call abstract featurize() method in abstract class Featurizer
Configuration menu - View commit details
-
Copy full SHA for d2431fd - Browse repository at this point
Copy the full SHA d2431fdView commit details -
Configuration menu - View commit details
-
Copy full SHA for a1c4922 - Browse repository at this point
Copy the full SHA a1c4922View commit details -
refactor: Add docs for models etc
This commit: - Adds/refactors docs for models - Modifies author section
Configuration menu - View commit details
-
Copy full SHA for 1f89d87 - Browse repository at this point
Copy the full SHA 1f89d87View commit details -
Configuration menu - View commit details
-
Copy full SHA for b7a4462 - Browse repository at this point
Copy the full SHA b7a4462View commit details -
Configuration menu - View commit details
-
Copy full SHA for 56a6c11 - Browse repository at this point
Copy the full SHA 56a6c11View commit details -
Merge branch 'feat/JAQPOT-62/torch-graph-training' of https://github.…
…com/ntua-unit-of-control-and-informatics/jaqpotpy into feat/JAQPOT-62/torch-graph-training
Configuration menu - View commit details
-
Copy full SHA for 1fe1096 - Browse repository at this point
Copy the full SHA 1fe1096View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3bb3fcb - Browse repository at this point
Copy the full SHA 3bb3fcbView commit details -
Configuration menu - View commit details
-
Copy full SHA for d5ce368 - Browse repository at this point
Copy the full SHA d5ce368View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0f3cebf - Browse repository at this point
Copy the full SHA 0f3cebfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 38d4226 - Browse repository at this point
Copy the full SHA 38d4226View commit details -
Configuration menu - View commit details
-
Copy full SHA for a67ec47 - Browse repository at this point
Copy the full SHA a67ec47View commit details
Commits on Jun 30, 2024
-
Configuration menu - View commit details
-
Copy full SHA for ee19ef3 - Browse repository at this point
Copy the full SHA ee19ef3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 951d0ff - Browse repository at this point
Copy the full SHA 951d0ffView commit details -
Configuration menu - View commit details
-
Copy full SHA for dd6a050 - Browse repository at this point
Copy the full SHA dd6a050View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0db9db0 - Browse repository at this point
Copy the full SHA 0db9db0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 658536d - Browse repository at this point
Copy the full SHA 658536dView commit details