Video-Text-to-Text
Transformers
PyTorch
Safetensors
English
Chinese
llama
text-generation
custom_code
text-generation-inference
Instructions to use KangarooGroup/kangaroo with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use KangarooGroup/kangaroo with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("KangarooGroup/kangaroo", trust_remote_code=True) model = AutoModelForCausalLM.from_pretrained("KangarooGroup/kangaroo", trust_remote_code=True) - Notebooks
- Google Colab
- Kaggle
add installation
Browse files
README.md
CHANGED
|
@@ -23,17 +23,8 @@ We introduce <strong>Kangaroo</strong>, a powerful Multimodal Large Language Mod
|
|
| 23 |
|
| 24 |
## Quick Start
|
| 25 |
|
| 26 |
-
###
|
| 27 |
-
|
| 28 |
-
- torch == 2.1.1, torchvision == 0.16.1
|
| 29 |
-
- CUDA == 12.1
|
| 30 |
-
- timm == 0.9.16
|
| 31 |
-
- flash-attn == 2.6.1
|
| 32 |
-
- transformers == 4.41.0
|
| 33 |
-
- xformers == 0.0.23
|
| 34 |
-
|
| 35 |
-
### Download Model
|
| 36 |
-
Our Kangaroo model checkpoint is available at [huggingface](https://huggingface.co/KangarooGroup/kangaroo)
|
| 37 |
|
| 38 |
### Multi-round Chat with 🤗 Transformers
|
| 39 |
```python
|
|
|
|
| 23 |
|
| 24 |
## Quick Start
|
| 25 |
|
| 26 |
+
### Installation
|
| 27 |
+
See our [github page](https://github.com/KangarooGroup/Kangaroo)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
|
| 29 |
### Multi-round Chat with 🤗 Transformers
|
| 30 |
```python
|