File size: 1,309 Bytes
9c9907a
45b5763
 
9c9907a
45b5763
 
 
 
 
 
 
9c9907a
45b5763
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
---
language:
- ru
license: mit
tags:
- text-generation
- pytorch
- qwen2
- russian
- tensor
pipeline_tag: text-generation
---

# Tensor-2-40m-base

Tensor-2-40m-base is a Russian-language language model from the **Tensor** series, developed as part of the **GribAI** project. This is a base (pretrain) model without instruction tuning.

## Description

Compared to previous models in the series, Tensor-2-40m-base shows noticeably better text continuation and stronger understanding of the Russian language — both grammatically and in terms of semantic coherence between sentences.

## Training

The model was trained on **70 MB** of Russian-language text data.

## Usage

```python
from transformers import AutoModelForCausalLM, AutoTokenizer

model_name = "VGribAI/Tensor-2-40m-base"

tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(model_name)

prompt = "Привет, как дела"
inputs = tokenizer(prompt, return_tensors="pt")
output = model.generate(**inputs, max_new_tokens=100)

print(tokenizer.decode(output[0], skip_special_tokens=True))
```

## Limitations

This is a base (pretrain) model with no dialogue alignment — it's meant for text continuation, not for answering questions or following instructions.
**GribAI** project (VGribAI).