Wednesday, May 17, 2017
Saturday, April 22, 2017
eclipse package explorer hierarchical
层级显示
http://stackoverflow.com/questions/3915961/how-to-view-hierarchical-package-structure-in-eclipse-package-explorer
参加上面,ctrl+F10
Java执行jar包方式
http://www.cnblogs.com/adolfmc/archive/2012/10/07/2713562.html
用OneJar打包后Java -jar ****.jar总是运行指定的主方法,现在工程中有很多其他的主方法,想要运行指定的。可以用下面的命令:
java -classpath ****.jar ****.****.className [args]
java -classpath ****.jar ****.****.className [args]
- 顶
- 2
Wednesday, April 12, 2017
样本不均衡问题SMOTE
1.http://geek.csdn.net/news/detail/189985?url_type=39&object_type=webpage&pos=1
2.http://mp.weixin.qq.com/s?__biz=MzIxNjA2ODUzNg==&mid=403428182&idx=1&sn=2bd376b0eded604211f922b7ec6df5bf#rd
3.http://blog.csdn.net/Yaphat/article/details/52463304?locationNum=7
4.http://blog.csdn.net/yaphat/article/details/60347968
2.http://mp.weixin.qq.com/s?__biz=MzIxNjA2ODUzNg==&mid=403428182&idx=1&sn=2bd376b0eded604211f922b7ec6df5bf#rd
3.http://blog.csdn.net/Yaphat/article/details/52463304?locationNum=7
4.http://blog.csdn.net/yaphat/article/details/60347968
Thursday, April 6, 2017
python 添加自己开发的模块
- 定位模块文件地址的方法
import codecs
codecs.__file__
打印Python系统路径
import sys
sys.path
- 添加自己的模块
here are a few ways. One of the simplest is to create a
my-paths.pth file (as described here). This is just a file with the extension .pth that you put into your system site-packages
在site-packages中添加一个文件my-paths.pth,其中pth文件中添加自己的模块地址就行了
扩展 Python的内置函数
Subscribe to:
Posts (Atom)
