Spaces:
Sleeping
Sleeping
Haoyuan Zhang
commited on
Commit
·
a39c8e0
1
Parent(s):
0f4f1c6
update
Browse files- main.py +1 -1
- synthetic_data.py +1 -1
main.py
CHANGED
|
@@ -379,7 +379,7 @@ def add_subsection():
|
|
| 379 |
),
|
| 380 |
)
|
| 381 |
me.markdown(
|
| 382 |
-
'Contact me at Haoyuan Zhang in [Linkedin](https://www.linkedin.com/in/haoyuan-z-b4541492/) if you have'
|
| 383 |
' any questions!',
|
| 384 |
style=me.Style(align_items='center', margin=me.Margin(bottom=0)),
|
| 385 |
)
|
|
|
|
| 379 |
),
|
| 380 |
)
|
| 381 |
me.markdown(
|
| 382 |
+
'Contact me at Haoyuan Zhang in [Linkedin](https://www.linkedin.com/in/haoyuan-z-b4541492/){target=_blank} if you have'
|
| 383 |
' any questions!',
|
| 384 |
style=me.Style(align_items='center', margin=me.Margin(bottom=0)),
|
| 385 |
)
|
synthetic_data.py
CHANGED
|
@@ -3,7 +3,7 @@ import pandas as pd
|
|
| 3 |
import random
|
| 4 |
import string
|
| 5 |
|
| 6 |
-
random.seed(
|
| 7 |
|
| 8 |
def generate_random_string(length=10):
|
| 9 |
"""Generates a random string of specified length."""
|
|
|
|
| 3 |
import random
|
| 4 |
import string
|
| 5 |
|
| 6 |
+
random.seed(555) # Set the random seed for reproducibility.
|
| 7 |
|
| 8 |
def generate_random_string(length=10):
|
| 9 |
"""Generates a random string of specified length."""
|