KO
|
EN
gitlite — search
Search
#php
#javascript
#docker
#java
#golang
#hacktoberfest
#android
#nodejs
#angular
#go
#visual-studio
#python
hazardous
★ 121
Open GitHub ↗
Competing Risks and Survival Analysis
Download README (.md)
Explore Similar Repositories
rag-with-langchain-colbert-and-ragatouille
:
Build a Streamlit Chatbot using Langchain, ColBERT, Ragatouille, and ChromaDB
ai-sdk-js
:
SAP Cloud SDK for AI is the official Software Development Kit (SDK) for SAP AI Core, SAP Generative AI Hub, and Orchestration Service.
sbom-everywhere
:
Improve Software Bill of Materials (SBOM) tooling and training to encourage adoption
LiveResearchBench
:
A live benchmark and evaluation framework for open-ended deep research in the wild.
arasgungore.github.io
:
My portfolio website built using HTML, CSS, and JavaScript.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
hazardous
?
Download (.md)
# HΛZΛRDOUS Predictive Competing Risks and Survival Analysis. [](https://github.com/soda-inria/hazardous/actions/workflows/test.yml) ## Installation and usage Installation: ``` pip install hazardous ``` Then browse the [online documentation](https://soda-inria.github.io/hazardous/) and run the `examples/` to get started. ## Development and testing Install in "editable" mode in your current Python env (after a standard installation to install the dependencies): ``` pip install flit pip install . -v pip install -e ".[dev]" --no-build-isolation -v pre-commit install ``` Run the tests with nox to test in an environment that matches exactly on specific CI build, for instance: ``` nox -p 3.11 -s test_latest_from_pypi -r ``` The `-r` flag makes it possible to reuse an existing env. You can also install the test dependencies in the current env and use `pytest` directly with arbitrary command line arguments: ``` pip install -e ".[test]" --no-build-isolation -v pytest -vl -x -k test_name_pattern ``` ## Building the doc Using `nox`: ``` nox -s doc -r ``` or manually: ``` pip install -e ".[doc]" --no-build-isolation -v cd doc make html ``` The resulting html files are generated under the `doc/_build` folder. ## Building a release ``` pip install build python -m build ls dist/ ``` TODO: make it possible to automate a release using GitHub Actions for a given tag.