GithubHelp home page GithubHelp logo

Comments (8)

cohenjer avatar cohenjer commented on May 30, 2024 2

Hi @MelanieN,
What you are asking for is something we have implemented for CP and nonnegative CP, but not yet for Tucker.
If I understood your issue correctly, you would want to fit a nonnegative Tucker decomposition, say with factors (U,V,W) and a core G, but e.g. U and V are already known and fixed?
For CP we have an option skip_mode which allows you to not update some of the modes. It would be fairly easy, in my opinion, to add this functionality to Tucker, if this is what you are looking for.

from tensorly.

cohenjer avatar cohenjer commented on May 30, 2024 2

@JeanKossaifi I see, sorry I misunderstood the issue. I don't ever use partial Tucker :)

We could definitively implement a partial nonnegative Tucker. I am working on nonnegative Tucker these days, so I might first add a skip_mode option at first; if I find the time I will also do the nonnegative_partial_tucker.

from tensorly.

JeanKossaifi avatar JeanKossaifi commented on May 30, 2024 1

Awesome! As a side note, going the other way may be easier: tucker is just partial_tucker with no skipped mode.
Typically the main difference would just be when unfolding the tensor along the modes to optimize, we just have this skipped mode:

$$X_{[n]} = U_n * (\text{Core} \times_{i=1...n,\; i != n,\; i \text{ not in skiped modes}} U_i )_{[n]}$$

which is a more efficient way to compute the expression using the Kronecker and U_k = Id for the skipped modes:

$$X_{[n]} = U_n * \text{Core}_{[n]} (U_1 \otimes \cdots \otimes U_{n-1} \otimes U_{n+1} \otimes \cdots U_{N})^\top$$

from tensorly.

cohenjer avatar cohenjer commented on May 30, 2024 1

Also I just remembered, but we do have a skip-mode option in non_negative_tucker_hals which is another algorithm for computing NTD that I would recommend giving a try.

So to solve your issue, although this is not ideal performance-wise, you can do the following:
1/ use non_negative_tucker_hals() to compute NTD
2/ in the init= field, choose a tucker tensor where you have identity matrices along the modes that should not be decomposed.
3/ in the fixed_modes= field, put a list with the indexes of the modes where the tensor is not decomposed.
This should work just fine. Here is some tentative example code, if you want to decompose a tensor along modes 1 and 2 but keep the mode 0 fixed:

import tensorly as tl
from tensorly.decomposition import non_negative_tucker_hals

data = tl.abs(tl.randn([5,5,5]))
tucker_init = tl.tucker_tensor.TuckerTensor((tl.abs(tl.randn([5,3,3])),[tl.eye(5),tl.abs(tl.randn([5,3])), tl.abs(tl.randn([5,3]))]))
out = non_negative_tucker_hals(data, [5,3,3], init=tucker_init, fixed_modes=[0])

from tensorly.

JeanKossaifi avatar JeanKossaifi commented on May 30, 2024

Thanks @cohenjer. I think @MelanieN refers to the partial_tucker in which case we don't have any projection matrix at all along some of the modes.

We could use a full Tucker along with a skip_mode param and create a (fixed) identity for that mode though ideally we'd just want to make an NN partial_tucker and completely skip computation along the skip modes.

from tensorly.

MelanieN avatar MelanieN commented on May 30, 2024

Hi, thanks for the reply! It is indeed as @JeanKossaifi mentions, but I am not so familiar with tensor theory, just applying it. I look forward to any updates on this topic!

from tensorly.

MelanieN avatar MelanieN commented on May 30, 2024

Thank you, I'll give this a try!

from tensorly.

JeanKossaifi avatar JeanKossaifi commented on May 30, 2024

@MelanieN did this work for you?

from tensorly.

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.