GithubHelp home page GithubHelp logo

Comments (4)

gonzalesMK avatar gonzalesMK commented on June 20, 2024 2

Hi, I had the same issue.

I gave it some thought, and I realized that the negative validation/training samples should be able to sample from the test's samples, otherwise the algorithm would have an edge over the test samples.

In other words, edges in the test set can be sampled as negative examples in the validation/training sets (this could happen in a real world scenario).

So, this explain why ismember is segregated in train_edges and val_edges. However, there is this line:

assert ~ismember(val_edges_false, edges_all)

Which I don't understand the purpose of.

from gae.

lif323 avatar lif323 commented on June 20, 2024

I understand why assert error appears sometimes when running the program. This is because val_edge_false may appear in edges_all.

File "train.py", line 47, in <module>
    adj_train, train_edges, val_edges, val_edges_false, test_edges, test_edges_false = mask_test_edges(adj)
  File "/home/lf/work/gae/gae/preprocessing.py", line 100, in mask_test_edges
    assert ~ismember(val_edges_false, edges_all)
AssertionError

from gae.

lif323 avatar lif323 commented on June 20, 2024

Hi,
I think a program without assert error, that is, the correct code, is equivalent to the following code:

val_edges_false = []
    while len(val_edges_false) < len(val_edges):
        idx_i = np.random.randint(0, adj.shape[0])
        idx_j = np.random.randint(0, adj.shape[0])
        if idx_i == idx_j:
            continue
        if ismember([idx_j, idx_i], edges_all):
            continue
        if val_edges_false:
            if ismember([idx_j, idx_i], np.array(val_edges_false)):
                continue
            if ismember([idx_i, idx_j], np.array(val_edges_false)):
                continue
        val_edges_false.append([idx_i, idx_j])

from gae.

sheenahora avatar sheenahora commented on June 20, 2024

Hello, I am having the same issue.
assert ~ismember(val_edges_false, edges_all)
AssertionError
Did anyone find the solution? Kindly help.

from gae.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.