foscat 3.0.27__tar.gz → 3.0.28__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {foscat-3.0.27 → foscat-3.0.28}/PKG-INFO +1 -1
- {foscat-3.0.27 → foscat-3.0.28}/setup.py +1 -1
- {foscat-3.0.27 → foscat-3.0.28}/src/foscat/FoCUS.py +1 -1
- {foscat-3.0.27 → foscat-3.0.28}/src/foscat/scat1D.py +19 -0
- {foscat-3.0.27 → foscat-3.0.28}/src/foscat/scat_cov1D.py +24 -5
- {foscat-3.0.27 → foscat-3.0.28}/src/foscat.egg-info/PKG-INFO +1 -1
- {foscat-3.0.27 → foscat-3.0.28}/README.md +0 -0
- {foscat-3.0.27 → foscat-3.0.28}/setup.cfg +0 -0
- {foscat-3.0.27 → foscat-3.0.28}/src/foscat/CNN.py +0 -0
- {foscat-3.0.27 → foscat-3.0.28}/src/foscat/CircSpline.py +0 -0
- {foscat-3.0.27 → foscat-3.0.28}/src/foscat/GCNN.py +0 -0
- {foscat-3.0.27 → foscat-3.0.28}/src/foscat/GetGPUinfo.py +0 -0
- {foscat-3.0.27 → foscat-3.0.28}/src/foscat/Softmax.py +0 -0
- {foscat-3.0.27 → foscat-3.0.28}/src/foscat/Spline1D.py +0 -0
- {foscat-3.0.27 → foscat-3.0.28}/src/foscat/Synthesis.py +0 -0
- {foscat-3.0.27 → foscat-3.0.28}/src/foscat/__init__.py +0 -0
- {foscat-3.0.27 → foscat-3.0.28}/src/foscat/backend.py +0 -0
- {foscat-3.0.27 → foscat-3.0.28}/src/foscat/backend_tens.py +0 -0
- {foscat-3.0.27 → foscat-3.0.28}/src/foscat/loss_backend_tens.py +0 -0
- {foscat-3.0.27 → foscat-3.0.28}/src/foscat/loss_backend_torch.py +0 -0
- {foscat-3.0.27 → foscat-3.0.28}/src/foscat/scat.py +0 -0
- {foscat-3.0.27 → foscat-3.0.28}/src/foscat/scat2D.py +0 -0
- {foscat-3.0.27 → foscat-3.0.28}/src/foscat/scat_cov.py +0 -0
- {foscat-3.0.27 → foscat-3.0.28}/src/foscat/scat_cov2D.py +0 -0
- {foscat-3.0.27 → foscat-3.0.28}/src/foscat/scat_cov_map.py +0 -0
- {foscat-3.0.27 → foscat-3.0.28}/src/foscat/scat_cov_map2D.py +0 -0
- {foscat-3.0.27 → foscat-3.0.28}/src/foscat.egg-info/SOURCES.txt +0 -0
- {foscat-3.0.27 → foscat-3.0.28}/src/foscat.egg-info/dependency_links.txt +0 -0
- {foscat-3.0.27 → foscat-3.0.28}/src/foscat.egg-info/requires.txt +0 -0
- {foscat-3.0.27 → foscat-3.0.28}/src/foscat.egg-info/top_level.txt +0 -0
|
@@ -3,7 +3,7 @@ from setuptools import setup, find_packages
|
|
|
3
3
|
|
|
4
4
|
setup(
|
|
5
5
|
name='foscat',
|
|
6
|
-
version='3.0.
|
|
6
|
+
version='3.0.28',
|
|
7
7
|
description='Generate synthetic Healpix or 2D data using Cross Scattering Transform' ,
|
|
8
8
|
long_description='Utilize the Cross Scattering Transform (described in https://arxiv.org/abs/2207.12527) to synthesize Healpix or 2D data that is suitable for component separation purposes, such as denoising. \n A demo package for this process can be found at https://github.com/jmdelouis/FOSCAT_DEMO. \n Complete doc can be found at https://foscat-documentation.readthedocs.io/en/latest/index.html. \n\n List of developers : J.-M. Delouis, T. Foulquier, L. Mousset, T. Odaka, F. Paul, E. Allys ' ,
|
|
9
9
|
license='MIT',
|
|
@@ -54,6 +54,25 @@ class scat1D:
|
|
|
54
54
|
return np.concatenate(tmp,1)
|
|
55
55
|
else:
|
|
56
56
|
return self.backend.bk_concat(tmp,1)
|
|
57
|
+
# ---------------------------------------------−---------
|
|
58
|
+
def flatten_name(self,S2L=True,P00=True):
|
|
59
|
+
|
|
60
|
+
tmp=['S0']
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
tmp=tmp+['S1_%d'%(k) for k in range(self.S1.shape[-1])]
|
|
64
|
+
|
|
65
|
+
if P00:
|
|
66
|
+
tmp=tmp+['P00_%d'%(k) for k in range(self.P00.shape[-1])]
|
|
67
|
+
|
|
68
|
+
j1,j2=self.get_j_idx()
|
|
69
|
+
|
|
70
|
+
tmp=tmp+['S2_%d-%d'%(j1[k],j2[k]) for k in range(self.S2.shape[-1])]
|
|
71
|
+
|
|
72
|
+
if S2L:
|
|
73
|
+
tmp=tmp+['S2L_%d-%d'%(j1[k],j2[k]) for k in range(self.S2.shape[-1])]
|
|
74
|
+
|
|
75
|
+
return tmp
|
|
57
76
|
|
|
58
77
|
def get_j_idx(self):
|
|
59
78
|
return self.j1,self.j2
|
|
@@ -793,23 +793,42 @@ class scat_cov1D:
|
|
|
793
793
|
return self.backend.bk_reshape(table,[table.shape[0],ndata])
|
|
794
794
|
|
|
795
795
|
# ---------------------------------------------−---------
|
|
796
|
-
def flatten(self
|
|
796
|
+
def flatten(self):
|
|
797
797
|
tmp=[self.build_flat(self.P00)]
|
|
798
798
|
|
|
799
799
|
if self.S1 is not None:
|
|
800
|
-
tmp=[self.build_flat(self.S1)]
|
|
800
|
+
tmp=tmp+[self.build_flat(self.S1)]
|
|
801
801
|
|
|
802
|
-
tmp=[self.build_flat(self.C01)]
|
|
802
|
+
tmp=tmp+[self.build_flat(self.C01)]
|
|
803
803
|
|
|
804
804
|
if self.C10 is not None:
|
|
805
|
-
tmp=[self.build_flat(self.C10)]
|
|
805
|
+
tmp=tmp+[self.build_flat(self.C10)]
|
|
806
806
|
|
|
807
|
-
tmp=[self.build_flat(self.C11)]
|
|
807
|
+
tmp=tmp+[self.build_flat(self.C11)]
|
|
808
808
|
|
|
809
809
|
if isinstance(self.P00,np.ndarray):
|
|
810
810
|
return np.concatenate(tmp,1)
|
|
811
811
|
else:
|
|
812
812
|
return self.backend.bk_concat(tmp,1)
|
|
813
|
+
|
|
814
|
+
# ---------------------------------------------−---------
|
|
815
|
+
def flatten_name(self):
|
|
816
|
+
tmp=['P00_%d'%(k) for k in range(self.P00.shape[-1])]
|
|
817
|
+
|
|
818
|
+
if self.S1 is not None:
|
|
819
|
+
tmp=tmp+['S1_%d'%(k) for k in range(self.S1.shape[-1])]
|
|
820
|
+
|
|
821
|
+
j1,j2=self.get_j_idx()
|
|
822
|
+
|
|
823
|
+
tmp=tmp+['C01_%d-%d'%(j1[k],j2[k]) for k in range(self.C01.shape[-1])]
|
|
824
|
+
|
|
825
|
+
if self.C10 is not None:
|
|
826
|
+
tmp=tmp+['C10_%d-%d'%(j1[k],j2[k]) for k in range(self.C10.shape[-1])]
|
|
827
|
+
|
|
828
|
+
j1,j2,j3=self.get_jc11_idx()
|
|
829
|
+
tmp=tmp+['C11_%d-%d-%d'%(j1[k],j2[k],j3[k]) for k in range(self.C11.shape[-1])]
|
|
830
|
+
|
|
831
|
+
return tmp
|
|
813
832
|
|
|
814
833
|
|
|
815
834
|
def add_data_from_log_slope(self,y,n,ds=3):
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|