Instructions to use throsturx/bihmoe-poc with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use throsturx/bihmoe-poc with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("throsturx/bihmoe-poc", dtype="auto") - Notebooks
- Google Colab
- Kaggle
| # Extract KEYLINEs from one or more log files. | |
| # Usage: scripts/extract_keylines.sh /path/to/log1.log [/path/to/log2.log ...] | |
| set -u | |
| if [ $# -lt 1 ]; then | |
| echo "usage: $0 <logfile...>" >&2 | |
| exit 2 | |
| fi | |
| for f in "$@"; do | |
| echo "=== $f ===" | |
| grep '^KEYLINE ' "$f" || true | |
| echo | |
| done | |