diff --git a/.DS_Store b/.DS_Store index f981146fab162fdb92908e5d1826de0002d5e1c1..f3e8c4b9846008c00e6c7e22281cf0b64af5212b 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/signs.py b/signs.py deleted file mode 100644 index a93af37a6b89963422b1ba8d240964294629cf9f..0000000000000000000000000000000000000000 --- a/signs.py +++ /dev/null @@ -1,172 +0,0 @@ -# Copyright 2020 The HuggingFace Datasets Authors and the current dataset script contributor. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# TODO: Address all TODOs and remove all explanatory comments -"""TODO: Add a description here.""" - - -import csv -import json -import os - -import datasets - - -# TODO: Add BibTeX citation -# Find for instance the citation on arxiv or on the dataset repo/website -_CITATION = """\ -@InProceedings{huggingface:dataset, -title = {A great new dataset}, -author={huggingface, Inc. -}, -year={2020} -} -""" - -# TODO: Add description of the dataset here -# You can copy an official description -_DESCRIPTION = """\ -This new dataset is designed to solve this great NLP task and is crafted with a lot of care. -""" - -# TODO: Add a link to an official homepage for the dataset here -_HOMEPAGE = "" - -# TODO: Add the licence for the dataset here if you can find it -_LICENSE = "" - -# TODO: Add link to the official dataset URLs here -# The HuggingFace Datasets library doesn't host the datasets but only points to the original files. -# This can be an arbitrary nested dict/list of URLs (see below in `_split_generators` method) -_URLS = { - "first_domain": "https://huggingface.co/great-new-dataset-first_domain.zip", - "second_domain": "https://huggingface.co/great-new-dataset-second_domain.zip", -} - - -# TODO: Name of the dataset usually matches the script name with CamelCase instead of snake_case -class NewDataset(datasets.GeneratorBasedBuilder): - """TODO: Short description of my dataset.""" - - VERSION = datasets.Version("1.1.0") - - # This is an example of a dataset with multiple configurations. - # If you don't want/need to define several sub-sets in your dataset, - # just remove the BUILDER_CONFIG_CLASS and the BUILDER_CONFIGS attributes. - - # If you need to make complex sub-parts in the datasets with configurable options - # You can create your own builder configuration class to store attribute, inheriting from datasets.BuilderConfig - # BUILDER_CONFIG_CLASS = MyBuilderConfig - - # You will be able to load one or the other configurations in the following list with - # data = datasets.load_dataset('my_dataset', 'first_domain') - # data = datasets.load_dataset('my_dataset', 'second_domain') - BUILDER_CONFIGS = [ - datasets.BuilderConfig(name="first_domain", version=VERSION, description="This part of my dataset covers a first domain"), - datasets.BuilderConfig(name="second_domain", version=VERSION, description="This part of my dataset covers a second domain"), - ] - - DEFAULT_CONFIG_NAME = "first_domain" # It's not mandatory to have a default configuration. Just use one if it make sense. - - def _info(self): - # TODO: This method specifies the datasets.DatasetInfo object which contains informations and typings for the dataset - if self.config.name == "first_domain": # This is the name of the configuration selected in BUILDER_CONFIGS above - features = datasets.Features( - { - "sentence": datasets.Value("string"), - "option1": datasets.Value("string"), - "answer": datasets.Value("string") - # These are the features of your dataset like images, labels ... - } - ) - else: # This is an example to show how to have different features for "first_domain" and "second_domain" - features = datasets.Features( - { - "sentence": datasets.Value("string"), - "option2": datasets.Value("string"), - "second_domain_answer": datasets.Value("string") - # These are the features of your dataset like images, labels ... - } - ) - return datasets.DatasetInfo( - # This is the description that will appear on the datasets page. - description=_DESCRIPTION, - # This defines the different columns of the dataset and their types - features=features, # Here we define them above because they are different between the two configurations - # If there's a common (input, target) tuple from the features, uncomment supervised_keys line below and - # specify them. They'll be used if as_supervised=True in builder.as_dataset. - # supervised_keys=("sentence", "label"), - # Homepage of the dataset for documentation - homepage=_HOMEPAGE, - # License for the dataset if available - license=_LICENSE, - # Citation for the dataset - citation=_CITATION, - ) - - def _split_generators(self, dl_manager): - # TODO: This method is tasked with downloading/extracting the data and defining the splits depending on the configuration - # If several configurations are possible (listed in BUILDER_CONFIGS), the configuration selected by the user is in self.config.name - - # dl_manager is a datasets.download.DownloadManager that can be used to download and extract URLS - # It can accept any type or nested list/dict and will give back the same structure with the url replaced with path to local files. - # By default the archives will be extracted and a path to a cached folder where they are extracted is returned instead of the archive - urls = "https://huggingface.co/datasets/MakaTalk/Signs" - data_dir = dl_manager.download_and_extract(urls) - return [ - datasets.SplitGenerator( - name=datasets.Split.TRAIN, - # These kwargs will be passed to _generate_examples - gen_kwargs={ - "filepath": os.path.join(data_dir, "train.jsonl"), - "split": "train", - }, - ), - datasets.SplitGenerator( - name=datasets.Split.VALIDATION, - # These kwargs will be passed to _generate_examples - gen_kwargs={ - "filepath": os.path.join(data_dir, "dev.jsonl"), - "split": "dev", - }, - ), - datasets.SplitGenerator( - name=datasets.Split.TEST, - # These kwargs will be passed to _generate_examples - gen_kwargs={ - "filepath": os.path.join(data_dir, "test.jsonl"), - "split": "test" - }, - ), - ] - - # method parameters are unpacked from `gen_kwargs` as given in `_split_generators` - def _generate_examples(self, filepath, split): - # TODO: This method handles input defined in _split_generators to yield (key, example) tuples from the dataset. - # The `key` is for legacy reasons (tfds) and is not important in itself, but must be unique for each example. - with open(filepath, encoding="utf-8") as f: - for key, row in enumerate(f): - data = json.loads(row) - if self.config.name == "first_domain": - # Yields examples as (key, example) tuples - yield key, { - "sentence": data["sentence"], - "option1": data["option1"], - "answer": "" if split == "test" else data["answer"], - } - else: - yield key, { - "sentence": data["sentence"], - "option2": data["option2"], - "second_domain_answer": "" if split == "test" else data["second_domain_answer"], - } diff --git a/test/.DS_Store b/test/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..288124a4d40ffd054e3bbabc877c96aaa5818880 Binary files /dev/null and b/test/.DS_Store differ diff --git a/test/test.txt b/test/test.txt new file mode 100644 index 0000000000000000000000000000000000000000..b41f40b23b0b0110fa86b1a045c061d4ac8cafe8 --- /dev/null +++ b/test/test.txt @@ -0,0 +1 @@ +test files here \ No newline at end of file diff --git a/train/.DS_Store b/train/.DS_Store index 96cef7074e27e59bbe6e341dfc0422b5647f18fc..28f0d6ef9ab6a4f9784fb3c83830fd601bfb0f83 100644 Binary files a/train/.DS_Store and b/train/.DS_Store differ diff --git a/train/Colours/Black/.DS_Store b/train/Angry/.DS_Store similarity index 100% rename from train/Colours/Black/.DS_Store rename to train/Angry/.DS_Store diff --git a/train/Emotions/Angry/Angry.mp4 b/train/Angry/Angry.mp4 similarity index 100% rename from train/Emotions/Angry/Angry.mp4 rename to train/Angry/Angry.mp4 diff --git a/train/Emotions/Angry/Angry3.mp4 b/train/Angry/Angry3.mp4 similarity index 100% rename from train/Emotions/Angry/Angry3.mp4 rename to train/Angry/Angry3.mp4 diff --git a/train/Emotions/Angry/Angry_003.mp4 b/train/Angry/Angry_003.mp4 similarity index 100% rename from train/Emotions/Angry/Angry_003.mp4 rename to train/Angry/Angry_003.mp4 diff --git a/train/Colours/Blue/.DS_Store b/train/Anxious/.DS_Store similarity index 100% rename from train/Colours/Blue/.DS_Store rename to train/Anxious/.DS_Store diff --git a/train/Emotions/Anxious/Anxious.mp4 b/train/Anxious/Anxious.mp4 similarity index 100% rename from train/Emotions/Anxious/Anxious.mp4 rename to train/Anxious/Anxious.mp4 diff --git a/train/Colours/Brown/.DS_Store b/train/Black/.DS_Store similarity index 100% rename from train/Colours/Brown/.DS_Store rename to train/Black/.DS_Store diff --git a/train/Colours/Black/Black.mp4 b/train/Black/Black.mp4 similarity index 100% rename from train/Colours/Black/Black.mp4 rename to train/Black/Black.mp4 diff --git a/train/Colours/Black/Black2.mp4 b/train/Black/Black2.mp4 similarity index 100% rename from train/Colours/Black/Black2.mp4 rename to train/Black/Black2.mp4 diff --git a/train/Colours/Black/BlackVID.mp4 b/train/Black/BlackVID.mp4 similarity index 100% rename from train/Colours/Black/BlackVID.mp4 rename to train/Black/BlackVID.mp4 diff --git a/train/Colours/Colour/.DS_Store b/train/Blue/.DS_Store similarity index 100% rename from train/Colours/Colour/.DS_Store rename to train/Blue/.DS_Store diff --git a/train/Colours/Blue/Blue.mp4 b/train/Blue/Blue.mp4 similarity index 100% rename from train/Colours/Blue/Blue.mp4 rename to train/Blue/Blue.mp4 diff --git a/train/Colours/Gold/.DS_Store b/train/Brown/.DS_Store similarity index 100% rename from train/Colours/Gold/.DS_Store rename to train/Brown/.DS_Store diff --git a/train/Colours/Brown/Brown.mp4 b/train/Brown/Brown.mp4 similarity index 100% rename from train/Colours/Brown/Brown.mp4 rename to train/Brown/Brown.mp4 diff --git a/train/Colours/Brown/Brown2.mp4 b/train/Brown/Brown2.mp4 similarity index 100% rename from train/Colours/Brown/Brown2.mp4 rename to train/Brown/Brown2.mp4 diff --git a/train/Colours/Brown/BrownVID.mp4 b/train/Brown/BrownVID.mp4 similarity index 100% rename from train/Colours/Brown/BrownVID.mp4 rename to train/Brown/BrownVID.mp4 diff --git a/train/Colours/Green/.DS_Store b/train/Colour/.DS_Store similarity index 100% rename from train/Colours/Green/.DS_Store rename to train/Colour/.DS_Store diff --git a/train/Colours/Colour/Colour.mp4 b/train/Colour/Colour.mp4 similarity index 100% rename from train/Colours/Colour/Colour.mp4 rename to train/Colour/Colour.mp4 diff --git a/train/Colours/.DS_Store b/train/Colours/.DS_Store deleted file mode 100644 index 81373ea0c1d51db413855108042a2d200cf1971c..0000000000000000000000000000000000000000 Binary files a/train/Colours/.DS_Store and /dev/null differ diff --git a/train/DaysOfTheWeek/.DS_Store b/train/DaysOfTheWeek/.DS_Store deleted file mode 100644 index a3c853aed317db72175564f92239a3e5abefcb44..0000000000000000000000000000000000000000 Binary files a/train/DaysOfTheWeek/.DS_Store and /dev/null differ diff --git a/train/Emotions/.DS_Store b/train/Emotions/.DS_Store deleted file mode 100644 index 992130061407d7a94343959b5411661e284bef9a..0000000000000000000000000000000000000000 Binary files a/train/Emotions/.DS_Store and /dev/null differ diff --git a/train/Emotions/Excited/Excited.mp4 b/train/Excited/Excited.mp4 similarity index 100% rename from train/Emotions/Excited/Excited.mp4 rename to train/Excited/Excited.mp4 diff --git a/train/Emotions/Feelings/Feelings.mp4 b/train/Feelings/Feelings.mp4 similarity index 100% rename from train/Emotions/Feelings/Feelings.mp4 rename to train/Feelings/Feelings.mp4 diff --git a/train/Colours/Grey/.DS_Store b/train/Friday/.DS_Store similarity index 100% rename from train/Colours/Grey/.DS_Store rename to train/Friday/.DS_Store diff --git a/train/DaysOfTheWeek/Friday/453 friday.mp4 b/train/Friday/453 friday.mp4 similarity index 100% rename from train/DaysOfTheWeek/Friday/453 friday.mp4 rename to train/Friday/453 friday.mp4 diff --git a/train/Colours/Pink/.DS_Store b/train/Frightened/.DS_Store similarity index 100% rename from train/Colours/Pink/.DS_Store rename to train/Frightened/.DS_Store diff --git a/train/Emotions/Frightened/Frightened.mp4 b/train/Frightened/Frightened.mp4 similarity index 100% rename from train/Emotions/Frightened/Frightened.mp4 rename to train/Frightened/Frightened.mp4 diff --git a/train/Colours/Purple/.DS_Store b/train/Gold/.DS_Store similarity index 100% rename from train/Colours/Purple/.DS_Store rename to train/Gold/.DS_Store diff --git a/train/Colours/Gold/GOLD copy.mp4 b/train/Gold/GOLD copy.mp4 similarity index 100% rename from train/Colours/Gold/GOLD copy.mp4 rename to train/Gold/GOLD copy.mp4 diff --git a/train/Colours/Silver/.DS_Store b/train/Green/.DS_Store similarity index 100% rename from train/Colours/Silver/.DS_Store rename to train/Green/.DS_Store diff --git a/train/Colours/Green/Green.mp4 b/train/Green/Green.mp4 similarity index 100% rename from train/Colours/Green/Green.mp4 rename to train/Green/Green.mp4 diff --git a/train/Colours/White/.DS_Store b/train/Grey/.DS_Store similarity index 100% rename from train/Colours/White/.DS_Store rename to train/Grey/.DS_Store diff --git a/train/Colours/Grey/GREY copy.mp4 b/train/Grey/GREY copy.mp4 similarity index 100% rename from train/Colours/Grey/GREY copy.mp4 rename to train/Grey/GREY copy.mp4 diff --git a/train/Colours/Grey/Grey.mp4 b/train/Grey/Grey.mp4 similarity index 100% rename from train/Colours/Grey/Grey.mp4 rename to train/Grey/Grey.mp4 diff --git a/train/Colours/Yellow/.DS_Store b/train/Happy/.DS_Store similarity index 100% rename from train/Colours/Yellow/.DS_Store rename to train/Happy/.DS_Store diff --git a/train/Emotions/Happy/Happy.mp4 b/train/Happy/Happy.mp4 similarity index 100% rename from train/Emotions/Happy/Happy.mp4 rename to train/Happy/Happy.mp4 diff --git a/train/Emotions/Happy/Happy2.mp4 b/train/Happy/Happy2.mp4 similarity index 100% rename from train/Emotions/Happy/Happy2.mp4 rename to train/Happy/Happy2.mp4 diff --git a/train/Emotions/Happy/Happy3.mp4 b/train/Happy/Happy3.mp4 similarity index 100% rename from train/Emotions/Happy/Happy3.mp4 rename to train/Happy/Happy3.mp4 diff --git a/train/DaysOfTheWeek/Friday/.DS_Store b/train/ILL/.DS_Store similarity index 100% rename from train/DaysOfTheWeek/Friday/.DS_Store rename to train/ILL/.DS_Store diff --git a/train/Emotions/ILL/ILL.mp4 b/train/ILL/ILL.mp4 similarity index 100% rename from train/Emotions/ILL/ILL.mp4 rename to train/ILL/ILL.mp4 diff --git a/train/Colours/Indigo/indigo.mp4 b/train/Indigo/indigo.mp4 similarity index 100% rename from train/Colours/Indigo/indigo.mp4 rename to train/Indigo/indigo.mp4 diff --git a/train/DaysOfTheWeek/Monday/.DS_Store b/train/Monday/.DS_Store similarity index 100% rename from train/DaysOfTheWeek/Monday/.DS_Store rename to train/Monday/.DS_Store diff --git a/train/DaysOfTheWeek/Monday/453 monday.mp4 b/train/Monday/453 monday.mp4 similarity index 100% rename from train/DaysOfTheWeek/Monday/453 monday.mp4 rename to train/Monday/453 monday.mp4 diff --git a/train/Emotions/Mood/Mood.mp4 b/train/Mood/Mood.mp4 similarity index 100% rename from train/Emotions/Mood/Mood.mp4 rename to train/Mood/Mood.mp4 diff --git a/train/DaysOfTheWeek/Saturday/.DS_Store b/train/Nervous/.DS_Store similarity index 100% rename from train/DaysOfTheWeek/Saturday/.DS_Store rename to train/Nervous/.DS_Store diff --git a/train/Emotions/Nervous/Nervous.mp4 b/train/Nervous/Nervous.mp4 similarity index 100% rename from train/Emotions/Nervous/Nervous.mp4 rename to train/Nervous/Nervous.mp4 diff --git a/train/Colours/Orange/Orange.mp4 b/train/Orange/Orange.mp4 similarity index 100% rename from train/Colours/Orange/Orange.mp4 rename to train/Orange/Orange.mp4 diff --git a/train/DaysOfTheWeek/Sunday/.DS_Store b/train/Pink/.DS_Store similarity index 100% rename from train/DaysOfTheWeek/Sunday/.DS_Store rename to train/Pink/.DS_Store diff --git a/train/Colours/Pink/PINK copy.mp4 b/train/Pink/PINK copy.mp4 similarity index 100% rename from train/Colours/Pink/PINK copy.mp4 rename to train/Pink/PINK copy.mp4 diff --git a/train/Colours/Pink/Pink.mp4 b/train/Pink/Pink.mp4 similarity index 100% rename from train/Colours/Pink/Pink.mp4 rename to train/Pink/Pink.mp4 diff --git a/train/Colours/Pink/Pink2.mp4 b/train/Pink/Pink2.mp4 similarity index 100% rename from train/Colours/Pink/Pink2.mp4 rename to train/Pink/Pink2.mp4 diff --git a/train/DaysOfTheWeek/Thursday/.DS_Store b/train/Purple/.DS_Store similarity index 100% rename from train/DaysOfTheWeek/Thursday/.DS_Store rename to train/Purple/.DS_Store diff --git a/train/Colours/Purple/PURPLE copy.mp4 b/train/Purple/PURPLE copy.mp4 similarity index 100% rename from train/Colours/Purple/PURPLE copy.mp4 rename to train/Purple/PURPLE copy.mp4 diff --git a/train/Colours/Purple/Purple.mp4 b/train/Purple/Purple.mp4 similarity index 100% rename from train/Colours/Purple/Purple.mp4 rename to train/Purple/Purple.mp4 diff --git a/train/Colours/Purple/Purple2.mp4 b/train/Purple/Purple2.mp4 similarity index 100% rename from train/Colours/Purple/Purple2.mp4 rename to train/Purple/Purple2.mp4 diff --git a/train/Colours/Red/Red.mp4 b/train/Red/Red.mp4 similarity index 100% rename from train/Colours/Red/Red.mp4 rename to train/Red/Red.mp4 diff --git a/train/DaysOfTheWeek/Tuesday/.DS_Store b/train/Sad/.DS_Store similarity index 100% rename from train/DaysOfTheWeek/Tuesday/.DS_Store rename to train/Sad/.DS_Store diff --git a/train/Emotions/Sad/Sad.mp4 b/train/Sad/Sad.mp4 similarity index 100% rename from train/Emotions/Sad/Sad.mp4 rename to train/Sad/Sad.mp4 diff --git a/train/Emotions/Sad/Sad2.mp4 b/train/Sad/Sad2.mp4 similarity index 100% rename from train/Emotions/Sad/Sad2.mp4 rename to train/Sad/Sad2.mp4 diff --git a/train/Emotions/Sad/Sad3.mp4 b/train/Sad/Sad3.mp4 similarity index 100% rename from train/Emotions/Sad/Sad3.mp4 rename to train/Sad/Sad3.mp4 diff --git a/train/DaysOfTheWeek/Wednesday/.DS_Store b/train/Saturday/.DS_Store similarity index 100% rename from train/DaysOfTheWeek/Wednesday/.DS_Store rename to train/Saturday/.DS_Store diff --git a/train/DaysOfTheWeek/Saturday/453 saturday.mp4 b/train/Saturday/453 saturday.mp4 similarity index 100% rename from train/DaysOfTheWeek/Saturday/453 saturday.mp4 rename to train/Saturday/453 saturday.mp4 diff --git a/train/Emotions/Angry/.DS_Store b/train/Silver/.DS_Store similarity index 100% rename from train/Emotions/Angry/.DS_Store rename to train/Silver/.DS_Store diff --git a/train/Colours/Silver/SILVER copy.mp4 b/train/Silver/SILVER copy.mp4 similarity index 100% rename from train/Colours/Silver/SILVER copy.mp4 rename to train/Silver/SILVER copy.mp4 diff --git a/train/Emotions/Stressed/Stressed.mp4 b/train/Stressed/Stressed.mp4 similarity index 100% rename from train/Emotions/Stressed/Stressed.mp4 rename to train/Stressed/Stressed.mp4 diff --git a/train/Emotions/Anxious/.DS_Store b/train/Sunday/.DS_Store similarity index 100% rename from train/Emotions/Anxious/.DS_Store rename to train/Sunday/.DS_Store diff --git a/train/DaysOfTheWeek/Sunday/Sunday.mp4 b/train/Sunday/Sunday.mp4 similarity index 100% rename from train/DaysOfTheWeek/Sunday/Sunday.mp4 rename to train/Sunday/Sunday.mp4 diff --git a/train/Emotions/Frightened/.DS_Store b/train/Thursday/.DS_Store similarity index 100% rename from train/Emotions/Frightened/.DS_Store rename to train/Thursday/.DS_Store diff --git a/train/DaysOfTheWeek/Thursday/453 thursday.mp4 b/train/Thursday/453 thursday.mp4 similarity index 100% rename from train/DaysOfTheWeek/Thursday/453 thursday.mp4 rename to train/Thursday/453 thursday.mp4 diff --git a/train/Emotions/Tired/Tired.mp4 b/train/Tired/Tired.mp4 similarity index 100% rename from train/Emotions/Tired/Tired.mp4 rename to train/Tired/Tired.mp4 diff --git a/train/Emotions/Happy/.DS_Store b/train/Tuesday/.DS_Store similarity index 100% rename from train/Emotions/Happy/.DS_Store rename to train/Tuesday/.DS_Store diff --git a/train/DaysOfTheWeek/Tuesday/453 tuesday.mp4 b/train/Tuesday/453 tuesday.mp4 similarity index 100% rename from train/DaysOfTheWeek/Tuesday/453 tuesday.mp4 rename to train/Tuesday/453 tuesday.mp4 diff --git a/train/Emotions/Upset/Upset.mp4 b/train/Upset/Upset.mp4 similarity index 100% rename from train/Emotions/Upset/Upset.mp4 rename to train/Upset/Upset.mp4 diff --git a/train/Colours/Violet/Violet.mp4 b/train/Violet/Violet.mp4 similarity index 100% rename from train/Colours/Violet/Violet.mp4 rename to train/Violet/Violet.mp4 diff --git a/train/Emotions/ILL/.DS_Store b/train/Wednesday/.DS_Store similarity index 100% rename from train/Emotions/ILL/.DS_Store rename to train/Wednesday/.DS_Store diff --git a/train/DaysOfTheWeek/Wednesday/453 wednesday.mp4 b/train/Wednesday/453 wednesday.mp4 similarity index 100% rename from train/DaysOfTheWeek/Wednesday/453 wednesday.mp4 rename to train/Wednesday/453 wednesday.mp4 diff --git a/train/Emotions/Nervous/.DS_Store b/train/White/.DS_Store similarity index 100% rename from train/Emotions/Nervous/.DS_Store rename to train/White/.DS_Store diff --git a/train/Colours/White/White.mp4 b/train/White/White.mp4 similarity index 100% rename from train/Colours/White/White.mp4 rename to train/White/White.mp4 diff --git a/train/Colours/White/White2.mp4 b/train/White/White2.mp4 similarity index 100% rename from train/Colours/White/White2.mp4 rename to train/White/White2.mp4 diff --git a/train/Colours/White/WhiteVID.mp4 b/train/White/WhiteVID.mp4 similarity index 100% rename from train/Colours/White/WhiteVID.mp4 rename to train/White/WhiteVID.mp4 diff --git a/train/Emotions/Sad/.DS_Store b/train/Worried/.DS_Store similarity index 100% rename from train/Emotions/Sad/.DS_Store rename to train/Worried/.DS_Store diff --git a/train/Emotions/Worried/Worried.mp4 b/train/Worried/Worried.mp4 similarity index 100% rename from train/Emotions/Worried/Worried.mp4 rename to train/Worried/Worried.mp4 diff --git a/train/Emotions/Worried/Worried2.mp4 b/train/Worried/Worried2.mp4 similarity index 100% rename from train/Emotions/Worried/Worried2.mp4 rename to train/Worried/Worried2.mp4 diff --git a/train/Emotions/Worried/.DS_Store b/train/Yellow/.DS_Store similarity index 100% rename from train/Emotions/Worried/.DS_Store rename to train/Yellow/.DS_Store diff --git a/train/Colours/Yellow/Yellow.mp4 b/train/Yellow/Yellow.mp4 similarity index 100% rename from train/Colours/Yellow/Yellow.mp4 rename to train/Yellow/Yellow.mp4 diff --git a/val/.DS_Store b/val/.DS_Store index 4ba648f5ffc0c27cc85ba359f3a9c331d7a08920..c7f601cde46dfe61321aa5561f8fcb21720cf084 100644 Binary files a/val/.DS_Store and b/val/.DS_Store differ diff --git a/val/Colours/Black/.DS_Store b/val/Angry/.DS_Store similarity index 100% rename from val/Colours/Black/.DS_Store rename to val/Angry/.DS_Store diff --git a/val/Emotions/Angry/Angry5.mp4 b/val/Angry/Angry5.mp4 similarity index 100% rename from val/Emotions/Angry/Angry5.mp4 rename to val/Angry/Angry5.mp4 diff --git a/val/Colours/Blue/.DS_Store b/val/Anxious/.DS_Store similarity index 100% rename from val/Colours/Blue/.DS_Store rename to val/Anxious/.DS_Store diff --git a/val/Emotions/Anxious/Anxious2.mp4 b/val/Anxious/Anxious2.mp4 similarity index 100% rename from val/Emotions/Anxious/Anxious2.mp4 rename to val/Anxious/Anxious2.mp4 diff --git a/val/Colours/Brown/.DS_Store b/val/Black/.DS_Store similarity index 100% rename from val/Colours/Brown/.DS_Store rename to val/Black/.DS_Store diff --git a/val/Colours/Black/Black3.mp4 b/val/Black/Black3.mp4 similarity index 100% rename from val/Colours/Black/Black3.mp4 rename to val/Black/Black3.mp4 diff --git a/val/Colours/Colour/.DS_Store b/val/Blue/.DS_Store similarity index 100% rename from val/Colours/Colour/.DS_Store rename to val/Blue/.DS_Store diff --git a/val/Colours/Blue/BlueVID.mp4 b/val/Blue/BlueVID.mp4 similarity index 100% rename from val/Colours/Blue/BlueVID.mp4 rename to val/Blue/BlueVID.mp4 diff --git a/val/Colours/Gold/.DS_Store b/val/Brown/.DS_Store similarity index 100% rename from val/Colours/Gold/.DS_Store rename to val/Brown/.DS_Store diff --git a/val/Colours/Brown/Brown3.mp4 b/val/Brown/Brown3.mp4 similarity index 100% rename from val/Colours/Brown/Brown3.mp4 rename to val/Brown/Brown3.mp4 diff --git a/val/Colours/Brown/Brown4.mp4 b/val/Brown/Brown4.mp4 similarity index 100% rename from val/Colours/Brown/Brown4.mp4 rename to val/Brown/Brown4.mp4 diff --git a/val/Colours/Green/.DS_Store b/val/Colour/.DS_Store similarity index 100% rename from val/Colours/Green/.DS_Store rename to val/Colour/.DS_Store diff --git a/val/Colours/Colour/ColourVID.mp4 b/val/Colour/ColourVID.mp4 similarity index 100% rename from val/Colours/Colour/ColourVID.mp4 rename to val/Colour/ColourVID.mp4 diff --git a/val/Colours/.DS_Store b/val/Colours/.DS_Store deleted file mode 100644 index 81373ea0c1d51db413855108042a2d200cf1971c..0000000000000000000000000000000000000000 Binary files a/val/Colours/.DS_Store and /dev/null differ diff --git a/val/DaysOfTheWeek/.DS_Store b/val/DaysOfTheWeek/.DS_Store deleted file mode 100644 index a3c853aed317db72175564f92239a3e5abefcb44..0000000000000000000000000000000000000000 Binary files a/val/DaysOfTheWeek/.DS_Store and /dev/null differ diff --git a/val/Emotions/.DS_Store b/val/Emotions/.DS_Store deleted file mode 100644 index 95df4340b80098e777ceb753d2c25a3a650c3bc2..0000000000000000000000000000000000000000 Binary files a/val/Emotions/.DS_Store and /dev/null differ diff --git a/val/Emotions/Excited/Excited.mp4 b/val/Excited/Excited.mp4 similarity index 100% rename from val/Emotions/Excited/Excited.mp4 rename to val/Excited/Excited.mp4 diff --git a/val/Emotions/Feelings/Feelings.mp4 b/val/Feelings/Feelings.mp4 similarity index 100% rename from val/Emotions/Feelings/Feelings.mp4 rename to val/Feelings/Feelings.mp4 diff --git a/val/Colours/Grey/.DS_Store b/val/Friday/.DS_Store similarity index 100% rename from val/Colours/Grey/.DS_Store rename to val/Friday/.DS_Store diff --git a/val/DaysOfTheWeek/Friday/Friday.mp4 b/val/Friday/Friday.mp4 similarity index 100% rename from val/DaysOfTheWeek/Friday/Friday.mp4 rename to val/Friday/Friday.mp4 diff --git a/val/Colours/Pink/.DS_Store b/val/Frightened/.DS_Store similarity index 100% rename from val/Colours/Pink/.DS_Store rename to val/Frightened/.DS_Store diff --git a/val/Emotions/Frightened/Frightened2.mp4 b/val/Frightened/Frightened2.mp4 similarity index 100% rename from val/Emotions/Frightened/Frightened2.mp4 rename to val/Frightened/Frightened2.mp4 diff --git a/val/Colours/Purple/.DS_Store b/val/Gold/.DS_Store similarity index 100% rename from val/Colours/Purple/.DS_Store rename to val/Gold/.DS_Store diff --git a/val/Colours/Gold/Gold.mp4 b/val/Gold/Gold.mp4 similarity index 100% rename from val/Colours/Gold/Gold.mp4 rename to val/Gold/Gold.mp4 diff --git a/val/Colours/Silver/.DS_Store b/val/Green/.DS_Store similarity index 100% rename from val/Colours/Silver/.DS_Store rename to val/Green/.DS_Store diff --git a/val/Colours/Green/GreenVID.mp4 b/val/Green/GreenVID.mp4 similarity index 100% rename from val/Colours/Green/GreenVID.mp4 rename to val/Green/GreenVID.mp4 diff --git a/val/Colours/White/.DS_Store b/val/Grey/.DS_Store similarity index 100% rename from val/Colours/White/.DS_Store rename to val/Grey/.DS_Store diff --git a/val/Colours/Grey/Grey2.mp4 b/val/Grey/Grey2.mp4 similarity index 100% rename from val/Colours/Grey/Grey2.mp4 rename to val/Grey/Grey2.mp4 diff --git a/val/Colours/Yellow/.DS_Store b/val/Happy/.DS_Store similarity index 100% rename from val/Colours/Yellow/.DS_Store rename to val/Happy/.DS_Store diff --git a/val/Emotions/Happy/Happy4.mp4 b/val/Happy/Happy4.mp4 similarity index 100% rename from val/Emotions/Happy/Happy4.mp4 rename to val/Happy/Happy4.mp4 diff --git a/val/DaysOfTheWeek/Friday/.DS_Store b/val/ILL/.DS_Store similarity index 100% rename from val/DaysOfTheWeek/Friday/.DS_Store rename to val/ILL/.DS_Store diff --git a/val/Emotions/ILL/ILL2.mp4 b/val/ILL/ILL2.mp4 similarity index 100% rename from val/Emotions/ILL/ILL2.mp4 rename to val/ILL/ILL2.mp4 diff --git a/val/Colours/Indigo/indigo.mp4 b/val/Indigo/indigo.mp4 similarity index 100% rename from val/Colours/Indigo/indigo.mp4 rename to val/Indigo/indigo.mp4 diff --git a/val/DaysOfTheWeek/Monday/.DS_Store b/val/Monday/.DS_Store similarity index 100% rename from val/DaysOfTheWeek/Monday/.DS_Store rename to val/Monday/.DS_Store diff --git a/val/DaysOfTheWeek/Monday/Monday.mp4 b/val/Monday/Monday.mp4 similarity index 100% rename from val/DaysOfTheWeek/Monday/Monday.mp4 rename to val/Monday/Monday.mp4 diff --git a/val/Emotions/Mood/Mood.mp4 b/val/Mood/Mood.mp4 similarity index 100% rename from val/Emotions/Mood/Mood.mp4 rename to val/Mood/Mood.mp4 diff --git a/val/DaysOfTheWeek/Saturday/.DS_Store b/val/Nervous/.DS_Store similarity index 100% rename from val/DaysOfTheWeek/Saturday/.DS_Store rename to val/Nervous/.DS_Store diff --git a/val/Emotions/Nervous/Nervous2.mp4 b/val/Nervous/Nervous2.mp4 similarity index 100% rename from val/Emotions/Nervous/Nervous2.mp4 rename to val/Nervous/Nervous2.mp4 diff --git a/val/Colours/Orange/Orange.mp4 b/val/Orange/Orange.mp4 similarity index 100% rename from val/Colours/Orange/Orange.mp4 rename to val/Orange/Orange.mp4 diff --git a/val/DaysOfTheWeek/Sunday/.DS_Store b/val/Pink/.DS_Store similarity index 100% rename from val/DaysOfTheWeek/Sunday/.DS_Store rename to val/Pink/.DS_Store diff --git a/val/Colours/Pink/Pink3.mp4 b/val/Pink/Pink3.mp4 similarity index 100% rename from val/Colours/Pink/Pink3.mp4 rename to val/Pink/Pink3.mp4 diff --git a/val/DaysOfTheWeek/Thursday/.DS_Store b/val/Purple/.DS_Store similarity index 100% rename from val/DaysOfTheWeek/Thursday/.DS_Store rename to val/Purple/.DS_Store diff --git a/val/Colours/Purple/Purple3.mp4 b/val/Purple/Purple3.mp4 similarity index 100% rename from val/Colours/Purple/Purple3.mp4 rename to val/Purple/Purple3.mp4 diff --git a/val/Colours/Red/Red.mp4 b/val/Red/Red.mp4 similarity index 100% rename from val/Colours/Red/Red.mp4 rename to val/Red/Red.mp4 diff --git a/val/DaysOfTheWeek/Tuesday/.DS_Store b/val/Sad/.DS_Store similarity index 100% rename from val/DaysOfTheWeek/Tuesday/.DS_Store rename to val/Sad/.DS_Store diff --git a/val/Emotions/Sad/Sad4.mp4 b/val/Sad/Sad4.mp4 similarity index 100% rename from val/Emotions/Sad/Sad4.mp4 rename to val/Sad/Sad4.mp4 diff --git a/val/DaysOfTheWeek/Wednesday/.DS_Store b/val/Saturday/.DS_Store similarity index 100% rename from val/DaysOfTheWeek/Wednesday/.DS_Store rename to val/Saturday/.DS_Store diff --git a/val/DaysOfTheWeek/Saturday/Saturday.mp4 b/val/Saturday/Saturday.mp4 similarity index 100% rename from val/DaysOfTheWeek/Saturday/Saturday.mp4 rename to val/Saturday/Saturday.mp4 diff --git a/val/Emotions/Angry/.DS_Store b/val/Silver/.DS_Store similarity index 100% rename from val/Emotions/Angry/.DS_Store rename to val/Silver/.DS_Store diff --git a/val/Colours/Silver/Silver.mp4 b/val/Silver/Silver.mp4 similarity index 100% rename from val/Colours/Silver/Silver.mp4 rename to val/Silver/Silver.mp4 diff --git a/val/Emotions/Stressed/Stressed.mp4 b/val/Stressed/Stressed.mp4 similarity index 100% rename from val/Emotions/Stressed/Stressed.mp4 rename to val/Stressed/Stressed.mp4 diff --git a/val/Emotions/Anxious/.DS_Store b/val/Sunday/.DS_Store similarity index 100% rename from val/Emotions/Anxious/.DS_Store rename to val/Sunday/.DS_Store diff --git a/val/DaysOfTheWeek/Sunday/SundayVID.mp4 b/val/Sunday/SundayVID.mp4 similarity index 100% rename from val/DaysOfTheWeek/Sunday/SundayVID.mp4 rename to val/Sunday/SundayVID.mp4 diff --git a/val/Emotions/Frightened/.DS_Store b/val/Thursday/.DS_Store similarity index 100% rename from val/Emotions/Frightened/.DS_Store rename to val/Thursday/.DS_Store diff --git a/val/DaysOfTheWeek/Thursday/Thursday.mp4 b/val/Thursday/Thursday.mp4 similarity index 100% rename from val/DaysOfTheWeek/Thursday/Thursday.mp4 rename to val/Thursday/Thursday.mp4 diff --git a/val/Emotions/Tired/Tired.mp4 b/val/Tired/Tired.mp4 similarity index 100% rename from val/Emotions/Tired/Tired.mp4 rename to val/Tired/Tired.mp4 diff --git a/val/Emotions/Happy/.DS_Store b/val/Tuesday/.DS_Store similarity index 100% rename from val/Emotions/Happy/.DS_Store rename to val/Tuesday/.DS_Store diff --git a/val/DaysOfTheWeek/Tuesday/Tuesday.mp4 b/val/Tuesday/Tuesday.mp4 similarity index 100% rename from val/DaysOfTheWeek/Tuesday/Tuesday.mp4 rename to val/Tuesday/Tuesday.mp4 diff --git a/val/Emotions/Upset/Upset.mp4 b/val/Upset/Upset.mp4 similarity index 100% rename from val/Emotions/Upset/Upset.mp4 rename to val/Upset/Upset.mp4 diff --git a/val/Colours/Violet/Violet.mp4 b/val/Violet/Violet.mp4 similarity index 100% rename from val/Colours/Violet/Violet.mp4 rename to val/Violet/Violet.mp4 diff --git a/val/Emotions/ILL/.DS_Store b/val/Wednesday/.DS_Store similarity index 100% rename from val/Emotions/ILL/.DS_Store rename to val/Wednesday/.DS_Store diff --git a/val/DaysOfTheWeek/Wednesday/Wednesday.mp4 b/val/Wednesday/Wednesday.mp4 similarity index 100% rename from val/DaysOfTheWeek/Wednesday/Wednesday.mp4 rename to val/Wednesday/Wednesday.mp4 diff --git a/val/Emotions/Nervous/.DS_Store b/val/White/.DS_Store similarity index 100% rename from val/Emotions/Nervous/.DS_Store rename to val/White/.DS_Store diff --git a/val/Colours/White/White3.mp4 b/val/White/White3.mp4 similarity index 100% rename from val/Colours/White/White3.mp4 rename to val/White/White3.mp4 diff --git a/val/Emotions/Sad/.DS_Store b/val/Worried/.DS_Store similarity index 100% rename from val/Emotions/Sad/.DS_Store rename to val/Worried/.DS_Store diff --git a/val/Emotions/Worried/Worried3.mp4 b/val/Worried/Worried3.mp4 similarity index 100% rename from val/Emotions/Worried/Worried3.mp4 rename to val/Worried/Worried3.mp4 diff --git a/val/Emotions/Worried/.DS_Store b/val/Yellow/.DS_Store similarity index 100% rename from val/Emotions/Worried/.DS_Store rename to val/Yellow/.DS_Store diff --git a/val/Colours/Yellow/YellowVID.mp4 b/val/Yellow/YellowVID.mp4 similarity index 100% rename from val/Colours/Yellow/YellowVID.mp4 rename to val/Yellow/YellowVID.mp4