FINGU-AI commited on
Commit
51d80fc
1 Parent(s): 05e59b0

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +16 -7
README.md CHANGED
@@ -10,7 +10,7 @@ language:
10
 
11
  ### Overview
12
 
13
- The FINGU-AI/FinguAI-Chat-v1, model offers a specialized curriculum tailored to English, Korean, and Japanese speakers interested in finance, investment, and legal frameworks. It aims to enhance language proficiency while providing insights into global finance markets and regulatory landscapes.
14
 
15
  ### Key Features
16
 
@@ -26,6 +26,12 @@ The FINGU-AI/FinguAI-Chat-v1, model offers a specialized curriculum tailored to
26
  - **Author**: Grinda AI Inc.
27
  - **License**: Apache-2.0
28
 
 
 
 
 
 
 
29
  ### How to Use
30
 
31
  To use the FINGU-AI/FinguAI-Chat-v1 model, you can utilize the Hugging Face Transformers library. Here's a Python code snippet demonstrating how to load the model and generate predictions:
@@ -58,19 +64,22 @@ tokenized_chat = tokenizer.apply_chat_template(messages, tokenize=True, add_gene
58
  generation_params = {
59
  'max_new_tokens': 1000,
60
  'use_cache': True,
61
- #'prompt_lookup_num_tokens':10,
62
  'do_sample': True,
63
  'temperature': 0.7,
64
  'top_p': 0.9,
65
  'top_k': 50,
66
- #'bos_token_id': tokenizer.bos_token_id,
67
  'eos_token_id': tokenizer.eos_token_id,
68
  }
69
 
70
  outputs = model.generate(tokenized_chat, **generation_params, streamer=streamer)
71
  decoded_outputs = tokenizer.batch_decode(outputs)
72
-
73
- '''
74
- To avoid losses, it's essential to maintain discipline, set realistic goals, and adhere to predetermined rules for trading. Diversification is key as it spreads investments across different sectors and asset classes to reduce overall risk. Regularly reviewing and rebalancing positions can also ensure alignment with investment objectives. Additionally, staying informed about market trends and economic indicators can provide opportunities for long-term capital preservation. It's also important to stay patient and avoid emotional decision-making, as emotions often cloud judgment. If you encounter significant losses, consider using stop-loss orders to limit your losses. Staying disciplined and focusing on long-term objectives can help protect your investment portfolio from permanent damage.
75
- '''
 
 
 
 
 
76
  ```
 
10
 
11
  ### Overview
12
 
13
+ The FINGU-AI/FinguAI-Chat-v1 model offers a specialized curriculum tailored to English, Korean, and Japanese speakers interested in finance, investment, and legal frameworks. It aims to enhance language proficiency while providing insights into global finance markets and regulatory landscapes.
14
 
15
  ### Key Features
16
 
 
26
  - **Author**: Grinda AI Inc.
27
  - **License**: Apache-2.0
28
 
29
+ ### Training Details
30
+
31
+ - **Fine-Tuning**: The model was fine-tuned on the base model Qwen/Qwen1.5-0.5B-Chat through supervised fine-tuning using the TrL Library and Transformer.
32
+ - **Dataset**: The fine-tuning dataset consisted of 9042 training samples, with 3000 samples each in Korean, English, and Japanese languages.
33
+
34
+
35
  ### How to Use
36
 
37
  To use the FINGU-AI/FinguAI-Chat-v1 model, you can utilize the Hugging Face Transformers library. Here's a Python code snippet demonstrating how to load the model and generate predictions:
 
64
  generation_params = {
65
  'max_new_tokens': 1000,
66
  'use_cache': True,
 
67
  'do_sample': True,
68
  'temperature': 0.7,
69
  'top_p': 0.9,
70
  'top_k': 50,
 
71
  'eos_token_id': tokenizer.eos_token_id,
72
  }
73
 
74
  outputs = model.generate(tokenized_chat, **generation_params, streamer=streamer)
75
  decoded_outputs = tokenizer.batch_decode(outputs)
76
+ ```
77
+ To avoid losses, it's essential to maintain discipline, set realistic goals, and adhere to predetermined rules for trading.
78
+ Diversification is key as it spreads investments across different sectors and asset classes to reduce overall risk.
79
+ Regularly reviewing and rebalancing positions can also ensure alignment with investment objectives. Additionally,
80
+ staying informed about market trends and economic indicators can provide opportunities for long-term capital preservation.
81
+ It's also important to stay patient and avoid emotional decision-making, as emotions often cloud judgment.
82
+ If you encounter significant losses, consider using stop-loss orders to limit your losses.
83
+ Staying disciplined and focusing on long-term objectives can help protect your investment portfolio from permanent damage.
84
+ ```
85
  ```