Giter Site home page Giter Site logo

Comments (3)

zhuyingqin avatar zhuyingqin commented on September 22, 2024 1

Thank you very much for solving my problem

from msa.

kuffmode avatar kuffmode commented on September 22, 2024

It's because of this line:
if len(complements) == len(network.W):
return 0
We have a check on return types so this one should be 0.0 instead of 0

from msa.

ShreyDixit avatar ShreyDixit commented on September 22, 2024

Hey @zhuyingqin
I hope @kuffmode 's reply solved the issue for you. Here is the code that you should now use with the change suggested by @kuffmode

def lesion_esn_behavior(complements, network, training_data, ground_truth):
    """
    This function lesions nodes and tracks their contributions to the output signal. This is for the classic MSA part.
    """
    if len(complements) == len(network.W):
        return 0.0 # every node in the network is lesioned so toss a zero to your MSA oh valley of plenty.

    lesioned_network = deepcopy(network)
    for target in complements: # same as above
        lesioned_network.W[target] = 0.00001
        lesioned_network.W_fb[target] = 0.00001
        lesioned_network.W_in[target] = 0.00001

    lesioned_network.fit(X=None, y=training_data)
    y_pred = lesioned_network.predict() # contrary to the previous function, here we want the output signal.

    return float(np.linalg.norm(y_pred,2))

Feel free to reply if you have any further doubts. If there's no activity for a week, we will close this issue ourselves.

from msa.

Related Issues (6)

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.