File size: 1,006 Bytes
608d78c
c0cda05
 
 
 
 
 
 
 
 
 
 
608d78c
 
c3d2571
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
language: en
license: mit
tags:
  - conversational
  - gpt
  - chatbot
  - finetune
model_name: my-dialoGPT-model
finetuned_from: microsoft/DialoGPT-small
datasets:
  - custom
---

# My DialoGPT Model

This is a fine-tuned version of `microsoft/DialoGPT-small` on custom data about Dominica.

## Model Details

- **Model Name**: DialoGPT-small
- **Training Data**: Custom dataset about Dominica
- **Evaluation**: Achieved `eval_loss` of 12.85

## Usage

To use this model, you can load it as follows:

```python
from transformers import AutoModelForCausalLM, AutoTokenizer

# Load the model and tokenizer
model_name = "unknownCode/IslandBoyRepo"
tokenizer = AutoTokenizer.from_pretrained(model_name)
model = AutoModelForCausalLM.from_pretrained(model_name)

# Generate a response
input_text = "What is the capital of Dominica?"
inputs = tokenizer(input_text, return_tensors="pt")
outputs = model.generate(**inputs)
response = tokenizer.decode(outputs[0], skip_special_tokens=True)

print(response)
```