<- c("EMNIST", "FashionMNIST")
other.name.vec <- c(other.name.vec, "MNIST")
data.name.vec
<- "https://rcdata.nau.edu/genomic-ml/cv-same-other-paper/data_Classif/"
prefix <- "~/data_Classif"
data_Classif options(timeout = 600)#seconds
for(data.name in data.name.vec){
<- paste0(data.name, ".csv")
data.csv <- file.path(data_Classif, data.csv)
local.csv if(!file.exists(local.csv)){
<- paste0(prefix, data.csv)
remote.csv download.file(remote.csv, local.csv)
} }
In this blog I aim to explain what I understand from re-doing the following tutorial.
Introduction
Loading the dataset
Before starting the tutorial I had to create a seperate file to download the csv file that was needed.
In a file that I called Download.R :
This code will create a new folder called data_Classif in which you’ll find the files :
EMNIST.csv
FashionMNIST.csv
MNIST.csv