Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
lib /
python3.11 /
dist-packages /
sklearn /
Delete
Unzip
Name
Size
Permission
Date
Action
__check_build
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
__pycache__
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
_build_utils
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
_loss
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
cluster
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
compose
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
covariance
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
cross_decomposition
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
datasets
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
decomposition
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
ensemble
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
experimental
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
externals
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
feature_extraction
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
feature_selection
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
frozen
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
gaussian_process
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
impute
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
inspection
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
linear_model
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
manifold
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
metrics
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
mixture
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
model_selection
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
neighbors
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
neural_network
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
preprocessing
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
semi_supervised
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
svm
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
tests
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
tree
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
utils
[ DIR ]
drwxr-xr-x
2025-04-08 17:00
__init__.py
4.53
KB
-rw-r--r--
2025-04-08 17:00
_built_with_meson.py
0
B
-rw-r--r--
2025-04-08 17:00
_config.py
13.25
KB
-rw-r--r--
2025-04-08 17:00
_distributor_init.py
424
B
-rw-r--r--
2025-04-08 17:00
_isotonic.cpython-311-x86_64-linux-gnu.so
318.26
KB
-rwxr-xr-x
2025-04-08 17:00
_isotonic.pyx
3.62
KB
-rw-r--r--
2025-04-08 17:00
_min_dependencies.py
2.77
KB
-rw-r--r--
2025-04-08 17:00
base.py
47.58
KB
-rw-r--r--
2025-04-08 17:00
calibration.py
49.37
KB
-rw-r--r--
2025-04-08 17:00
conftest.py
12.28
KB
-rw-r--r--
2025-04-08 17:00
discriminant_analysis.py
39.54
KB
-rw-r--r--
2025-04-08 17:00
dummy.py
23.86
KB
-rw-r--r--
2025-04-08 17:00
exceptions.py
7.52
KB
-rw-r--r--
2025-04-08 17:00
isotonic.py
16.99
KB
-rw-r--r--
2025-04-08 17:00
kernel_approximation.py
38.76
KB
-rw-r--r--
2025-04-08 17:00
kernel_ridge.py
9
KB
-rw-r--r--
2025-04-08 17:00
meson.build
8.76
KB
-rw-r--r--
2025-04-08 17:00
multiclass.py
43.21
KB
-rw-r--r--
2025-04-08 17:00
multioutput.py
42.64
KB
-rw-r--r--
2025-04-08 17:00
naive_bayes.py
54.6
KB
-rw-r--r--
2025-04-08 17:00
pipeline.py
82.63
KB
-rw-r--r--
2025-04-08 17:00
random_projection.py
27.69
KB
-rw-r--r--
2025-04-08 17:00
Save
Rename
"""All minimum dependencies for scikit-learn.""" # Authors: The scikit-learn developers # SPDX-License-Identifier: BSD-3-Clause import argparse from collections import defaultdict # scipy and cython should by in sync with pyproject.toml NUMPY_MIN_VERSION = "1.19.5" SCIPY_MIN_VERSION = "1.6.0" JOBLIB_MIN_VERSION = "1.2.0" THREADPOOLCTL_MIN_VERSION = "3.1.0" PYTEST_MIN_VERSION = "7.1.2" CYTHON_MIN_VERSION = "3.0.10" # 'build' and 'install' is included to have structured metadata for CI. # It will NOT be included in setup's extras_require # The values are (version_spec, comma separated tags) dependent_packages = { "numpy": (NUMPY_MIN_VERSION, "build, install"), "scipy": (SCIPY_MIN_VERSION, "build, install"), "joblib": (JOBLIB_MIN_VERSION, "install"), "threadpoolctl": (THREADPOOLCTL_MIN_VERSION, "install"), "cython": (CYTHON_MIN_VERSION, "build"), "meson-python": ("0.16.0", "build"), "matplotlib": ("3.3.4", "benchmark, docs, examples, tests"), "scikit-image": ("0.17.2", "docs, examples, tests"), "pandas": ("1.1.5", "benchmark, docs, examples, tests"), "seaborn": ("0.9.0", "docs, examples"), "memory_profiler": ("0.57.0", "benchmark, docs"), "pytest": (PYTEST_MIN_VERSION, "tests"), "pytest-cov": ("2.9.0", "tests"), "ruff": ("0.5.1", "tests"), "black": ("24.3.0", "tests"), "mypy": ("1.9", "tests"), "pyamg": ("4.0.0", "tests"), "polars": ("0.20.30", "docs, tests"), "pyarrow": ("12.0.0", "tests"), "sphinx": ("7.3.7", "docs"), "sphinx-copybutton": ("0.5.2", "docs"), "sphinx-gallery": ("0.17.1", "docs"), "numpydoc": ("1.2.0", "docs, tests"), "Pillow": ("7.1.2", "docs"), "pooch": ("1.6.0", "docs, examples, tests"), "sphinx-prompt": ("1.4.0", "docs"), "sphinxext-opengraph": ("0.9.1", "docs"), "plotly": ("5.14.0", "docs, examples"), "sphinxcontrib-sass": ("0.3.4", "docs"), "sphinx-remove-toctrees": ("1.0.0.post1", "docs"), "sphinx-design": ("0.6.0", "docs"), "pydata-sphinx-theme": ("0.15.3", "docs"), "towncrier": ("24.8.0", "docs"), # XXX: Pin conda-lock to the latest released version (needs manual update # from time to time) "conda-lock": ("2.5.6", "maintenance"), } # create inverse mapping for setuptools tag_to_packages: dict = defaultdict(list) for package, (min_version, extras) in dependent_packages.items(): for extra in extras.split(", "): tag_to_packages[extra].append("{}>={}".format(package, min_version)) # Used by CI to get the min dependencies if __name__ == "__main__": parser = argparse.ArgumentParser(description="Get min dependencies for a package") parser.add_argument("package", choices=dependent_packages) args = parser.parse_args() min_version = dependent_packages[args.package][0] print(min_version)