Web platform for the design and execution of deep learning models for learning and initiation in the study of deep learning models.
The tool proposes different classical machine learning problems with known data sets to study and model different neural network architectures and training parameters. The tool addresses different examples of deep learning models such as tabular classification, image classifier or object identification.
There are some classical problems prepared and reviewed to make predictions, the tool has the feature to pre process data sets that the user uploads, train models and predict in which class it would be classified.
- Tabular classification
- Regression
- Image classifier
- Object identification
export NODE_OPTIONS="--max-old-space-size=8192"
npm install
npm startCreate the files .env, .env.development, .env.production, .env.simidat and .env.simidat-beta.
.env
WATCHPACK_POLLING=
FAST_REFRESH=
NODE_ENV=""
PUBLIC_URL=""
VITE_PUBLIC_URL=""
VITE_PATH=""
VITE_ENVIRONMENT=""
VITE_GA_MEASUREMENT_ID="G-XXXXXXXXXX"
VITE_SHOW_NEW_FEATURE="true"
VITE_NEW_FEATURE=""
GENERATE_SOURCEMAP=true.env.development
WATCHPACK_POLLING=true
FAST_REFRESH=true
NODE_ENV="development"
PUBLIC_URL="http://localhost/n4l"
VITE_PUBLIC_URL="https://localhost/n4l"
VITE_PATH="/n4l"
VITE_ENVIRONMENT="development"
VITE_GA_MEASUREMENT_ID="G-XXXXXXXXXX"
VITE_SHOW_NEW_FEATURE="true"
VITE_NEW_FEATURE="linear-regression"
GENERATE_SOURCEMAP=true.env.production
WATCHPACK_POLLING=true
FAST_REFRESH=true
NODE_ENV="production"
PUBLIC_URL="https://simidat.ujaen.es/n4l"
VITE_PUBLIC_URL="https://simidat.ujaen.es/n4l"
VITE_PATH="/n4l"
VITE_ENVIRONMENT="production"
VITE_GA_MEASUREMENT_ID="G-XXXXXXXXXX"
VITE_SHOW_NEW_FEATURE="true"
VITE_NEW_FEATURE="linear-regression"
GENERATE_SOURCEMAP=falsedocker-compose.yml
docker compose down n4l
docker compose build n4l
docker compose up n4l| development | build | |
|---|---|---|
| Development | pnpm run dev |
|
| simidat | pnpm run build:simidat |
|
| netlify | pnpm run build:netlify |
|
| netlify-snapshot | pnpm run build:netlify-snapshot |
node -v
# v22.13.0
pnpm -v
# 10.24.0