Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
The documentation is generated using sphinx. To view it, clone the repo and use your web browser to open docs/build/html/index.html. To regenerate the API documentation:
sphinx-apidoc -f -F -o docs src;
sphinx-build -M html docs docs/build/
Unit tests are setup in the test directory. They use the python unittest packages. To run all tests:
python -m unittest discover -v -p "*.py" -s test
Instal with pip in a venv. In the directory containing pyproject.toml :
pip install --editable .
python -m synthetic_aia_mia.experiments.adult <generator> <k>;
#Load data
from synthetic_aia_mia.fetch_data import adult
from synthetic_aia_mia.fetch_data import utk
data_adult = adult.load()
data_utk = utk.load()
#Train a neural network an adult
form synthetic.predictor.adult import AdultNN
adultNN = AdultNN()
adultNN.fit(data_adult["train"])
#Evalute trained neural network
adultNN.predict(data_adult["test"])
#Generate synthetic data
from synthetic_aia_mia.generator.adult import ctgan
from synthetic_aia_mia.generator import identity
synthetic_identity = identity(data_adult(["train"]))
synthetic_ctgan = ctgan(data_adult(["train"]))
We are using folktables adult.
From Kaggle: jangedoo/utkfaces-new. For loading and parsing files we use aia_fairness.dataset_processing
FAQs
AIA and MIA attack versus synthetic and real data.
We found that synthetic-aia-mia demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.