Instructions to use mikav-ai/mikav with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use mikav-ai/mikav with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("mikav-ai/mikav", dtype="auto") - Notebooks
- Google Colab
- Kaggle
| """Prepare tokenized datasets for pretraining.""" | |
| from pathlib import Path | |
| def main() -> None: | |
| output_dir = Path("data/tokenized") | |
| output_dir.mkdir(parents=True, exist_ok=True) | |
| print("Add dataset loading and tokenization here.") | |
| if __name__ == "__main__": | |
| main() | |