-
Notifications
You must be signed in to change notification settings - Fork 2
Beta Release Clean Up #11
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
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…n and network visualization tools
…n and network visualization tools. README was also updated but needs review
…string for sphinx doc generation
Many of our components were dependent on the output_dir parameter, which was not necessary. This commit removes the dependency on output_dir from many of our components. - Components now return a datastructure, either a pandas dataframe or a numpy array. - This gives the user more flexibility in how they want to save the output of the component. - User can easy save the output to a csv file or pass the output to another component. - This follows common practices in popular machine learning frameworks such as scikit-learn, PyTorch, and TensorFlow. - By increasing flexibility and separation of concerns, we make our codebase more modular and easier to maintain. - Therefore adhering to the single-responsibility principle.
This was referenced Dec 21, 2024
Closed
abdelhafizm
approved these changes
Dec 24, 2024
Collaborator
abdelhafizm
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
Beta release pagerank fixes
One of the largest updates include moving several components under a new component called external tools. We also updated the documentation to reflect this information. gnn_embedding code is now working as intended. Updates all the tests to reflect the changes. We will no longer be suporting a install script. we will just let using isntall pytorch and R on their own while providing documentation on where to install it from. After this commit I will remove all the sentive data from any previous commit Any .csv or .RData file will get removed from the repo I am also adding contingencies to prevent future upload of sensitive files. Other updates include: - updated the .gitignore file - updated the .pre-commit-config.yml file - updated the ArunTest.py file: almost working - updated the README.md file - updated the bioneuralnet/__init__.py file
3fa1641 to
776651b
Compare
I used git-filter-repo to remove sensitive data from the git history. I used the following command to remove the sensitive data from the git history:
I ran the following command:
git filter-repo --path example_data/COPDGeneCounts.csv \
--path example_data/COPDGeneMetadata.csv \
--path example_data/metabolites_blood_count_adjusted_2019-08-26.csv \
--path example_data/proteins_blood_count_adjusted_protein_names.csv \
--path example_data/Y_finalgold_coarse.csv \
--invert-paths --force
then I ran to remove it from the history of every branch:
git push --force --all
git push --force --tags
This can cause conflict with your local branch.
I recommend deleting your local branch and pulling the remote branch again.
- fix page rank type errors
Modifed logo to mohamed liking.
abdelhafizm
approved these changes
Jan 20, 2025
Collaborator
abdelhafizm
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Separating external tools from the main pipeline is a good idea.
- The HIPAA overlords thank you for removing sensitive data.
- Pre-commit looks good but it fails the test. You need to ignore the auto summary.
- GNNs need hyper parameter tuning.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Beta Release Clean Up