Skip to content

Commit 5e04b3d

Browse files
committed
gcmodeldescription
1 parent 0e1eec8 commit 5e04b3d

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

src/assets/synthetic-data.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ def run():
275275
},
276276
{
277277
'reportType': 'text',
278-
'textKey': 'syntheticData.cartModelDescription' if sdgMethod == 'cart' else 'syntheticData.gaussianCopulaModelDescription',
278+
'textKey': 'syntheticData.cartModelDescription' if sdgMethod == 'cart' else 'syntheticData.gcModelDescription',
279279
'params': {
280280
'samples': samples,
281281
}

src/locales/en.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,7 @@ export const en = {
186186
gaussianCopulaModelTitle: '3. Method: Gaussian Copula model',
187187
cartModelDescription:
188188
'The CART (Classification and Regression Trees) method generates synthetic data by learning patterns from real data through a decision tree that splits data into homogeneous groups based on feature values. It predicts averages for numerical data and assigns the most common category for categorical data, using these predictions to create new synthetic points.\n \n {{samples}} synthetic data points are generated.',
189+
gcModelDescription: `Gaussian Copula works in two main steps: 1. The real data is transformed into a uniform distribution. Correlations between variables are modeled using a multivariate normal distribution (the Gaussian copula); and 2. Synthetic data is created by sampling from this Gaussian copula and transforming the samples back to the original data distributions.\n \n {{samples}} synthetic data points are generated.`,
189190
evaluationOfGeneratedDataTitle:
190191
'4. Evaluation of generated synthetic data',
191192
distributionsTitle: '4.1 Distributions',

src/locales/nl.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,7 @@ export const nl = {
188188
gaussianCopulaModelTitle: '3. Methode: Gaussian Copula model',
189189
cartModelDescription:
190190
'De CART-methode (Classification and Regression Trees) genereert synthetische data door patronen uit echte data te leren via een beslisboom die de data opdeelt in homogene groepen op basis van kenmerken. Voor numerieke data voorspelt de methode gemiddelden en voor categorische data wijst het de meest voorkomende categorie toe. Deze voorspellingen worden vervolgens gebruikt om synthetische datapunten te creëren.\n \n {{samples}} synthetische datapunten zijn gegenereerd.',
191+
gcModelDescription: `Gaussian Copula werkt in twee stappen: 1. De echte data worden getransformeerd naar een uniforme verdeling. Correlaties tussen variabelen worden gemodelleerd met een multivariate normale verdeling (de Gaussian copula); en 2. Synthetische data worden gegenereerd door te sampelen uit deze copula en de samples terug te transformeren naar de oorspronkelijke verdelingen.\n \n {{samples}} synthetische datapunten zijn gegenereerd.`,
191192
evaluationOfGeneratedDataTitle:
192193
'4. Evaluatie van gegenereerde synthetische data',
193194
distributionsTitle: '4.1 Distributies',

0 commit comments

Comments
 (0)