快速且稳健的单变量和多变量核密度估计工具
项目描述
软件概述
fastKDE可以计算任意维度数据的核密度估计;它使用最近开发的KDE技术快速且稳健地进行。它的统计技能与科学前沿的‘R’ KDE软件包相当,对于双变量数据(对于更高维度有更好的改进),其速度提高了10000倍。
请在使用此方法时引用以下论文
示例用法
对于标准PDF
#!python import numpy as np from fastkde import fastKDE import pylab as PP #Generate two random variables dataset (representing 100000 pairs of datapoints) N = 2e5 var1 = 50*np.random.normal(size=N) + 0.1 var2 = 0.01*np.random.normal(size=N) - 300 #Do the self-consistent density estimate myPDF,axes = fastKDE.pdf(var1,var2) #Extract the axes from the axis list v1,v2 = axes #Plot contours of the PDF should be a set of concentric ellipsoids centered on #(0.1, -300) Comparitively, the y axis range should be tiny and the x axis range #should be large PP.contour(v1,v2,myPDF) PP.show()
对于条件PDF
以下代码生成一个非平凡联合分布的样本
from fastkde import fastKDE
import pylab as PP
import numpy as np
#***************************
# Generate random samples
#***************************
# Stochastically sample from the function underlyingFunction() (a sigmoid):
# sample the absicissa values from a gamma distribution
# relate the ordinate values to the sample absicissa values and add
# noise from a normal distribution
#Set the number of samples
numSamples = int(1e6)
#Define a sigmoid function
def underlyingFunction(x,x0=305,y0=200,yrange=4):
return (yrange/2)*np.tanh(x-x0) + y0
xp1,xp2,xmid = 5,2,305 #Set gamma distribution parameters
yp1,yp2 = 0,12 #Set normal distribution parameters (mean and std)
#Generate random samples of X from the gamma distribution
x = -(np.random.gamma(xp1,xp2,int(numSamples))-xp1*xp2) + xmid
#Generate random samples of y from x and add normally distributed noise
y = underlyingFunction(x) + np.random.normal(loc=yp1,scale=yp2,size=numSamples)
现在我们有了x,y样本,以下代码计算条件分布
#***************************
# Calculate the conditional
#***************************
pOfYGivenX,axes = fastKDE.conditional(y,x)
以下图形显示了结果
#***************************
# Plot the conditional
#***************************
fig,axs = PP.subplots(1,2,figsize=(10,5))
#Plot a scatter plot of the incoming data
axs[0].plot(x,y,'k.',alpha=0.1)
axs[0].set_title('Original (x,y) data')
#Set axis labels
for i in (0,1):
axs[i].set_xlabel('x')
axs[i].set_ylabel('y')
#Draw a contour plot of the conditional
axs[1].contourf(axes[0],axes[1],pOfYGivenX,64)
#Overplot the original underlying relationship
axs[1].plot(axes[0],underlyingFunction(axes[0]),linewidth=3,linestyle='--',alpha=0.5)
axs[1].set_title('P(y|x)')
#Set axis limits to be the same
xlim = [np.amin(axes[0]),np.amax(axes[0])]
ylim = [np.amin(axes[1]),np.amax(axes[1])]
axs[1].set_xlim(xlim)
axs[1].set_ylim(ylim)
axs[0].set_xlim(xlim)
axs[0].set_ylim(ylim)
fig.tight_layout()
PP.savefig('conditional_demo.png')
PP.show()
条件PDF
如何设置?
标准的python构建: python setup.py install
或
pip install fastkde
下载源代码
请联系Travis A. O’Brien TAOBrien@lbl.gov以获取源代码的最新版本。
安装先决条件
此代码需要以下软件
Python >= 2.7.3
Numpy >= 1.7
scipy
cython
版权信息
LAWRENCE BERKELEY NATIONAL LABORATORY RESEARCH & DEVELOPMENT, NON-COMMERCIAL USE ONLY, LICENSE Copyright (c) 2015, The Regents of the University of California, through Lawrence Berkeley National Laboratory (subject to receipt of any required approvals from the U.S. Dept. of Energy). All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: (1) Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. (2) Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. (3) Neither the name of the University of California, Lawrence Berkeley National Laboratory, U.S. Dept. of Energy nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. (4) Use of the software, in source or binary form is FOR RESEARCH & DEVELOPMENT, NON-COMMERCIAL USE, PURPOSES ONLY. All commercial use rights for the software are hereby reserved. A separate commercial use license is available from Lawrence Berkeley National Laboratory. (5) In the event you create any bug fixes, patches, upgrades, updates, modifications, derivative works or enhancements to the source code or binary code of the software ("Enhancements") you hereby grant The Regents of the University of California and the U.S. Government a paid-up, non-exclusive, irrevocable, worldwide license in the Enhancements to reproduce, prepare derivative works, distribute copies to the public, perform publicly and display publicly, and to permit others to do so. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *** Copyright Notice *** FastKDE v1.0, Copyright (c) 2015, The Regents of the University of California, through Lawrence Berkeley National Laboratory (subject to receipt of any required approvals from the U.S. Dept. of Energy). All rights reserved. If you have questions about your rights to use or distribute this software, please contact Berkeley Lab's Innovation & Partnerships Office at IPO@lbl.gov. NOTICE. This software was developed under funding from the U.S. Department of Energy. As such, the U.S. Government has been granted for itself and others acting on its behalf a paid-up, nonexclusive, irrevocable, worldwide license in the Software to reproduce, prepare derivative works, and perform publicly and display publicly. Beginning five (5) years after the date permission to assert copyright is obtained from the U.S. Department of Energy, and subject to any subsequent five (5) year renewals, the U.S. Government is granted for itself and others acting on its behalf a paid-up, nonexclusive, irrevocable, worldwide license in the Software to reproduce, prepare derivative works, distribute copies to the public, perform publicly and display publicly, and to permit others to do so. ****************************
项目详情
下载文件
下载适合您平台的文件。如果您不确定选择哪个,请了解有关安装包的更多信息。
源代码分发
psyneulink-fastkde-1.0.19.tar.gz (208.3 kB 查看哈希值)
构建分发
关闭
psyneulink-fastkde-1.0.19.tar.gz 的哈希值
算法 | 哈希摘要 | |
---|---|---|
SHA256 | 811ca0844acffe626a8d4dec125e91f2d98927febd36b3aff98b1b2009676095 |
|
MD5 | ae60d2c68efa54480a3e142e86b7dfed |
|
BLAKE2b-256 | a5aa98db022a3c85bdf2ee4d1810fc739b2ded630489f5d24434679dea7cab70 |
关闭
psyneulink_fastkde-1.0.19-cp39-cp39-win_amd64.whl 的哈希值
算法 | 哈希摘要 | |
---|---|---|
SHA256 | e32a6c3750cd69172175eb5886f8d89e9d70e630bb7138bbf903a351cc3e0fd6 |
|
MD5 | b1067e39a52f35b2e8079e9b8caa096e |
|
BLAKE2b-256 | 3dfd8e9393023521129f5bd3485a6a39f32cbfe5b432e9f7f09827d8894f5bb9 |
关闭
psyneulink_fastkde-1.0.19-cp39-cp39-manylinux2014_aarch64.whl 的哈希值
算法 | 哈希摘要 | |
---|---|---|
SHA256 | 92bb8dc7c771075ee088b02f0fa2734291956f892f2ccd43c541e037634c135e |
|
MD5 | 821ed6179e58f60bad4f975effec001a |
|
BLAKE2b-256 | ff301fec1c0947c463f440e9c18240dbb7d83c728fd805caa60c29249df26188 |
关闭
psyneulink_fastkde-1.0.19-cp39-cp39-manylinux2010_x86_64.whl 的哈希值
算法 | 哈希摘要 | |
---|---|---|
SHA256 | 82ee19bdfb5158f7152df8e899a2d9f080caa8b80a5d4f3ea1346569acaaf2da |
|
MD5 | 2a0e55621acd12a02b8ce70ae4ec4c9c |
|
BLAKE2b-256 | 79d43ed4c35fe39db7c405c1496e5e277b429af70b79bf23bf7a35cf1e609b83 |
关闭
psyneulink_fastkde-1.0.19-cp39-cp39-manylinux2010_i686.whl 的哈希值
算法 | 哈希摘要 | |
---|---|---|
SHA256 | 8ad9dd337a2592e209b69b44e36aa9c86c993d9949683087f5a1e98857c168ad |
|
MD5 | 3d61fa0be3d468339bfe12d6589373d9 |
|
BLAKE2b-256 | 4b8fd87e34a232c6572d7ff7ed9edc42a1c89bb8bc4b6842aaf6413cea0d0dad |
关闭
psyneulink_fastkde-1.0.19-cp39-cp39-manylinux1_x86_64.whl 的哈希值
算法 | 哈希摘要 | |
---|---|---|
SHA256 | 7bea637d0d4bbc09c7020c8ec0346bd22ceb96200661953d2bfba6f2df9ce87d |
|
MD5 | 934d80daae36775c4e596792b7d5dceb |
|
BLAKE2b-256 | 741425835d932609ecd2aec6d8c22b4758564c36f0a18c17c60fd344a3c83a40 |
关闭
psyneulink_fastkde-1.0.19-cp39-cp39-manylinux1_i686.whl 的哈希值
算法 | 哈希摘要 | |
---|---|---|
SHA256 | 3ba443f3cc11b635e173f3d4be6f910d40630de908f4abe4890d3cb140fcc7ec |
|
MD5 | 9b4f6e46372cda4cce28b004ed9a4fad |
|
BLAKE2b-256 | e2b3a10057117ba45610d07159a1dae4112352da639d8e11c48ecee5d1c3a35b |
关闭
哈希值 用于 psyneulink_fastkde-1.0.19-cp39-cp39-macosx_10_9_x86_64.whl
算法 | 哈希摘要 | |
---|---|---|
SHA256 | b308209c32f25d932e6b7b6cdb52c0f9d1aaee3521fd558bac1a4cb4c42c2ffa |
|
MD5 | 4cc04986f7bbea8b9389c7a90e7e26d4 |
|
BLAKE2b-256 | 83080e517246d8913d98b47f867f01517020757908a8492da0b41a83acc70700 |
关闭
哈希值 用于 psyneulink_fastkde-1.0.19-cp39-cp39-macosx_10_9_universal2.whl
算法 | 哈希摘要 | |
---|---|---|
SHA256 | b0f0aaf77365c708e1d0e2bdbbf8c3ff1b5d31382e5f79b9a9862db81b92d577 |
|
MD5 | 400fcbc073553f14453aadd8821258c1 |
|
BLAKE2b-256 | 23be5fbb6862af93e3bad502c5c20b2dc510255269aa181c1d9dc2c143dc55d8 |
关闭
哈希值 用于 psyneulink_fastkde-1.0.19-cp38-cp38-win_amd64.whl
算法 | 哈希摘要 | |
---|---|---|
SHA256 | b153e15dbf560a35ebf1c474fc45abd9a163f6d01b9417aabfc7bceb5e02433e |
|
MD5 | b90562d81b1c99c8da72ebe80b2d2cf3 |
|
BLAKE2b-256 | 6d4e802ddb4e150510e6f6086995d36e1b5df5160051de1d57ac117bc11fc6f0 |
关闭
哈希值 用于 psyneulink_fastkde-1.0.19-cp38-cp38-manylinux2014_aarch64.whl
算法 | 哈希摘要 | |
---|---|---|
SHA256 | 7b7d4803d7fa004c92a4db81af722131f701467a5abfc83365acb8f1f0f5eca9 |
|
MD5 | af03e46b47773b00301a45afe3505c42 |
|
BLAKE2b-256 | 01b3b5be44b814f85b07d267b47b88a7cd45fe378fd4abde8714acaf2ecef348 |
关闭
哈希值 用于 psyneulink_fastkde-1.0.19-cp38-cp38-manylinux2010_x86_64.whl
算法 | 哈希摘要 | |
---|---|---|
SHA256 | f83edf0104b97f9f713d3afa0159d43ccf01d98ab3d09aa0516c3f08fb48f6d1 |
|
MD5 | ffe5ac0bc7d7d4837ab3ccb361f5d11f |
|
BLAKE2b-256 | de63a698fba01972f0f436472bd4c8ed5ae00bfaf336bb8603dbecf849c5ea1e |
关闭
哈希值 用于 psyneulink_fastkde-1.0.19-cp38-cp38-manylinux2010_i686.whl
算法 | 哈希摘要 | |
---|---|---|
SHA256 | c74619fc56f92c8bc17d2a78fcb06ce4dc012a8f57ef9a3f450bc9ee718a15fc |
|
MD5 | b71bed6b87e6d4908620e31d7964ee97 |
|
BLAKE2b-256 | f1832e717949775dd4caa1af40bde0f8660d2c587cd5d730d0973591d3b4e3f4 |
关闭
哈希值 用于 psyneulink_fastkde-1.0.19-cp38-cp38-manylinux1_x86_64.whl
算法 | 哈希摘要 | |
---|---|---|
SHA256 | 3a1f5d73b2701d8a6c67ac536cf7abfea929fa29426d2543f33bf64714a39bfe |
|
MD5 | 3c914886463788e82f9a9d82f0ef53af |
|
BLAKE2b-256 | 73eeffe0caeeb5a90079fce8bed3cbaa266e58c645bf83c483999c86e1df7360 |
关闭
哈希值 用于 psyneulink_fastkde-1.0.19-cp38-cp38-manylinux1_i686.whl
算法 | 哈希摘要 | |
---|---|---|
SHA256 | efe6ce77150d6ef766db9d1c64ccd995992f29b56c662cc1c9f1349d679b2103 |
|
MD5 | 3a2177469925f660e5380572219b081d |
|
BLAKE2b-256 | 378318f131307e5913b6c9273521e0f87d8dd59fc6a0c111fc5cb588f1c2b70a |
关闭
哈希值 用于 psyneulink_fastkde-1.0.19-cp38-cp38-macosx_10_9_x86_64.whl
算法 | 哈希摘要 | |
---|---|---|
SHA256 | 7acc43963b7cba0c1eb3588f93b95ea6199b6b651dc6aaf342f4b6a0e2035378 |
|
MD5 | 9c20c2c324e62343224d67833fe198b5 |
|
BLAKE2b-256 | a80090eb711212a35b455610967a3cbe06dad7c0b47501e89121831deff91e1b |
关闭
哈希值 用于 psyneulink_fastkde-1.0.19-cp37-cp37m-win_amd64.whl
算法 | 哈希摘要 | |
---|---|---|
SHA256 | 794b4d94c6b77bc180d446f8aca7ab69310a43a1f1a316ff585562c2b5f4bdbc |
|
MD5 | f490cf611e7c9e102b2a6a5a54036329 |
|
BLAKE2b-256 | af1cab86dda077484c090561c139f267594ef3796016368ff9efebd2aa6a10a4 |
关闭
哈希值 用于 psyneulink_fastkde-1.0.19-cp37-cp37m-manylinux2014_aarch64.whl
算法 | 哈希摘要 | |
---|---|---|
SHA256 | b7f597f1a3785df6fbe0a77b55172183e25ee99045d0e89c4a81e5560783a5ef |
|
MD5 | 56f7a4efc9aa7c8b55a1d712ce99a4d4 |
|
BLAKE2b-256 | 3130270245137ed875141f7f2253e0292d3b5a36c214ec97ec4d9c852837843b |
关闭
哈希值 用于 psyneulink_fastkde-1.0.19-cp37-cp37m-manylinux2010_x86_64.whl
算法 | 哈希摘要 | |
---|---|---|
SHA256 | fc311b0f44709d96f8d2acca807907117d312b21a6797bc4efa77ca62ca9a759 |
|
MD5 | b9630232577041bc5359e19a54b5dc4d |
|
BLAKE2b-256 | 666c2132aec41b72004a8799c53382cdda461ec093839b3c6029ae409bda538f |
关闭
哈希值 用于 psyneulink_fastkde-1.0.19-cp37-cp37m-manylinux2010_i686.whl
算法 | 哈希摘要 | |
---|---|---|
SHA256 | 68467e6dbf7fa3ceaf983ebb18105a35d28f740a4d8f0cea5a1586733a11dd1b |
|
MD5 | ab72f5d32014a55e2c14834e41517e2d |
|
BLAKE2b-256 | 00428c3505b115dd0eb1212cd13dc0acaf75aecc0c3b013a572c1e41e1db91af |
关闭
哈希值 用于 psyneulink_fastkde-1.0.19-cp37-cp37m-manylinux1_x86_64.whl
算法 | 哈希摘要 | |
---|---|---|
SHA256 | 09d8a94e32e14bbd63fa6d8c147cc9dc9f5027b596101a68d702df510c41d244 |
|
MD5 | cb7fc6dd4aa4af17bb2cb1221116bb1e |
|
BLAKE2b-256 | 6810679f460bec046d60520fc992afd9b7000a241910b0f621eae5b96958a1ba |
关闭
哈希值 用于 psyneulink_fastkde-1.0.19-cp37-cp37m-manylinux1_i686.whl
算法 | 哈希摘要 | |
---|---|---|
SHA256 | 196229caa539b59896d923e53e667e37da7c790d4f6e98927d41fb1ba281f6e6 |
|
MD5 | 1b3ad3e9def55bc928800bc1eef1de9b |
|
BLAKE2b-256 | 4caa3de470e8fad58d3dff482b6abde2a7cb95fd84456917fe853d0c6a29c8e1 |
关闭
哈希值 用于 psyneulink_fastkde-1.0.19-cp37-cp37m-macosx_10_9_x86_64.whl
算法 | 哈希摘要 | |
---|---|---|
SHA256 | b8351518d3ae38b1992c553bde80bdec526ec72da8a40339ecfc5507aa3ae52b |
|
MD5 | 6499eba426bb8ca14db3b5fd4c7d4ed4 |
|
BLAKE2b-256 | aa305d8001f913b29c1f05f00d697fa982ff896f020239f07efea3389d3559a8 |
关闭
哈希值 用于 psyneulink_fastkde-1.0.19-cp36-cp36m-win_amd64.whl
算法 | 哈希摘要 | |
---|---|---|
SHA256 | 19a2abd44240bc29efbb50d5fc5d00001392510348d791de592aa56f5d38ecef |
|
MD5 | 54b3aac397e93e9d42a147c9ab2179d2 |
|
BLAKE2b-256 | a705f89e0805d0bd747e291f84ee579c72eac75ea1554b8e816c71b9f1810953 |
关闭
哈希值 用于 psyneulink_fastkde-1.0.19-cp36-cp36m-manylinux2014_aarch64.whl
算法 | 哈希摘要 | |
---|---|---|
SHA256 | 35456c73cdf92d534ff10fc924a1b392d04de350a2972d4f486d4d90c206ed66 |
|
MD5 | b61a4f503c71a81312fbb1d717d31035 |
|
BLAKE2b-256 | 050f01323b77752a0802196043e6fd7bf49d7f9481cd5881ecf749c8faa6743b |
关闭
哈希值 用于 psyneulink_fastkde-1.0.19-cp36-cp36m-manylinux2010_x86_64.whl
算法 | 哈希摘要 | |
---|---|---|
SHA256 | f4ad9136626c334787f8d0053e3043b9a7cfb471edc623f6f3fc04972de80f35 |
|
MD5 | cfc148a9e87bc235b334890506392c63 |
|
BLAKE2b-256 | 766af9b16d8cc53f4af427d0f955ffb98161afca4f2aec1835d7daf16662b0f4 |
关闭
哈希值 用于 psyneulink_fastkde-1.0.19-cp36-cp36m-manylinux2010_i686.whl
算法 | 哈希摘要 | |
---|---|---|
SHA256 | 7c3c1e073a0f60fb3a3cac629324f3c051102161cdbcbc85cc49ab228ff2cc4b |
|
MD5 | 59b743789ef3cfdb3ce0305fe28aff8b |
|
BLAKE2b-256 | 02d7b4173a6fab40f9d9b72f612c0d23c97277d964df6964792f5e984e31a4da |
关闭
哈希值 用于 psyneulink_fastkde-1.0.19-cp36-cp36m-manylinux1_x86_64.whl
算法 | 哈希摘要 | |
---|---|---|
SHA256 | 60a83efe6e20dccb510248bc0583883fb7a786a007d14d1c807c2fdad6737af1 |
|
MD5 | 0a81519d86dac7a4a318f62da8a2d4d8 |
|
BLAKE2b-256 | fa5e9f7e74d78c4825fb084224f5a1bbc2f1811ddf610e5a38a5669226ab157d |
关闭
哈希值 用于 psyneulink_fastkde-1.0.19-cp36-cp36m-manylinux1_i686.whl
算法 | 哈希摘要 | |
---|---|---|
SHA256 | af8198f24cdf3a5808b1b9b493860bc260f690e322672bd9195617dbcd16bd37 |
|
MD5 | 1a3da7c1e77251e2880b796fc3651199 |
|
BLAKE2b-256 | ca7f7567366c61d43d0dff070e0bf048e2fa378075fb4b3199f65cd74db2ed7a |
关闭
哈希值 用于 psyneulink_fastkde-1.0.19-cp36-cp36m-macosx_10_9_x86_64.whl
算法 | 哈希摘要 | |
---|---|---|
SHA256 | c0fd28c9546f1c1169769d3a5bd9425614dfca165e818a7216db9ed4f7f9d772 |
|
MD5 | c37299c6e93560ce74da8f8b1aa24c4b |
|
BLAKE2b-256 | 356429581e679daa30682f9afc5c1f104276bc8a953c996fbe244cff58cb034b |
关闭
哈希值 用于 psyneulink_fastkde-1.0.19-cp35-cp35m-win_amd64.whl
算法 | 哈希摘要 | |
---|---|---|
SHA256 | 2bc044462b8e442fe469314191179b20901c5f6a1d0524a6e24517140b297397 |
|
MD5 | 295963ab156c52849da675a7935db9d2 |
|
BLAKE2b-256 | b70fe98664260940d9582296c7a6fdef3ff818b676a16b858efb6ce85d0a35dd |
关闭
哈希值 用于 psyneulink_fastkde-1.0.19-cp35-cp35m-manylinux2010_x86_64.whl
算法 | 哈希摘要 | |
---|---|---|
SHA256 | a8b8a2fd244bae6910146652b1ed17117604f8cf535b54ad68651a4732ce6464 |
|
MD5 | 4b942718b83d0cad5e2bc644cb3bc0da |
|
BLAKE2b-256 | 93fc60f57976915dabe2c71b41faf413b4e0305474ab8cae0873659278898d9f |
关闭
哈希值 用于 psyneulink_fastkde-1.0.19-cp35-cp35m-manylinux2010_i686.whl
算法 | 哈希摘要 | |
---|---|---|
SHA256 | fd2f17cdb45bed5d9ab52d74b0d482ea41d8858e71c27f081a43640d1b129ba0 |
|
MD5 | 字符串 a39be62a7463381bd84a8664083af68a |
|
BLAKE2b-256 | 字符串 9d408eeee8e21b00cfb6abbbf7fd19dc9b32c43068ac26901529c9d523dab0fd |
关闭
哈希值 用于 psyneulink_fastkde-1.0.19-cp35-cp35m-manylinux1_x86_64.whl
算法 | 哈希摘要 | |
---|---|---|
SHA256 | 哈希值 0feabdec997d7dc9ab88fb93d6cdb91df32e111fe998ed888bb9e454347ac6e5 |
|
MD5 | 哈希值 da4aa9b156ce634cdeaa30448cae4570 |
|
BLAKE2b-256 | 哈希值 792f261eb6693582a9c2bd8c9ceabbb68359efe5e451666045891fcd488fdf68 |
关闭
哈希值 用于 psyneulink_fastkde-1.0.19-cp35-cp35m-manylinux1_i686.whl
算法 | 哈希摘要 | |
---|---|---|
SHA256 | 哈希值 73f843ae34a9806359e25a714e1a7fc7c489d836c1cdfce927a242ae3c4bb0e8 |
|
MD5 | 哈希值 d969226b3e9cf8180310f50f26836cc1 |
|
BLAKE2b-256 | 哈希值 38c6e1ed0af64f0757559a2908a56272d0c4e7a32983e85ccb86bf72d3c10853 |
关闭
哈希值 用于 psyneulink_fastkde-1.0.19-cp35-cp35m-macosx_10_9_x86_64.whl
算法 | 哈希摘要 | |
---|---|---|
SHA256 | 哈希值 2c3da4abdeaf9030da4a6ced0aa93526417636253cf9e9b9b064b22e90507021 |
|
MD5 | 哈希值 f7d9b16ab7f2d09d151fa0a100be99af |
|
BLAKE2b-256 | 哈希值 9320024421450d10f1e9c2110ef3348bc2063d22982fd62510827cb20d4d12e9 |