Questions tagged [synthetic]
98 questions
1
vote
1 answer
Synthetic Data with range of date & time
I am trying to generate synthetic data with with date & time range. How can I include the needed date-time section in the program mentioned below?
import random
import sys
import math
latitude = 0.794501
longitude = -0.752568
file_n =…

Sitz Blogz
- 1,061
- 6
- 30
- 54
1
vote
2 answers
How to generate random two concentric spheres synthetic data?
How to generate random two concentric spheres synthetic data with radius1=40 and radius2 =100 in MATLAB and save that data in format *.mat with one variable.(1000*3 double)? Also, how to plot this data in 3D with 2 colors: red and blue?
My…

Mohammad
- 161
- 2
- 10
1
vote
3 answers
Java enum synthetic arguments for constructors
Please have a look at Synthetic Arguments. Enum constructors have two additional synthetic arguments.
Please look at the section:
Another example: Java enum classes
As you can see, it saves quite some code, but also adds synthetic fields, methods…

gudge
- 1,053
- 4
- 18
- 33
0
votes
0 answers
Importing two different modules but with the same name and different path in colab
I'm currently working on my thesis on synthetic data generation. I decided to use google colab to run my model because it faster than my pc.
The model that i'm using are:
CTAB-GAN , https://github.com/Team-TUD/CTAB-GAN
CTAB-GAN+ ,…
0
votes
3 answers
How to create synthetic data based on real data?
I want to make synthetic data based on real data.
Data sample:
session_id
session_date_time
session_status
mentor_domain_id
mentor_id
reg_date_mentor
region_id_mentor
mentee_id
reg_date_mentee
region_id_mentee
5528
9165
2022-09-03…

John Doe
- 95
- 6
0
votes
0 answers
Expand my dataset with transitional synthetic data
I am working on a classification problem and i have a dataset consisting of two classes (error, no error) with many other parameter columns. I am trying to build a remaining useful life model but lack information in my dataset for transitional…

Ornel
- 1
0
votes
0 answers
With SDV, I want to generate vertical oriented data (1 record is spread over multiple rows), is this possible?
I want to generate synthetic data with SDV where each row contains only one variable name (and variable value).
Something like: PersonId, ValueName, Value, Index
I get this data from a supplier.
The dataSet per PersonId can have more than 300 fields…

user3820102
- 1
- 2
0
votes
0 answers
I am trying to generate synthetic data of previous days from a dataset . How can I include the needed date in the program?
i have generated the new data using ctgan but it creates in same day as in dataset (13-09-2022 and 14-09-2022). I want the dates previous days(like 12-09-2022,11-09-2022...) ,can anyone help
thank you in advance
from ctgan import CTGAN
ctgan =…

saad
- 1
- 2
0
votes
0 answers
Synthetics Canary keeps failing with 403 error
0
I cannot get canary to hit api gateway endpoint. I keep getting an error below. I can hit the api using postman without authentication key so not sure why I can't do the same using synthetic canary. The API is within the same vpc as the canary…

user2907975
- 1
- 1
0
votes
0 answers
GAN generator for image size 224X224
i want to generate synthetic image of size 224x224 using gan generator. but i dont understand how to design dcgan generator specific image size using 2d transpose convolution. kindly help
TensorFlow Gan code for DCGAN I tried
0
votes
1 answer
Filling a data frame with synthetic data
I am trying to fill and save a DataFrame with fake data from the Faker package but I am struggling to return more that one row of data.
I tried using a for loop but it didn't quite work. Could anybody point me in the right direction?
from faker…

CaptainAble2500
- 21
- 1
- 6
0
votes
1 answer
Preventing the creation of a synthetic constructor
While exploring the ArrayList class, I can't figure out the following part (constructor of the inner class Itr):
// prevent creating a synthetic constructor
Itr() {}
I kinda understand what the "synthetic stuff" in java is, but why do we need to…

ioan.dm
- 3
- 1
0
votes
0 answers
Dynatrace synthetic monitoring- JS function import and invoke
We have a requirement to use cyptojs to encrypt and decrypt password. We are using Httpmonitor to perform synthetic transactions in Dynatrace to monitor API endpoints
Please advise how to import js in Http Monitor Request so that we can use this…

jslearner07
- 451
- 1
- 4
- 17
0
votes
1 answer
Synthetic Control with Weights Summing to more than 1
I am using the Synth package in R to run synthetic control (https://cran.r-project.org/web/packages/Synth/Synth.pdf).
I would like to obtain weights, which are not restricted to sum to 1.
Does anybody know how to achieve this?
0
votes
0 answers
How can via kotlin mapOf map buttons key to value?
How can via Kotlin mapOf map buttons key to value?
I have such code.
reference to start_button is correct, by clickin on it I can open corect button in xml, but in debug mode buttonsMap value (start_button) is null.
class StartDialog :…

Slava
- 443
- 4
- 12