Skip to content

Commit

Permalink
Merge pull request #600 from WeBankFinTech/dev-2.4.8
Browse files Browse the repository at this point in the history
Update whitelist to support fate-v1.10.0
  • Loading branch information
mgqa34 authored Dec 29, 2022
2 parents 07c4aff + 1bc152f commit 0c41034
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 19 deletions.
2 changes: 1 addition & 1 deletion BUILD_INFO
Original file line number Diff line number Diff line change
@@ -1 +1 @@
eggroll.version=2.4.7
eggroll.version=2.4.8
45 changes: 29 additions & 16 deletions conf/whitelist.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"set"
],
"collections": [
"OrderedDict",
"defaultdict"
"defaultdict",
"OrderedDict"
],
"eggroll.core.transfer_model": [
"ErRollSiteHeader"
Expand All @@ -20,8 +20,8 @@
"PackingCipherTensorPackage"
],
"federatedml.ensemble.basic_algorithms.decision_tree.tree_core.feature_histogram": [
"FeatureHistogramWeights",
"HistogramBag"
"HistogramBag",
"FeatureHistogramWeights"
],
"federatedml.ensemble.basic_algorithms.decision_tree.tree_core.feature_importance": [
"FeatureImportance"
Expand All @@ -44,10 +44,16 @@
"federatedml.feature.binning.optimal_binning.bucket_info": [
"Bucket"
],
"federatedml.feature.binning.optimal_binning.heap": [
"MinHeap",
"IvHeapNode",
"GiniHeapNode",
"ChiSquareHeapNode"
],
"federatedml.feature.binning.quantile_summaries": [
"QuantileSummaries",
"SparseQuantileSummaries",
"Stats",
"SparseQuantileSummaries"
"QuantileSummaries"
],
"federatedml.feature.fate_element_type": [
"NoneType"
Expand All @@ -65,12 +71,12 @@
"SparseVector"
],
"federatedml.framework.weights": [
"TransferableWeights",
"DictWeights",
"NumpyWeights",
"TransferableWeights",
"NumericWeights",
"ListWeights",
"OrderDictWeights",
"NumericWeights"
"DictWeights",
"OrderDictWeights"
],
"federatedml.linear_model.linear_model_weight": [
"LinearModelWeights"
Expand All @@ -92,8 +98,8 @@
"CryptoExecutor"
],
"federatedml.secureprotol.symmetric_encryption.pohlig_hellman_encryption": [
"PohligHellmanCipherKey",
"PohligHellmanCiphertext"
"PohligHellmanCiphertext",
"PohligHellmanCipherKey"
],
"federatedml.statistic.intersect.intersect_preprocess": [
"BitArray"
Expand All @@ -105,12 +111,12 @@
"from_binary"
],
"numpy": [
"dtype",
"ndarray"
"ndarray",
"dtype"
],
"numpy.core.multiarray": [
"_reconstruct",
"scalar"
"scalar",
"_reconstruct"
],
"numpy.core.numeric": [
"_frombuffer"
Expand All @@ -123,5 +129,12 @@
],
"torch.storage": [
"_load_from_bytes"
],
"ipcl_python.bindings.ipcl_bindings": [
"ipclPublicKey"
],
"ipcl_python.ipcl_python": [
"PaillierPublicKey",
"PaillierEncryptedNumber"
]
}
2 changes: 1 addition & 1 deletion jvm/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@
<modelVersion>4.0.0</modelVersion>

<properties>
<eggroll.version>2.4.7</eggroll.version>
<eggroll.version>2.4.8</eggroll.version>

<!-- Languages -->
<code.cache.size>512m</code.cache.size>
Expand Down
2 changes: 1 addition & 1 deletion python/eggroll/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
# limitations under the License.
#

__version__ = "2.4.7"
__version__ = "2.4.8"

0 comments on commit 0c41034

Please sign in to comment.