Sephfox commited on
Commit
b91d93b
·
verified ·
1 Parent(s): a750190

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +122 -87
app.py CHANGED
@@ -1,12 +1,13 @@
1
  import streamlit as st
2
  import numpy as np
3
  import matplotlib.pyplot as plt
4
- from PIL import Image, ImageDraw
5
  import time
6
  from transformers import AutoModelForCausalLM, AutoTokenizer
 
7
 
8
  # Constants
9
- AVATAR_WIDTH, AVATAR_HEIGHT = 400, 600
10
 
11
  # Set up DialoGPT model
12
  @st.cache_resource
@@ -29,7 +30,7 @@ class Sensors:
29
 
30
  @staticmethod
31
  def measure_texture(x, y):
32
- textures = ["smooth", "rough", "bumpy", "silky", "grainy"]
33
  return textures[hash((x, y)) % len(textures)]
34
 
35
  @staticmethod
@@ -38,29 +39,35 @@ class Sensors:
38
 
39
  # Create more detailed sensation map for the avatar
40
  def create_sensation_map(width, height):
41
- sensation_map = np.zeros((height, width, 7)) # pain, pleasure, pressure, temp, texture, em, tickle
42
  for y in range(height):
43
  for x in range(width):
44
  # Head
45
- if 150 < x < 250 and 50 < y < 150:
46
- sensation_map[y, x] = [0.7, 0.5, 0.8, 0.6, 0.9, 0.9, 0.3]
 
 
 
 
 
 
47
  # Torso
48
- elif 175 < x < 225 and 150 < y < 400:
49
- sensation_map[y, x] = [0.5, 0.6, 0.7, 0.8, 0.6, 0.7, 0.5]
50
  # Arms
51
- elif (125 < x < 175 or 225 < x < 275) and 150 < y < 350:
52
- sensation_map[y, x] = [0.6, 0.5, 0.9, 0.7, 0.8, 0.6, 0.7]
53
  # Hands
54
- elif (100 < x < 150 or 250 < x < 300) and 300 < y < 350:
55
- sensation_map[y, x] = [0.8, 0.7, 1.0, 0.9, 1.0, 0.8, 0.9]
56
  # Legs
57
- elif 175 < x < 225 and 400 < y < 550:
58
- sensation_map[y, x] = [0.7, 0.4, 0.8, 0.6, 0.7, 0.5, 0.6]
59
  # Feet
60
- elif 175 < x < 225 and 550 < y < 600:
61
- sensation_map[y, x] = [0.9, 0.6, 1.0, 0.8, 0.9, 0.7, 1.0]
62
  else:
63
- sensation_map[y, x] = [0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]
64
 
65
  return sensation_map
66
 
@@ -72,33 +79,40 @@ def create_avatar():
72
  draw = ImageDraw.Draw(img)
73
 
74
  # Head
75
- draw.ellipse([150, 50, 250, 150], fill='beige', outline='black')
 
 
76
  # Eyes
77
- draw.ellipse([175, 80, 190, 95], fill='white', outline='black')
78
- draw.ellipse([210, 80, 225, 95], fill='white', outline='black')
79
- draw.ellipse([180, 85, 185, 90], fill='black')
80
- draw.ellipse([215, 85, 220, 90], fill='black')
 
 
81
  # Mouth
82
- draw.arc([185, 110, 215, 130], start=0, end=180, fill='black')
 
 
 
83
 
84
  # Body
85
- draw.rectangle([175, 150, 225, 400], fill='beige', outline='black')
86
 
87
  # Arms
88
- draw.rectangle([125, 150, 175, 350], fill='beige', outline='black')
89
- draw.rectangle([225, 150, 275, 350], fill='beige', outline='black')
90
 
91
  # Hands
92
- draw.ellipse([100, 300, 150, 350], fill='beige', outline='black')
93
- draw.ellipse([250, 300, 300, 350], fill='beige', outline='black')
94
 
95
  # Legs
96
- draw.rectangle([175, 400, 200, 550], fill='beige', outline='black')
97
- draw.rectangle([200, 400, 225, 550], fill='beige', outline='black')
98
 
99
  # Feet
100
- draw.ellipse([165, 550, 210, 600], fill='beige', outline='black')
101
- draw.ellipse([190, 550, 235, 600], fill='beige', outline='black')
102
 
103
  return img
104
 
@@ -107,61 +121,83 @@ avatar_image = create_avatar()
107
  # Streamlit app
108
  st.title("Advanced Humanoid Techno-Sensory Simulation")
109
 
110
- # Display avatar
111
- st.image(avatar_image, use_column_width=True)
112
-
113
- # Touch input
114
- touch_x = st.slider("Touch X coordinate", 0, AVATAR_WIDTH, AVATAR_WIDTH // 2)
115
- touch_y = st.slider("Touch Y coordinate", 0, AVATAR_HEIGHT, AVATAR_HEIGHT // 2)
116
-
117
- # Touch duration
118
- touch_duration = st.slider("Touch duration (seconds)", 0.1, 5.0, 1.0, 0.1)
119
-
120
- if st.button("Apply Touch"):
121
- sensation = avatar_sensation_map[touch_y, touch_x]
122
- pain, pleasure, pressure_sens, temp_sens, texture_sens, em_sens, tickle_sens = sensation
123
-
124
- measured_pressure = Sensors.measure_pressure(pressure_sens, touch_duration)
125
- measured_temp = Sensors.measure_temperature(37, touch_duration)
126
- measured_texture = Sensors.measure_texture(touch_x, touch_y)
127
- measured_em = Sensors.measure_em_field(touch_x, touch_y) * em_sens
128
-
129
- # Calculate overall sensation
130
- pain_level = pain * measured_pressure
131
- pleasure_level = pleasure * (measured_temp - 37) / 5
132
- tickle_level = tickle_sens * (1 - np.exp(-touch_duration / 0.5))
133
-
134
- st.write(f"Touch applied at ({touch_x}, {touch_y}) for {touch_duration:.1f} seconds")
135
- st.write(f"Pressure: {measured_pressure:.2f}")
136
- st.write(f"Temperature: {measured_temp:.2f}°C")
137
- st.write(f"Texture: {measured_texture}")
138
- st.write(f"Electromagnetic field: {measured_em:.2f}")
139
- st.write(f"Pain level: {pain_level:.2f}")
140
- st.write(f"Pleasure level: {pleasure_level:.2f}")
141
- st.write(f"Tickle level: {tickle_level:.2f}")
142
-
143
- # Generate description
144
- prompt = f"""Human: Describe the sensation when touched at ({touch_x}, {touch_y}) for {touch_duration:.1f} seconds with these measurements:
145
- Pressure: {measured_pressure:.2f}
146
- Temperature: {measured_temp:.2f}°C
147
- Texture: {measured_texture}
148
- Electromagnetic field: {measured_em:.2f}
149
- Resulting in:
150
- Pain: {pain_level:.2f}, Pleasure: {pleasure_level:.2f}, Tickle: {tickle_level:.2f}
151
- Avatar:"""
152
 
153
- input_ids = tokenizer.encode(prompt, return_tensors="pt")
154
- output = model.generate(input_ids, max_length=200, num_return_sequences=1, no_repeat_ngram_size=2, top_k=50, top_p=0.95, temperature=0.7)
155
 
156
- response = tokenizer.decode(output[0], skip_special_tokens=True).split("Avatar: ")[-1].strip()
 
157
 
158
- st.write("Avatar's response:")
159
- st.write(response)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
160
 
161
  # Visualize sensation map
162
  st.subheader("Sensation Map Visualization")
163
  fig, axs = plt.subplots(2, 4, figsize=(20, 10))
164
- titles = ['Pain', 'Pleasure', 'Pressure', 'Temperature', 'Texture', 'EM Field', 'Tickle']
165
 
166
  for i, title in enumerate(titles):
167
  ax = axs[i // 4, i % 4]
@@ -169,7 +205,6 @@ for i, title in enumerate(titles):
169
  ax.set_title(title)
170
  fig.colorbar(im, ax=ax)
171
 
172
- axs[1, 3].axis('off') # Turn off the last unused subplot
173
  plt.tight_layout()
174
  st.pyplot(fig)
175
 
@@ -180,18 +215,18 @@ st.subheader("Avatar Sensory Capabilities")
180
  st.write("""
181
  This advanced humanoid avatar is equipped with cutting-edge sensory technology:
182
 
183
- 1. Pressure Sensors: Highly sensitive to touch, with increased sensitivity in hands and feet.
184
  2. Temperature Sensors: Can detect slight changes in temperature, simulating human thermal perception.
185
- 3. Texture Analysis: Capable of distinguishing between various textures, from smooth to rough.
186
  4. Electromagnetic Field Detection: Mimics the subtle EM sensitivity some humans report.
187
  5. Pain and Pleasure Processing: Simulates the complex interplay of pain and pleasure responses.
188
  6. Tickle Sensation: Replicates the unique tickle response, which can be pleasurable or uncomfortable.
 
189
 
190
- The avatar's responses are generated using an advanced language model, attempting to describe the sensations in human-like terms.
191
  """)
192
 
193
  # Footer
194
  st.write("---")
195
- st.write("Advanced Humanoid Techno-Sensory Simulation v1.0")
196
- st.write("Disclaimer: This is a simulation and does not represent actual human sensory experiences.")
197
-
 
1
  import streamlit as st
2
  import numpy as np
3
  import matplotlib.pyplot as plt
4
+ from PIL import Image, ImageDraw, ImageFont
5
  import time
6
  from transformers import AutoModelForCausalLM, AutoTokenizer
7
+ import io
8
 
9
  # Constants
10
+ AVATAR_WIDTH, AVATAR_HEIGHT = 400, 800
11
 
12
  # Set up DialoGPT model
13
  @st.cache_resource
 
30
 
31
  @staticmethod
32
  def measure_texture(x, y):
33
+ textures = ["smooth", "rough", "bumpy", "silky", "grainy", "soft", "hard", "moist", "dry", "fuzzy"]
34
  return textures[hash((x, y)) % len(textures)]
35
 
36
  @staticmethod
 
39
 
40
  # Create more detailed sensation map for the avatar
41
  def create_sensation_map(width, height):
42
+ sensation_map = np.zeros((height, width, 8)) # pain, pleasure, pressure, temp, texture, em, tickle, itch
43
  for y in range(height):
44
  for x in range(width):
45
  # Head
46
+ if 150 < x < 250 and 50 < y < 200:
47
+ sensation_map[y, x] = [0.7, 0.5, 0.8, 0.6, 0.9, 0.9, 0.3, 0.4]
48
+ # Face
49
+ elif 160 < x < 240 and 80 < y < 180:
50
+ sensation_map[y, x] = [0.9, 0.7, 1.0, 0.8, 1.0, 1.0, 0.5, 0.6]
51
+ # Neck
52
+ elif 175 < x < 225 and 200 < y < 250:
53
+ sensation_map[y, x] = [0.8, 0.6, 0.9, 0.7, 0.8, 0.8, 0.7, 0.5]
54
  # Torso
55
+ elif 150 < x < 250 and 250 < y < 500:
56
+ sensation_map[y, x] = [0.5, 0.6, 0.7, 0.8, 0.6, 0.7, 0.5, 0.3]
57
  # Arms
58
+ elif (100 < x < 150 or 250 < x < 300) and 250 < y < 500:
59
+ sensation_map[y, x] = [0.6, 0.5, 0.9, 0.7, 0.8, 0.6, 0.7, 0.4]
60
  # Hands
61
+ elif (75 < x < 125 or 275 < x < 325) and 450 < y < 525:
62
+ sensation_map[y, x] = [0.8, 0.7, 1.0, 0.9, 1.0, 0.8, 0.9, 0.7]
63
  # Legs
64
+ elif 150 < x < 250 and 500 < y < 700:
65
+ sensation_map[y, x] = [0.7, 0.4, 0.8, 0.6, 0.7, 0.5, 0.6, 0.5]
66
  # Feet
67
+ elif 150 < x < 250 and 700 < y < 800:
68
+ sensation_map[y, x] = [0.9, 0.6, 1.0, 0.8, 0.9, 0.7, 1.0, 0.8]
69
  else:
70
+ sensation_map[y, x] = [0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1]
71
 
72
  return sensation_map
73
 
 
79
  draw = ImageDraw.Draw(img)
80
 
81
  # Head
82
+ draw.ellipse([150, 50, 250, 200], fill='beige', outline='black')
83
+ # Hair
84
+ draw.polygon([(150, 120), (200, 30), (250, 120)], fill='brown')
85
  # Eyes
86
+ draw.ellipse([175, 100, 195, 120], fill='white', outline='black')
87
+ draw.ellipse([205, 100, 225, 120], fill='white', outline='black')
88
+ draw.ellipse([182, 107, 188, 113], fill='blue')
89
+ draw.ellipse([212, 107, 218, 113], fill='blue')
90
+ # Nose
91
+ draw.polygon([(200, 130), (190, 150), (210, 150)], fill='beige', outline='black')
92
  # Mouth
93
+ draw.arc([185, 160, 215, 180], start=0, end=180, fill='red', width=2)
94
+
95
+ # Neck
96
+ draw.rectangle([175, 200, 225, 250], fill='beige', outline='black')
97
 
98
  # Body
99
+ draw.rectangle([150, 250, 250, 500], fill='lightblue', outline='black')
100
 
101
  # Arms
102
+ draw.rectangle([100, 250, 150, 500], fill='lightblue', outline='black')
103
+ draw.rectangle([250, 250, 300, 500], fill='lightblue', outline='black')
104
 
105
  # Hands
106
+ draw.ellipse([75, 450, 125, 525], fill='beige', outline='black')
107
+ draw.ellipse([275, 450, 325, 525], fill='beige', outline='black')
108
 
109
  # Legs
110
+ draw.rectangle([150, 500, 200, 700], fill='navy', outline='black')
111
+ draw.rectangle([200, 500, 250, 700], fill='navy', outline='black')
112
 
113
  # Feet
114
+ draw.ellipse([140, 700, 210, 800], fill='beige', outline='black')
115
+ draw.ellipse([190, 700, 260, 800], fill='beige', outline='black')
116
 
117
  return img
118
 
 
121
  # Streamlit app
122
  st.title("Advanced Humanoid Techno-Sensory Simulation")
123
 
124
+ # Create two columns
125
+ col1, col2 = st.columns([2, 1])
126
+
127
+ # Avatar display with crosshair
128
+ with col1:
129
+ st.subheader("Humanoid Avatar")
130
+
131
+ # Touch input
132
+ touch_x = st.slider("Touch X coordinate", 0, AVATAR_WIDTH, AVATAR_WIDTH // 2)
133
+ touch_y = st.slider("Touch Y coordinate", 0, AVATAR_HEIGHT, AVATAR_HEIGHT // 2)
134
+
135
+ # Add crosshair to avatar image
136
+ avatar_with_crosshair = avatar_image.copy()
137
+ draw = ImageDraw.Draw(avatar_with_crosshair)
138
+ draw.line((touch_x - 10, touch_y, touch_x + 10, touch_y), fill="red", width=2)
139
+ draw.line((touch_x, touch_y - 10, touch_x, touch_y + 10), fill="red", width=2)
140
+
141
+ # Display avatar with crosshair
142
+ st.image(avatar_with_crosshair, use_column_width=True)
143
+
144
+ # Touch controls and output
145
+ with col2:
146
+ st.subheader("Touch Controls")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
147
 
148
+ # Touch duration
149
+ touch_duration = st.slider("Touch duration (seconds)", 0.1, 5.0, 1.0, 0.1)
150
 
151
+ # Touch pressure
152
+ touch_pressure = st.slider("Touch pressure", 0.1, 2.0, 1.0, 0.1)
153
 
154
+ if st.button("Apply Touch"):
155
+ sensation = avatar_sensation_map[touch_y, touch_x]
156
+ pain, pleasure, pressure_sens, temp_sens, texture_sens, em_sens, tickle_sens, itch_sens = sensation
157
+
158
+ measured_pressure = Sensors.measure_pressure(pressure_sens * touch_pressure, touch_duration)
159
+ measured_temp = Sensors.measure_temperature(37, touch_duration)
160
+ measured_texture = Sensors.measure_texture(touch_x, touch_y)
161
+ measured_em = Sensors.measure_em_field(touch_x, touch_y) * em_sens
162
+
163
+ # Calculate overall sensation
164
+ pain_level = pain * measured_pressure
165
+ pleasure_level = pleasure * (measured_temp - 37) / 5
166
+ tickle_level = tickle_sens * (1 - np.exp(-touch_duration / 0.5))
167
+ itch_level = itch_sens * (1 - np.exp(-touch_duration / 1.5))
168
+
169
+ st.write(f"Touch applied at ({touch_x}, {touch_y}) for {touch_duration:.1f} seconds")
170
+ st.write(f"Pressure: {measured_pressure:.2f}")
171
+ st.write(f"Temperature: {measured_temp:.2f}°C")
172
+ st.write(f"Texture: {measured_texture}")
173
+ st.write(f"Electromagnetic field: {measured_em:.2f}")
174
+ st.write(f"Pain level: {pain_level:.2f}")
175
+ st.write(f"Pleasure level: {pleasure_level:.2f}")
176
+ st.write(f"Tickle level: {tickle_level:.2f}")
177
+ st.write(f"Itch level: {itch_level:.2f}")
178
+
179
+ # Generate description
180
+ prompt = f"""Human: Describe the sensation when touched at ({touch_x}, {touch_y}) for {touch_duration:.1f} seconds with these measurements:
181
+ Pressure: {measured_pressure:.2f}
182
+ Temperature: {measured_temp:.2f}°C
183
+ Texture: {measured_texture}
184
+ Electromagnetic field: {measured_em:.2f}
185
+ Resulting in:
186
+ Pain: {pain_level:.2f}, Pleasure: {pleasure_level:.2f}, Tickle: {tickle_level:.2f}, Itch: {itch_level:.2f}
187
+ Avatar:"""
188
+
189
+ input_ids = tokenizer.encode(prompt, return_tensors="pt")
190
+ output = model.generate(input_ids, max_length=200, num_return_sequences=1, no_repeat_ngram_size=2, top_k=50, top_p=0.95, temperature=0.7)
191
+
192
+ response = tokenizer.decode(output[0], skip_special_tokens=True).split("Avatar: ")[-1].strip()
193
+
194
+ st.write("Avatar's response:")
195
+ st.write(response)
196
 
197
  # Visualize sensation map
198
  st.subheader("Sensation Map Visualization")
199
  fig, axs = plt.subplots(2, 4, figsize=(20, 10))
200
+ titles = ['Pain', 'Pleasure', 'Pressure', 'Temperature', 'Texture', 'EM Field', 'Tickle', 'Itch']
201
 
202
  for i, title in enumerate(titles):
203
  ax = axs[i // 4, i % 4]
 
205
  ax.set_title(title)
206
  fig.colorbar(im, ax=ax)
207
 
 
208
  plt.tight_layout()
209
  st.pyplot(fig)
210
 
 
215
  st.write("""
216
  This advanced humanoid avatar is equipped with cutting-edge sensory technology:
217
 
218
+ 1. Pressure Sensors: Highly sensitive to touch, with increased sensitivity in hands, feet, and face.
219
  2. Temperature Sensors: Can detect slight changes in temperature, simulating human thermal perception.
220
+ 3. Texture Analysis: Capable of distinguishing between various textures, from smooth to rough, soft to hard, and more.
221
  4. Electromagnetic Field Detection: Mimics the subtle EM sensitivity some humans report.
222
  5. Pain and Pleasure Processing: Simulates the complex interplay of pain and pleasure responses.
223
  6. Tickle Sensation: Replicates the unique tickle response, which can be pleasurable or uncomfortable.
224
+ 7. Itch Simulation: Reproduces the sensation of itching, which can be triggered by light touch or prolonged contact.
225
 
226
+ The avatar's responses are generated using an advanced language model, attempting to describe the sensations in human-like terms. This simulation demonstrates the potential for creating highly responsive and realistic artificial sensory systems.
227
  """)
228
 
229
  # Footer
230
  st.write("---")
231
+ st.write("Advanced Humanoid Techno-Sensory Simulation v2.0")
232
+ st.write("Disclaimer: This is a simulation and does not represent actual human sensory experiences.")