Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -35,7 +35,7 @@ def compute_roi(avg_duration, estd_courses, course_price, price_dubbing, course_
|
|
35 |
|
36 |
def calcualte_cost_capacity(content_hours, pricing_per_minute, expected_delivery_days, avg_translator_speed, translators_pay_per_month):
|
37 |
sleep(1)
|
38 |
-
total_revenue = float(content_hours) * float(pricing_per_minute)
|
39 |
expected_num_people = int(float(content_hours) * 60 / (float(avg_translator_speed) * float(expected_delivery_days)))
|
40 |
company_cost_beared = expected_num_people * float(expected_delivery_days) * float(translators_pay_per_month)
|
41 |
|
|
|
35 |
|
36 |
def calcualte_cost_capacity(content_hours, pricing_per_minute, expected_delivery_days, avg_translator_speed, translators_pay_per_month):
|
37 |
sleep(1)
|
38 |
+
total_revenue = float(content_hours) * float(pricing_per_minute) * 60
|
39 |
expected_num_people = int(float(content_hours) * 60 / (float(avg_translator_speed) * float(expected_delivery_days)))
|
40 |
company_cost_beared = expected_num_people * float(expected_delivery_days) * float(translators_pay_per_month)
|
41 |
|