Last active
July 16, 2023 07:33
-
-
Save joe-oli/69a418216d36e9fe60556431d869a2c7 to your computer and use it in GitHub Desktop.
Data - 1) sample of words which are nouns; 2) sample of fruits. NOTE- this gist contains two files.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"name": "Apple", | |
"color": "Red", | |
"taste": "Sweet" | |
}, | |
{ | |
"name": "Banana", | |
"color": "Yellow", | |
"taste": "Sweet" | |
}, | |
{ | |
"name": "Orange", | |
"color": "Orange", | |
"taste": "Sweet/Sour" | |
}, | |
{ | |
"name": "Pineapple", | |
"color": "Yellow/Green", | |
"taste": "Sweet/Sour" | |
}, | |
{ | |
"name": "Watermelon", | |
"color": "Green/Pink", | |
"taste": "Sweet" | |
} | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"animals": ["cat", "dog", "horse", "cow", "sheep", "pig", "bird", "fish", "insect"], | |
"people": ["man", "woman", "child", "boy", "girl", "parent", "teacher", "doctor", "nurse"], | |
"places": ["house", "school", "hospital", "park", "city", "town", "country", "continent", "planet"], | |
"things": ["book", "pen", "paper", "pencil", "chair", "table", "computer", "phone", "television"], | |
"abstract_concepts": ["love", "hate", "peace", "war", "happiness", "sadness", "fear", "hope", "dreams"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment