Skip to content

Commit

Permalink
Change description of synthetic dataset
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcoDiFrancesco committed Jun 12, 2024
1 parent 0d74d3f commit c60b381
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/datasets/synthetic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ use std::path::Path;

use super::utils;

/// ChatGPT Generated synthetic dataset.
/// Scikit learn synthetic dataset for classification.
///
/// Add 'synthetic.csv' to project root directory.
/// Genearted using 'make_classification' API.
pub struct Synthetic;
impl Synthetic {
pub fn load_data() -> IterCsv<f32, File> {
Expand Down
4 changes: 3 additions & 1 deletion src/datasets/synthetic_regression.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ use std::path::Path;

use super::utils;

/// ChatGPT Generated SyntheticRegression dataset.
/// Scikit learn synthetic dataset for regression.
///
/// Genearted using 'make_regression' API.
pub struct SyntheticRegression;
impl SyntheticRegression {
pub fn load_data() -> IterCsv<f32, File> {
Expand Down

0 comments on commit c60b381

Please sign in to comment.