mirror of
https://github.com/katanemo/plano.git
synced 2026-04-27 17:56:28 +02:00
* add toxic/jailbreak model * fix path loading model * fix syntax * fix bug,lint, format * fix bug * formatting * add parallel + chunking * fix bug * working version * fix onnnx name erorr * device * fix jailbreak config * fix syntax error * format * add requirement + cli download for dockerfile * add task * add skeleton change for envoy filter for prompt guard * fix hardware config * fix bug * add config changes * add gitignore * merge main * integrate arch-guard with filter * add hardware config * nothing * add hardware config feature * fix requirement * fix chat ui * fix onnx * fix lint * remove non intel cpu * remove onnx * working version * modify docker * fix guard time * add nvidia support * remove nvidia * add gpu * add gpu * add gpu support * add gpu support for compose * add gpu support for compose * add gpu support for compose * add gpu support for compose * add gpu support for compose * fix docker file * fix int test * correct gpu docker * upgrad python 10 * fix logits to be gpu compatible * default to cpu dockerfile * resolve comments * fix lint + unused parameters * fix * remove eetq install for cpu * remove deploy gpu --------- Co-authored-by: Adil Hafeez <adil@katanemo.com>
83 lines
2.5 KiB
Python
83 lines
2.5 KiB
Python
import pandas as pd
|
|
import random
|
|
import datetime
|
|
|
|
|
|
def generate_employee_data(conn):
|
|
# List of possible names, positions, departments, and locations
|
|
names = [
|
|
"Alice",
|
|
"Bob",
|
|
"Charlie",
|
|
"David",
|
|
"Eve",
|
|
"Frank",
|
|
"Grace",
|
|
"Hank",
|
|
"Ivy",
|
|
"Jack",
|
|
]
|
|
positions = [
|
|
"Manager",
|
|
"Engineer",
|
|
"Salesperson",
|
|
"HR Specialist",
|
|
"Marketing Analyst",
|
|
]
|
|
departments = ["Engineering", "Marketing", "HR", "Sales", "Finance"]
|
|
locations = ["New York", "San Francisco", "Austin", "Boston", "Chicago"]
|
|
|
|
# Function to generate random hire date
|
|
def random_hire_date():
|
|
start_date = datetime.date(2000, 1, 1)
|
|
end_date = datetime.date(2023, 12, 31)
|
|
time_between_dates = end_date - start_date
|
|
days_between_dates = time_between_dates.days
|
|
random_number_of_days = random.randrange(days_between_dates)
|
|
hire_date = start_date + datetime.timedelta(days=random_number_of_days)
|
|
return hire_date
|
|
|
|
# Function to generate random employee data
|
|
def generate_employee_records(count):
|
|
employees = []
|
|
|
|
for _ in range(count):
|
|
name = random.choice(names)
|
|
position = random.choice(positions)
|
|
salary = round(
|
|
random.uniform(50000, 150000), 2
|
|
) # Salary between 50,000 and 150,000
|
|
department = random.choice(departments)
|
|
location = random.choice(locations)
|
|
hire_date = random_hire_date()
|
|
performance_score = round(
|
|
random.uniform(1, 5), 2
|
|
) # Performance score between 1.0 and 5.0
|
|
years_of_experience = random.randint(
|
|
1, 30
|
|
) # Years of experience between 1 and 30
|
|
|
|
employee = {
|
|
"position": position,
|
|
"name": name,
|
|
"salary": salary,
|
|
"department": department,
|
|
"location": location,
|
|
"hire_date": hire_date,
|
|
"performance_score": performance_score,
|
|
"years_of_experience": years_of_experience,
|
|
}
|
|
|
|
employees.append(employee)
|
|
|
|
return employees
|
|
|
|
# Generate 10 random employee records
|
|
employee_records = generate_employee_records(200)
|
|
|
|
# Convert the list of dictionaries to a DataFrame
|
|
df = pd.DataFrame(employee_records)
|
|
|
|
df.to_sql("employees", conn, index=False)
|
|
|
|
return
|