nayohan commited on
Commit
66811d0
1 Parent(s): 104598a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +11 -14
README.md CHANGED
@@ -8,6 +8,8 @@ language:
8
  pipeline_tag: text-generation
9
  ---
10
 
 
 
11
 
12
  ### **Loading the Model**
13
 
@@ -30,18 +32,12 @@ model = AutoModelForCausalLM.from_pretrained(
30
  To generate text, use the following Python code:
31
 
32
  ```python
33
- text = """You will be shown dialogues between Speaker 1 and Speaker 2. Please read and understand given Dialogue Session, then complete the task under the guidance of Task Introduction.\n\n```
34
- ```
35
- Context:
36
- {context}
37
- ```
38
- ```
39
- Dialogue Session:
40
- {diaogues}
41
- ```
42
- Task Introduction:
43
- After reading the Dialogue Session, please create an appropriate response in the parts marked ###.
44
- ```
45
  Task Result:
46
  """
47
  inputs = tokenizer(text, return_tensors="pt")
@@ -51,8 +47,9 @@ print(tokenizer.decode(outputs[0], skip_special_tokens=True))
51
  ```
52
 
53
  ```
54
- {"input":"You will be shown a dialogues between Speaker 1 and Speaker 2. Please read Context and understand given Dialogue Session, then complete the task under the guidance of Task Introduction.\n\n```\nContext:\npropagation mechanism with line-of-sight, \ufb01rst-order re\ufb02ec-tions and scattering becoming much more dominant. Thismeans shadowing will have severe detrimental effects on theaverage received power. Indeed, channel models developedfor millimeter-wave include a third state, in addition toline-of-sight and non-line-of-sight, to explicitly model an out-age event when received power is too weak to establish alink [3]. Although adaptive beam steering techniques can```\n\n```\nDialogue Session:\nSpeaker 1: How does shadowing affect millimeter-wave channel models?\nSpeaker 2: Shadowing has severe detrimental effects on the average received power and can cause an outage event, leading to a third state in channel models to model this event.\nSpeaker 1: So, what are some techniques that can be used to mitigate the effects of shadowing?\nSpeaker 2: Well, as I mentioned earlier, adaptive beam steering is one approach. By constantly adjusting the direction of the transmit and receive beams, it is possible to maintain a strong enough signal to overcome the effects of shadowing.\nSpeaker 1: That's interesting. But in a highly dynamic environment, like a crowded city, would this technique still be effective?\nSpeaker 2: Good point. In that case, another technique that can be used is diversity reception. By using multiple antennas and taking advantage of the different paths that signals can take, it is possible to improve the signal quality and overcome the effects of shadowing.\nSpeaker 1: Ah, I see. And how does this compare to traditional cellular systems where shadowing is also a concern?\nSpeaker 2: That's a great question. In traditional cellular systems, shadowing is not as severe due to the lower frequencies used. However, in millimeter-wave systems, the wavelength is much smaller, making them more susceptible to shadowing and requiring these specialized techniques for mitigation.\nSpeaker 1: I see. Well, it looks like careful consideration and implementation of these techniques will be crucial for successful millimeter-wave communication. Thank you for explaining this to me.\nSpeaker 2: ###\n```\n\n```\nTask Introduction:\nAfter reading the Dialogue Session, please create an appropriate response in the parts marked ###.\n```\n\nTask Result:","output":" No problem, happy to share my knowledge on the subject.\n"}
55
-
 
56
  ```
57
 
58
  ### **License**
 
8
  pipeline_tag: text-generation
9
  ---
10
 
11
+ # **Introduction**
12
+ This is a corning domain-specific model that has been trained to support multi-turn conversations in chemistry-related domains.
13
 
14
  ### **Loading the Model**
15
 
 
32
  To generate text, use the following Python code:
33
 
34
  ```python
35
+ text = """
36
+ You will be shown dialogues between Speaker 1 and Speaker 2. Please read and understand given Dialogue Session,
37
+ then complete the task under the guidance of Task Introduction.\n\n
38
+ Context: {context}
39
+ Dialogue Session: {diaogues}
40
+ Task Introduction: After reading the Dialogue Session, please create an appropriate response in the parts marked ###.
 
 
 
 
 
 
41
  Task Result:
42
  """
43
  inputs = tokenizer(text, return_tensors="pt")
 
47
  ```
48
 
49
  ```
50
+ # examples
51
+ {context}: propagation mechanism with line-of-sight, \ufb01rst-order re\ufb02ec-tions and scattering becoming much more dominant. Thismeans shadowing will have severe detrimental effects on theaverage received power. Indeed, channel models developedfor millimeter-wave include a third state, in addition toline-of-sight and non-line-of-sight, to explicitly model an out-age event when received power is too weak to establish alink [3]. Although adaptive beam steering techniques can
52
+ {diaogues}: Speaker 1: How does shadowing affect millimeter-wave channel models?\nSpeaker 2: Shadowing has severe detrimental effects on the average received power and can cause an outage event, leading to a third state in channel models to model this event.\nSpeaker 1: So, what are some techniques that can be used to mitigate the effects of shadowing?\nSpeaker 2: Well, as I mentioned earlier, adaptive beam steering is one approach. By constantly adjusting the direction of the transmit and receive beams, it is possible to maintain a strong enough signal to overcome the effects of shadowing.\nSpeaker 1: That's interesting. But in a highly dynamic environment, like a crowded city, would this technique still be effective?\nSpeaker 2: Good point. In that case, another technique that can be used is diversity reception. By using multiple antennas and taking advantage of the different paths that signals can take, it is possible to improve the signal quality and overcome the effects of shadowing.\nSpeaker 1: Ah, I see. And how does this compare to traditional cellular systems where shadowing is also a concern?\nSpeaker 2: That's a great question. In traditional cellular systems, shadowing is not as severe due to the lower frequencies used. However, in millimeter-wave systems, the wavelength is much smaller, making them more susceptible to shadowing and requiring these specialized techniques for mitigation.\nSpeaker 1: I see. Well, it looks like careful consideration and implementation of these techniques will be crucial for successful millimeter-wave communication. Thank you for explaining this to me.\nSpeaker 2: ###
53
  ```
54
 
55
  ### **License**