Thomas Boggs

Results 45 comments of Thomas Boggs

I thought about adding options to `fit` but it seemed that it would be more confusing rather than less. First, continuing only makes sense for the same corpus so either...

Take your time. I'm content using my fork in the meantime. Understood regarding the sklearn interface. But one difference I see (maybe I'm missing something) is that the NMF interface...

Wait... I thought _I_ was the one who was supposed to be breaking the sklearn paradigm. :wink: Just kidding. There are likely a few issues with running multiple threads, one...

I think that would work. Do you mean calling `fit` on the same model but with phi and theta as arguments or creating a new model with phi and theta...

My initial thought was just to have a simple interface for selecting a subset of bands from a `SpectralLibrary`, based on keywords or specific band indices. For example: - If...

If it is an ENVI-formatted file, then you should pass the name of the header file as the argument to `open_image`.

No, I mean that ENVI format includes an image file and a separate header file. `open_image` should be called using the header filename.

The ".bip" extension alone isn't sufficient to understand the format of the image data. At a minimum, the byte order, data type, and image dimensions need to be provided. Here's...

That is not an ENVI-formatted header so it won't work to add "ENVI" at the top. Plus, it is missing all of the required parameters from the example header I...