genai-reward / static /js /parameters.js
TheFrenchDemos's picture
solved issue with number of authors and number of neighbors
24f3fe8
const PARAMETERS = {
subscription: {
label: "Monthly Subscription (€)",
defaultValue: 12,
tooltip: `Monthly subscription fee for users. Examples:
- Adobe Firefly: starts at $4.99
- Midjourney: starts at $10
- DALL·E 3: included with ChatGPT Plus ($20)
- Getty Edify: €45 for 25 generations (includes legal protection)`
},
num_generations: {
label: "Generations per Month",
defaultValue: 60,
tooltip: `Number of generations done by one user on average per month.
Examples:
- Adobe Firefly basic plan: 100 generations/month
- Midjourney basic plan: 200 generations/month`
},
author_share: {
label: "Authors share (%)",
defaultValue: 5,
tooltip: `Percentage of subscription allocated to authors. Typical examples:
- Printed books: 5-15%
- Music (performers + songwriters): 15-30% of net revenues
- Stock photography: 15-45% of revenues`
},
ro_share: {
label: "Right Owners Share (%)",
defaultValue: 10,
tooltip: `Percentage of subscription allocated to right owners. Examples:
- Music CMOs (ASCAP, BMI, SACEM): 2-8% of net revenues
- Image stocks: retain 55-85% of revenues`
},
num_users_k: {
label: "Subscribers (in thousands)",
defaultValue: 500,
tooltip: `Number of paid users in thousands.
Note: Exact figures aren't public, but Midjourney is estimated to have 2 to 5 million paying subscribers`
},
num_authors: {
label: "Total Authors",
defaultValue: 2000,
tooltip: "Total number of authors in the system that could potentially receive rewards"
}
};