Update README.md
Browse files
README.md
CHANGED
@@ -59,7 +59,7 @@ Kalıp koruma sistemlerinden gelen log kayıtlarını analiz ederek:
|
|
59 |
!pip uninstall unsloth -y && pip install --upgrade --no-cache-dir --no-deps git+https://github.com/unslothai/unsloth.git@nightly git+https://github.com/unslothai/unsloth-zoo.git
|
60 |
```
|
61 |
|
62 |
-
###
|
63 |
|
64 |
```python
|
65 |
from unsloth import FastLanguageModel
|
@@ -74,7 +74,10 @@ model, tokenizer = FastLanguageModel.from_pretrained(
|
|
74 |
dtype = dtype,
|
75 |
load_in_4bit = load_in_4bit
|
76 |
)
|
|
|
|
|
77 |
|
|
|
78 |
FastLanguageModel.for_inference(model) # Enable native 2x faster inference
|
79 |
|
80 |
messages = [
|
|
|
59 |
!pip uninstall unsloth -y && pip install --upgrade --no-cache-dir --no-deps git+https://github.com/unslothai/unsloth.git@nightly git+https://github.com/unslothai/unsloth-zoo.git
|
60 |
```
|
61 |
|
62 |
+
### Model Yükleme
|
63 |
|
64 |
```python
|
65 |
from unsloth import FastLanguageModel
|
|
|
74 |
dtype = dtype,
|
75 |
load_in_4bit = load_in_4bit
|
76 |
)
|
77 |
+
```
|
78 |
+
### Tahmin Yürütme
|
79 |
|
80 |
+
```python
|
81 |
FastLanguageModel.for_inference(model) # Enable native 2x faster inference
|
82 |
|
83 |
messages = [
|