-
Notifications
You must be signed in to change notification settings - Fork 2
Add directed hypergraph layers and Cora node classification example #15
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
Open
shonalidixit
wants to merge
5
commits into
CoReACTER:main
Choose a base branch
from
shonalidixit:shonali-lux-layer
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
fee173f
Add configurable multi-head attention
shonalidixit deedcb1
Add directed hypergraph layers and Cora example
shonalidixit 5a62a24
Complete Cora experiments and directed layer implementations
shonalidixit a99e0f0
Add initial glucose reaction preprocessing
shonalidixit e6b1495
Remove glucose-specific preprocessing examples
shonalidixit File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,4 +4,5 @@ | |
| /Manifest.toml | ||
| /docs/Manifest.toml | ||
| /docs/build/ | ||
| *.txt | ||
| *.txt | ||
| .DS_Store | ||
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| This directory contains the a selection of the Cora dataset (www.research.whizbang.com/data). | ||
|
|
||
| The Cora dataset consists of Machine Learning papers. These papers are classified into one of the following seven classes: | ||
| Case_Based | ||
| Genetic_Algorithms | ||
| Neural_Networks | ||
| Probabilistic_Methods | ||
| Reinforcement_Learning | ||
| Rule_Learning | ||
| Theory | ||
|
|
||
| The papers were selected in a way such that in the final corpus every paper cites or is cited by atleast one other paper. There are 2708 papers in the whole corpus. | ||
|
|
||
| After stemming and removing stopwords we were left with a vocabulary of size 1433 unique words. All words with document frequency less than 10 were removed. | ||
|
|
||
|
|
||
| THE DIRECTORY CONTAINS TWO FILES: | ||
|
|
||
| The .content file contains descriptions of the papers in the following format: | ||
|
|
||
| <paper_id> <word_attributes>+ <class_label> | ||
|
|
||
| The first entry in each line contains the unique string ID of the paper followed by binary values indicating whether each word in the vocabulary is present (indicated by 1) or absent (indicated by 0) in the paper. Finally, the last entry in the line contains the class label of the paper. | ||
|
|
||
| The .cites file contains the citation graph of the corpus. Each line describes a link in the following format: | ||
|
|
||
| <ID of cited paper> <ID of citing paper> | ||
|
|
||
| Each line contains two paper IDs. The first entry is the ID of the paper being cited and the second ID stands for the paper which contains the citation. The direction of the link is from right to left. If a line is represented by "paper1 paper2" then the link is "paper2->paper1". |
Oops, something went wrong.
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.
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.
At this point, you should absolutely list yourself as an author.