deepparag commited on
Commit
02ebbf3
1 Parent(s): 40a8dee

update model card README.md

Browse files
Files changed (1) hide show
  1. README.md +42 -58
README.md CHANGED
@@ -1,71 +1,55 @@
1
  ---
2
- pipeline_tag: text2text-generation
3
- widget:
4
- - text: "Translate to German: My name is Arthur"
5
- example_title: "Translation"
6
- - text: "Please answer to the following question. Who is going to be the next Ballon d'or?"
7
- example_title: "Question Answering"
8
- - text: "Q: Can Geoffrey Hinton have a conversation with George Washington? Give the rationale before answering."
9
- example_title: "Logical reasoning"
10
- - text: "Please answer the following question. What is the boiling point of Nitrogen?"
11
- example_title: "Scientific knowledge"
12
- - text: "Answer the following yes/no question. Can you write a whole Haiku in a single tweet?"
13
- example_title: "Yes/no question"
14
- - text: "Answer the following yes/no question by reasoning step-by-step. Can you write a whole Haiku in a single tweet?"
15
- example_title: "Reasoning task"
16
- - text: "Q: ( False or not False or False ) is? A: Let's think step by step"
17
- example_title: "Boolean Expressions"
18
- - text: "The square root of x is the cube root of y. What is y to the power of 2, if x = 4?"
19
- example_title: "Math reasoning"
20
- - text: "Premise: At my age you will probably have learnt one lesson. Hypothesis: It's not certain how many lessons you'll learn by your thirties. Does the premise entail the hypothesis?"
21
- example_title: "Premise and hypothesis"
22
- - text: "Hey my name is Thomas! How are you?"
23
- example_title: "Chatting"
24
- metrics:
25
- - accuracy
26
- - f1
27
  ---
28
 
29
- # Aeona
 
30
 
31
- <!-- Provide a quick summary of what the model is/does. -->
32
 
 
 
 
33
 
34
- # Model Details
35
 
36
- An generative AI based on [Google Flan Base](https://huggingface.co/google/flan-t5-base).
37
 
38
- Recommended to use along with an [AIML Chatbot](https://github.com/deepsarda/Aeona-Aiml) to reduce load, get better replies, add name and personality to your bot.
39
- Using an AIML Chatbot will allow you to hardcode some replies also.
40
 
41
- ## Model Description
42
 
43
- eona is an chatbot which hope's to be able to talk with humans as if its an friend!
44
- It's main target platform is discord.
45
- You can invite the bot [here](https://aeona.xyz).
46
 
47
- To learn more about this project and chat with the ai, you can use this [website](https://aeona.xyx/).
48
 
49
- Aeona works by sending a query to the AIML Chatbot if the AIML chabot is unable to answer then it comes over here to ***apply some real brains*** so to speak.
50
- The main reason for using google flan is its great performance at logical reasoning.
51
- # Participate and Help the AI improve or just hang out at [hugging face discussions](https://huggingface.co/deepparag/Aeona/discussions)
52
 
53
- ## Goals
54
- The goal is to create an AI which will work with AIML in order to create the most human like AI.
55
-
56
- #### Why not an AI on its own?
57
- For AI it is not possible (realistically) to learn about the user and store data on them, when compared to an AIML which can even execute code!
58
- The goal of the AI is to generate responses where the AIML fails.
59
-
60
- Hence the goals becomes to make an AI which has a wide variety of knowledge, yet be as small as possible!
61
- So we use 3 dataset:-
62
- 1. [Movielines](https://www.kaggle.com/Cornell-University/movie-dialog-corpus) The movie lines promote longer and more thought out responses but it can be very random. About 200k lines!
63
- 2. [Discord Messages](https://www.kaggle.com/jef1056/discord-data) The messages are on a wide variety of topics filtered and removed spam which makes the AI highly random but gives it a very random response to every days questions! about 120 million messages!
64
- 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!
65
-
66
- ## Training
67
- The Discord Messages Dataset simply dwarfs the other datasets, Hence the data sets are repeated.
68
- This leads to them covering each others issues!
69
-
70
- The AI has a context of 6 messages which means it will reply until the 4th message from user.
71
- [Example](https://huggingface.co/deepparag/Aeona-Beta/discussions/1)
 
 
 
 
 
 
1
  ---
2
+ tags:
3
+ - generated_from_trainer
4
+ model-index:
5
+ - name: Aeona-Beta-New
6
+ results: []
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  ---
8
 
9
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
10
+ should probably proofread and complete it, then remove this comment. -->
11
 
12
+ # Aeona-Beta-New
13
 
14
+ This model is a fine-tuned version of [deepparag/Aeona-Beta-New](https://huggingface.co/deepparag/Aeona-Beta-New) on an unknown dataset.
15
+ It achieves the following results on the evaluation set:
16
+ - Loss: 3.5186
17
 
18
+ ## Model description
19
 
20
+ More information needed
21
 
22
+ ## Intended uses & limitations
 
23
 
24
+ More information needed
25
 
26
+ ## Training and evaluation data
 
 
27
 
28
+ More information needed
29
 
30
+ ## Training procedure
 
 
31
 
32
+ ### Training hyperparameters
33
+
34
+ The following hyperparameters were used during training:
35
+ - learning_rate: 5e-05
36
+ - train_batch_size: 9
37
+ - eval_batch_size: 8
38
+ - seed: 42
39
+ - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
40
+ - lr_scheduler_type: linear
41
+ - num_epochs: 1
42
+
43
+ ### Training results
44
+
45
+ | Training Loss | Epoch | Step | Validation Loss |
46
+ |:-------------:|:-----:|:----:|:---------------:|
47
+ | 3.6586 | 1.0 | 8642 | 3.5186 |
48
+
49
+
50
+ ### Framework versions
51
+
52
+ - Transformers 4.26.0
53
+ - Pytorch 1.11.0
54
+ - Datasets 2.1.0
55
+ - Tokenizers 0.12.1