Oane Gros
Oane Gros
Hi Mark, thanks for the quick response :) When running plot_spectrum with default normalization: ``` zero, w = pysh.expand.SHGLQ(251) glq = pysh.expand.SHExpandGLQ(projection, zero=zero, w=w) clm = pysh.SHCoeffs.from_array(glq) clm.plot_spectrum() plt.show() ```...
Hi, I figured out part of what i was doing wrong to cause this behaviour, I was using `zero, w = pysh.expand.SHGLQ(251)` for a 251x502 map, that needed `zero, w...
Hi, a minimal example is: ``` import numpy as np import pyshtools as pysh projection = np.loadtxt('./testprojection.csv',delimiter=',') zero, w = pysh.expand.SHGLQ(250) glq = pysh.expand.SHExpandGLQ(projection, zero=zero, w=w) # np.save('./glq_410.npy',glq) v10version =...
Yes, so this was using rosetta (the Mac M1 ARM to x86 translation layer), which was specified with the `CONDA_SUBDIR=osx-64` flag in my install command: `CONDA_SUBDIR=osx-64 mamba create --name test_shtools9_1...
(in the Object Classification pipeline)
Ah okay, i didn't notice the compressed hdf5 option, maybe this is a useful default in general?
Alternatively, an easy fix for the consistency of the hyperparameter that does not require full hyperparameter support would be to at least regroup all neighborhood parameters into one subgroup, called...
Bumping this issue as there hasn't been an update in a while, could the neighborhood in given segmentation masks be changed to eight? It doesn't even have to be a...
currently Object Classification workflows are split up by input type, so adding post-workflow choice ambiguity of data type would be inconsistent (or everything would have to be unified in the...
Oh interesting! I had it fail when multiple threads were trying to execute SHExpandGLQ calls on different datasets (with the same dimensions) at the same time. The failure was then...