explainx
Explain & debug any blackbox machine learning model with a single line of code.
파일 탐색기
최종 버전 다운로드 (.zip)- FUNDING.yml
- profiles_settings.xml
- Project_Default.xml
- .gitignore
- explainx.iml
- misc.xml
- modules.xml
- vcs.xml
- heloc_dataset.csv
- conformal.png
- dashboard_fairness.png
- dashboard_full_report.png
- dashboard_importance.png
- dashboard_local.png
- drift.png
- effects.png
- fairness.png
- importance.png
- interactions.png
- local.png
- generate_examples.py
- 01_sklearn.py
- 02_xgboost.py
- 03_lightgbm.py
- 04_catboost.py
- 05_keras_tensorflow.py
- 06_pytorch.py
- 07_statsmodels.py
- 08_custom_predict_fn.py
- _common.py
- README.md
- __init__.py
- demo.py
- __init__.py
- test_adapters.py
- test_dashboard.py
- test_diagnostics.py
- test_explainer.py
- test_mcp_server.py
- __init__.py
- adapters.py
- ale.py
- anchors.py
- cli.py
- conformal.py
- counterfactual.py
- dashboard.py
- diagnostics.py
- drift.py
- explainer.py
- fairness.py
- importance.py
- interactions.py
- io.py
- lime_explain.py
- local.py
- mcp_server.py
- metrics.py
- mitigation.py
- narrate.py
- pdp.py
- prototypes.py
- quality.py
- report_html.py
- schema.py
- shap_explain.py
- summary.py
- surrogate.py
- utils.py
- .gitignore
- explainx_logo.png
- LICENSE
- pyproject.toml
- README.md
- requirements.txt
🚀 설치 가이드
1. 코드 내려받기
git clone https://github.com/explainX/explainx
깃허브에서 프로젝트 코드 전체를 내 컴퓨터로 내려받습니다.
cd explainx
방금 내려받은 프로젝트 폴더 안으로 이동합니다.
2. 공식 설치 스크립트
쉬움 추천사전 준비물
- Python 3 pip 명령어를 쓰려면 Python이 필요합니다.
pip install "explainx[all]" # core + SHAP + MCP + drift + LLM narration + dashboard
PyPI에 배포된 패키지를 바로 설치합니다. 소스 클론이 필요 없습니다.
pip install explainx # core only (extras optional)
PyPI에 배포된 패키지를 바로 설치합니다. 소스 클론이 필요 없습니다.
pip install "git+https://github.com/explainX/explainx.git"
PyPI에 배포된 패키지를 바로 설치합니다. 소스 클론이 필요 없습니다.
pip install "explainx[all] @ git+https://github.com/explainX/explainx.git"
PyPI에 배포된 패키지를 바로 설치합니다. 소스 클론이 필요 없습니다.
설치 후 새 터미널을 열고, 프로그램의 버전 확인 명령(예: --version)으로 정상 설치됐는지 확인하세요.
이 레포의 README에 적힌 실제 명령어를 그대로 가져왔습니다.
3. Python
쉬움사전 준비물
pip install "explainx[all]" # core + SHAP + MCP + drift + LLM narration + dashboard
PyPI에 배포된 패키지를 바로 설치합니다. 소스 클론이 필요 없습니다.
pip install explainx # core only (extras optional)
PyPI에 배포된 패키지를 바로 설치합니다. 소스 클론이 필요 없습니다.
pip install "git+https://github.com/explainX/explainx.git"
PyPI에 배포된 패키지를 바로 설치합니다. 소스 클론이 필요 없습니다.
pip install "explainx[all] @ git+https://github.com/explainX/explainx.git"
PyPI에 배포된 패키지를 바로 설치합니다. 소스 클론이 필요 없습니다.
pip install -e ".[all]" # editable install with every extra
requirements.txt 등에 명시된 파이썬 라이브러리를 설치합니다.
에러 메시지 없이 실행되고 터미널에 안내 문구가 출력되면 정상입니다.
이 레포의 README에 적힌 실제 명령어를 그대로 가져왔습니다.
// repository documentation
Was this content helpful?
(0 ratings)
