The dataset viewer is not available for this dataset.
Cannot get the config names for the dataset.
Error code:   ConfigNamesError
Exception:    FileNotFoundError
Message:      Couldn't find a dataset script at /src/services/worker/nmccann1991/Intel-Natural-World-Study/Intel-Natural-World-Study.py or any data file in the same directory. Couldn't find 'nmccann1991/Intel-Natural-World-Study' on the Hugging Face Hub either: FileNotFoundError: No (supported) data files or dataset script found in nmccann1991/Intel-Natural-World-Study. 
Traceback:    Traceback (most recent call last):
                File "/src/services/worker/src/worker/job_runners/dataset/config_names.py", line 55, in compute_config_names_response
                  for config in sorted(get_dataset_config_names(path=dataset, token=hf_token))
                File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/inspect.py", line 351, in get_dataset_config_names
                  dataset_module = dataset_module_factory(
                File "/src/services/worker/.venv/lib/python3.9/site-packages/datasets/load.py", line 1491, in dataset_module_factory
                  raise FileNotFoundError(
              FileNotFoundError: Couldn't find a dataset script at /src/services/worker/nmccann1991/Intel-Natural-World-Study/Intel-Natural-World-Study.py or any data file in the same directory. Couldn't find 'nmccann1991/Intel-Natural-World-Study' on the Hugging Face Hub either: FileNotFoundError: No (supported) data files or dataset script found in nmccann1991/Intel-Natural-World-Study.

Need help to make the dataset viewer work? Open a discussion for direct support.

YAML Metadata Warning: empty or missing yaml metadata in repo card (https://huggingface.co/docs/hub/datasets-cards)

A Natural Look into our AI-Driven World: An Image Classification Lookthrough

TL;DR This image classification project identifies settings and categories of images automatically from Intel's natural world dataset. Our method utilizes Tensorflow on Python 3 to execute a classification process with a model accuracy of 74.8%. Not bad, but this suggests that there are opportunities for improvement. The loss in the test sets that is affecting accuracy comes down to Glacier and Sea images.

AI is changing the world as we know it. Companies look to train models based on recurring patterns, and visuals such as images make for great training material to help them identify and improve upon their ability to predict patterns and accuracy. For this project, we will be using Tensorflow. Tensorflow is an ML package from Google that enables analysts and engineers to develop everything from Simple Neural Networks to Image Classification. We're gonna focus on the latter, so this project will concentrate on using Keras.

The dataset used: https://www.kaggle.com/datasets/puneet6060/intel-image-classification

Installation

I highly recommend using VS Code to manage your python environment. From there, install Tensorflow by first installing Miniconda and then Tensorflow. Full instructions can be found here

I used the following for my Macbook Pro M1 Max laptop (Apple Silicon) machine:

#Miniconda
curl https://repo.anaconda.com/miniconda/Miniconda3-latest-MacOSX-x86_64.sh -o Miniconda3-latest-MacOSX-x86_64.sh
bash Miniconda3-latest-MacOSX-x86_64.sh

#Conda activation
conda create --name tf python=3.9
conda conda activate tf

#Pip Upgrade
pip install --upgrade pip

#Pip Install
pip install tensorflow

#Verify
python3 -c "import tensorflow as tf; print(tf.reduce_sum(tf.random.normal([1000, 1000])))"

Access to Project

You can access the Jpegs by visiting https://drive.google.com/file/d/1Ox3W_AJdBjg5Sc6tOn9KikR2BB8zndxh/view?usp=drive_link. To run the ipynb, download and unzip the image file and then change the file directory in the notebook to the location of the unzipped images.

Downloads last month
3