过滤复杂的Map,map的value是一个List,把这个List中不满足要求的元素过滤掉。
使用java8 stream api应该这样写:
1 | public static void main(String[] args) { |
结果:
1 | {1=[M, F, M], 2=null, 3=[M, M, X, F, Y]} |
过滤复杂的Map,map的value是一个List,把这个List中不满足要求的元素过滤掉。
使用java8 stream api应该这样写:
1 | public static void main(String[] args) { |
结果:
1 | {1=[M, F, M], 2=null, 3=[M, M, X, F, Y]} |
Windows使用sklearn,需要安装Numpy+MKL或者Numpy+Vanilla。
下载地址:
1 | https://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy |
查看安装的版本。
1 | pip debug --verbose |
所以下载版本numpy‑1.22.4+vanilla‑cp310‑cp310‑win_amd64.whl
安装numpy+vanilla
1 | pip install "numpy-1.22.4+vanilla-cp310-cp310-win_amd64.whl" --user |
最后安装scikit-learn
1 | pip install scikit-learn --user |