deepparag commited on
Commit
78ef145
1 Parent(s): 8621752

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -7
README.md CHANGED
@@ -4,17 +4,17 @@ tags:
4
  - conversational
5
  license: mit
6
  ---
7
- An generative AI made using [microsoft/DialoGPT-medium](https://huggingface.co/microsoft/DialoGPT-medium).
8
 
9
  # AEONA
10
  Aeona is an chatbot which hope's to be able to talk with humans as if its an friend!
11
  It's main target platform is discord.
12
- You can invite the bot [here](https://aeona.repl.co/).
13
 
14
- To learn more about this project and chat with the ai, you can use this [website](https://aeona.repl.co/).
15
 
16
  Aeona works why using context of the previous messages and guessing the personality of the human who is talking with it and adapting its own personality to better talk with the user.
17
- contact: deep.p.sarda@gmail.com
18
  ## Goals
19
  The goal is to create an AI which will work with AIML in order to create the most human like AI.
20
 
@@ -29,9 +29,17 @@ contact: deep.p.sarda@gmail.com
29
  3. Custom dataset scrapped from my messages, These messages are very narrow teaching this dataset and sending a random reply will make the AI say sorry loads of time!
30
 
31
  ## Training
32
- The Discord Messages Dataset simply dwarfs the other datasets, Hence the data sets are repeated.
33
- This leads to them covering each others issues!
34
 
 
 
 
 
 
 
 
 
35
  ## Evaluation
36
  Below is a comparison of Aeona vs. other baselines on the mixed dataset given above using automatic evaluation metrics.
37
 
@@ -46,6 +54,8 @@ Below is a comparison of Aeona vs. other baselines on the mixed dataset given ab
46
  | **Aeona** | **7.9** |
47
 
48
  ## Usage
 
 
49
  Example:
50
  ```python
51
  from transformers import AutoTokenizer, AutoModelWithLMHead
@@ -71,5 +81,5 @@ for step in range(4):
71
  )
72
 
73
  # pretty print last ouput tokens from bot
74
- print("DumBot: {}".format(tokenizer.decode(chat_history_ids[:, bot_input_ids.shape[-1]:][0], skip_special_tokens=True)))
75
  ```
 
4
  - conversational
5
  license: mit
6
  ---
7
+ An generative AI made using [microsoft/DialoGPT-small](https://huggingface.co/microsoft/DialoGPT-small).
8
 
9
  # AEONA
10
  Aeona is an chatbot which hope's to be able to talk with humans as if its an friend!
11
  It's main target platform is discord.
12
+ You can invite the bot [here](https://aeona.xyz).
13
 
14
+ To learn more about this project and chat with the ai, you can use this [website](https://aeona.xyx/).
15
 
16
  Aeona works why using context of the previous messages and guessing the personality of the human who is talking with it and adapting its own personality to better talk with the user.
17
+
18
  ## Goals
19
  The goal is to create an AI which will work with AIML in order to create the most human like AI.
20
 
 
29
  3. Custom dataset scrapped from my messages, These messages are very narrow teaching this dataset and sending a random reply will make the AI say sorry loads of time!
30
 
31
  ## Training
32
+ The Discord Messages Dataset simply dwarfs the other datasets, Hence the data sets are repeated.
33
+ This leads to them covering each others issues!
34
 
35
+ The AI has a context of 6 messages which means it will reply until the 4th message from user.
36
+ [Example](https://huggingface.co/deepparag/Aeona-Beta/discussions/1)
37
+
38
+ ## Hugging Face interference, tips
39
+ I recommend send the user input,
40
+ previous 3 AI and human responses.
41
+
42
+ Using more context than this will lead to useless responses but using less is alright but the responses may be random.
43
  ## Evaluation
44
  Below is a comparison of Aeona vs. other baselines on the mixed dataset given above using automatic evaluation metrics.
45
 
 
54
  | **Aeona** | **7.9** |
55
 
56
  ## Usage
57
+
58
+
59
  Example:
60
  ```python
61
  from transformers import AutoTokenizer, AutoModelWithLMHead
 
81
  )
82
 
83
  # pretty print last ouput tokens from bot
84
+ print("Aeona: {}".format(tokenizer.decode(chat_history_ids[:, bot_input_ids.shape[-1]:][0], skip_special_tokens=True)))
85
  ```