How to import a lot of images in julia lang

253 Views Asked by At

I tried doing it that way but that only gives me the path of those folders but not the images in side.

### A Pluto.jl notebook ###
# v0.14.3

using Markdown
using InteractiveUtils
using Pkg


Pkg.activate("Project.toml")
Pkg.add("Flux")


#load data
trainData = "../src/dataset/chest_xray/train/"
testData  = "../src/dataset/chest_xray/test/"
validationData  = "../src/dataset/chest_xray/val/"

trainNormal =  "../src/dataset/chest_xray/train/NORMAL/"
TrainPneumonia =  "../src/dataset/chest_xray/train/PNEUMONIA/"

length(trainNormal)

@logankilpatrick what I am simply asking is how to import images kaggle.com/paultimothymooney/chest-xray-pneumonia in julia using the flux package. and the sample code that I posted its me just trying to do so but not working

0

There are 0 best solutions below