-
大小: 7.47MB文件类型: .gz金币: 1下载: 0 次发布日期: 2023-11-02
- 语言: 其他
- 标签: scikit-learn python
资源简介
scikit-learn-0.17.tar.gz
代码片段和文件信息
#! /usr/bin/env python
#
# Copyright (C) 2007-2009 Cournapeau David
# 2010 Fabian Pedregosa
# License: 3-clause BSD
descr = “““A set of python modules for machine learning and data mining“““
import sys
import os
import shutil
from distutils.command.clean import clean as Clean
from pkg_resources import parse_version
if sys.version_info[0] < 3:
import __builtin__ as builtins
else:
import builtins
# This is a bit (!) hackish: we are setting a global variable so that the main
# sklearn __init__ can detect if it is being loaded by the setup routine to
# avoid attempting to load components that aren‘t built yet:
# the numpy distutils extensions that are used by scikit-learn to recursively
# build the compiled extensions in sub-packages is based on the Python import
# machinery.
builtins.__SKLEARN_SETUP__ = True
DISTNAME = ‘scikit-learn‘
DEscriptION = ‘A set of python modules for machine learning and data mining‘
with open(‘README.rst‘) as f:
LONG_DEscriptION = f.read()
MAINTAINER = ‘Andreas Mueller‘
MAINTAINER_EMAIL = ‘amueller@ais.uni-bonn.de‘
URL = ‘http://scikit-learn.org‘
LICENSE = ‘new BSD‘
DOWNLOAD_URL = ‘http://sourceforge.net/projects/scikit-learn/files/‘
# We can actually import a restricted version of sklearn that
# does not need the compiled code
import sklearn
VERSION = sklearn.__version__
# Optional setuptools features
# We need to import setuptools early if we want setuptools features
# as it monkey-patches the ‘setup‘ function
# For some commands use setuptools
SETUPTOOLS_COMMANDS = set([
‘develop‘ ‘release‘ ‘bdist_egg‘ ‘bdist_rpm‘
‘bdist_wininst‘ ‘install_egg_info‘ ‘build_sphinx‘
‘egg_info‘ ‘easy_install‘ ‘upload‘ ‘bdist_wheel‘
‘--single-version-externally-managed‘
])
if SETUPTOOLS_COMMANDS.intersection(sys.argv):
import setuptools
extra_setuptools_args = dict(
zip_safe=False # the package can run out of an .egg file
include_package_data=True
)
else:
extra_setuptools_args = dict()
# Custom clean command to remove build artifacts
class CleanCommand(Clean):
description = “Remove build artifacts from the source tree“
def run(self):
Clean.run(self)
if os.path.exists(‘build‘):
shutil.rmtree(‘build‘)
for dirpath dirnames filenames in os.walk(‘sklearn‘):
for filename in filenames:
if (filename.endswith(‘.so‘) or filename.endswith(‘.pyd‘)
or filename.endswith(‘.dll‘)
or filename.endswith(‘.pyc‘)):
os.unlink(os.path.join(dirpath filename))
for dirname in dirnames:
if dirname == ‘__pycache__‘:
shutil.rmtree(os.path.join(dirpath dirname))
cmdclass = {‘clean‘: CleanCommand}
# Optional wheelhouse-uploader features
# To automate release of binary packages for scikit-learn we need a tool
# to download the pa
- 上一篇:百度对象存储BOS
- 下一篇:zcu10_PS端LED开关工程
相关资源
- pywin32-220.win32-py3.4
- 实用数据挖掘与人工智能
- 公司年会抽奖程序
- Artificial Intelligence: Foundations of Comp
- tk8.6.8-src.tar.gz
- 数据科学入门 带目录高清版 解压成
- 推荐系统基于用户和Item的协同过滤算
- tesseract-ocr/tessdata 语言包
- pyinstaller安装所需文件及其依赖.rar
- 简单手写字符识别简单web界面手写
- ulipad.4.1 for linux
- ClassMate.zip
- 互联网各厂运维方向面试题汇总附答
- 分布式爬虫
- mozilla-geckodriver-v0.19.1-win64
- 基于社交网络的情绪化分析
- 淘宝数据挖掘和数据分析
- 《城市公交站点设置的优化分析》项
- PyQt5类继承图
- keras程序
- Mastering Machine Learning With Scikit-learn S
- 2019年华中杯B题数学建模数据处理
- 微信公众号文章器
- 豆瓣电影分析代码
- pywin32-220.win-amd64-py3.6.exe
- Sublime Text 3绿色破解版
- scrapy爬虫完整案例.zip
- torchvision-0.7.0-py37_cu102.tar.bz2
- flask源码 架构图 基于flask0.1
- pywin32-219.win32-py2.7
评论
共有 条评论