Baselight

Calculate Concrete Strength

A Simple Data set for Regression with Neural Networking

@kaggle.prathamtripathi_regression_with_neural_networking

Concrete Data
@kaggle.prathamtripathi_regression_with_neural_networking.concrete_data

  • 24.12 KB
  • 1030 rows
  • 9 columns
cement

Cement

blast_furnace_slag

Blast Furnace Slag

fly_ash

Fly Ash

water

Water

superplasticizer

Superplasticizer

coarse_aggregate

Coarse Aggregate

fine_aggregate

Fine Aggregate

age

Age

strength

Strength

5401622.510406762879.99
5401622.510556762861.89
332.5142.522893259427040.27
332.5142.522893259436541.05
198.6132.4192978.4825.536044.3
2661142289326709047.03
3809522893259436543.7
380952289325942836.45
2661142289326702845.85
4752289325942839.29

CREATE TABLE concrete_data (
  "cement" DOUBLE,
  "blast_furnace_slag" DOUBLE,
  "fly_ash" DOUBLE,
  "water" DOUBLE,
  "superplasticizer" DOUBLE,
  "coarse_aggregate" DOUBLE,
  "fine_aggregate" DOUBLE,
  "age" BIGINT,
  "strength" DOUBLE
);

Share link

Anyone who has the link will be able to view this.