From dc4d0e3409584616d0ecae282808e601a316c009 Mon Sep 17 00:00:00 2001 From: Bernard Date: Sat, 15 Aug 2020 00:05:41 +0300 Subject: [PATCH 1/5] Artificial Inteligence on Facebook --- CodeSamples/AI/README.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 CodeSamples/AI/README.md diff --git a/CodeSamples/AI/README.md b/CodeSamples/AI/README.md new file mode 100644 index 0000000..40e87c6 --- /dev/null +++ b/CodeSamples/AI/README.md @@ -0,0 +1,3 @@ +
+

This is all about Artificial Inteligence Plaftorm, Just AI

+
\ No newline at end of file From 9623e4842b327814f5ccd1a09c73afcf68b9df15 Mon Sep 17 00:00:00 2001 From: Bernard Date: Sat, 15 Aug 2020 00:42:50 +0300 Subject: [PATCH 2/5] Speech classifier models #Tensorflow --- .../audioProcessingPreparation.py | 5 +++++ .../Tensorflow/speechActivityClassifier/modelTraining.py | 9 +++++++++ .../speechActivityClassifier/public/assets/README.md | 1 + .../speechActivityClassifier/public/models/ReadMe.md | 1 + 4 files changed, 16 insertions(+) create mode 100644 CodeSamples/AI/AI_Models/Tensorflow/speechActivityClassifier/audioProcessingPreparation.py create mode 100644 CodeSamples/AI/AI_Models/Tensorflow/speechActivityClassifier/modelTraining.py create mode 100644 CodeSamples/AI/AI_Models/Tensorflow/speechActivityClassifier/public/assets/README.md create mode 100644 CodeSamples/AI/AI_Models/Tensorflow/speechActivityClassifier/public/models/ReadMe.md diff --git a/CodeSamples/AI/AI_Models/Tensorflow/speechActivityClassifier/audioProcessingPreparation.py b/CodeSamples/AI/AI_Models/Tensorflow/speechActivityClassifier/audioProcessingPreparation.py new file mode 100644 index 0000000..546a08d --- /dev/null +++ b/CodeSamples/AI/AI_Models/Tensorflow/speechActivityClassifier/audioProcessingPreparation.py @@ -0,0 +1,5 @@ +#This is where we will have a our data preparation and processing +#get our data ready for training with our model + +class data_preprocessing: + \ No newline at end of file diff --git a/CodeSamples/AI/AI_Models/Tensorflow/speechActivityClassifier/modelTraining.py b/CodeSamples/AI/AI_Models/Tensorflow/speechActivityClassifier/modelTraining.py new file mode 100644 index 0000000..455dc02 --- /dev/null +++ b/CodeSamples/AI/AI_Models/Tensorflow/speechActivityClassifier/modelTraining.py @@ -0,0 +1,9 @@ +#We will definitely train our model here + +class model: + + + + def __init__(self): + #code + diff --git a/CodeSamples/AI/AI_Models/Tensorflow/speechActivityClassifier/public/assets/README.md b/CodeSamples/AI/AI_Models/Tensorflow/speechActivityClassifier/public/assets/README.md new file mode 100644 index 0000000..e1a8b27 --- /dev/null +++ b/CodeSamples/AI/AI_Models/Tensorflow/speechActivityClassifier/public/assets/README.md @@ -0,0 +1 @@ +

This is the place where our data will be kept for processing

\ No newline at end of file diff --git a/CodeSamples/AI/AI_Models/Tensorflow/speechActivityClassifier/public/models/ReadMe.md b/CodeSamples/AI/AI_Models/Tensorflow/speechActivityClassifier/public/models/ReadMe.md new file mode 100644 index 0000000..c5a6bdf --- /dev/null +++ b/CodeSamples/AI/AI_Models/Tensorflow/speechActivityClassifier/public/models/ReadMe.md @@ -0,0 +1 @@ +

A folder where our trained model will be saved

\ No newline at end of file From 80962a61332b0942998effe9e2eb2525fbf2d7ee Mon Sep 17 00:00:00 2001 From: Bernard Date: Sat, 15 Aug 2020 01:01:27 +0300 Subject: [PATCH 3/5] Renamed the file names --- .../Tensorflow/speechActivityClassifier/DataPreprocessing.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 CodeSamples/AI/AI_Models/Tensorflow/speechActivityClassifier/DataPreprocessing.py diff --git a/CodeSamples/AI/AI_Models/Tensorflow/speechActivityClassifier/DataPreprocessing.py b/CodeSamples/AI/AI_Models/Tensorflow/speechActivityClassifier/DataPreprocessing.py new file mode 100644 index 0000000..546a08d --- /dev/null +++ b/CodeSamples/AI/AI_Models/Tensorflow/speechActivityClassifier/DataPreprocessing.py @@ -0,0 +1,5 @@ +#This is where we will have a our data preparation and processing +#get our data ready for training with our model + +class data_preprocessing: + \ No newline at end of file From 4665ca43ef1833c8a0cc49711390d30048180d17 Mon Sep 17 00:00:00 2001 From: Bernard Date: Sat, 15 Aug 2020 01:03:32 +0300 Subject: [PATCH 4/5] Renamed the file to DataPreprocessing.py --- .../speechActivityClassifier/audioProcessingPreparation.py | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 CodeSamples/AI/AI_Models/Tensorflow/speechActivityClassifier/audioProcessingPreparation.py diff --git a/CodeSamples/AI/AI_Models/Tensorflow/speechActivityClassifier/audioProcessingPreparation.py b/CodeSamples/AI/AI_Models/Tensorflow/speechActivityClassifier/audioProcessingPreparation.py deleted file mode 100644 index 546a08d..0000000 --- a/CodeSamples/AI/AI_Models/Tensorflow/speechActivityClassifier/audioProcessingPreparation.py +++ /dev/null @@ -1,5 +0,0 @@ -#This is where we will have a our data preparation and processing -#get our data ready for training with our model - -class data_preprocessing: - \ No newline at end of file From 4b0ba8f6a243d96d59011483da54da5a36b57ba9 Mon Sep 17 00:00:00 2001 From: Bernard Date: Sat, 15 Aug 2020 01:13:58 +0300 Subject: [PATCH 5/5] setting up the tensorflow library --- .../Tensorflow/speechActivityClassifier/DataPreprocessing.py | 4 ++++ .../Tensorflow/speechActivityClassifier/modelTraining.py | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/CodeSamples/AI/AI_Models/Tensorflow/speechActivityClassifier/DataPreprocessing.py b/CodeSamples/AI/AI_Models/Tensorflow/speechActivityClassifier/DataPreprocessing.py index 546a08d..ff5edcc 100644 --- a/CodeSamples/AI/AI_Models/Tensorflow/speechActivityClassifier/DataPreprocessing.py +++ b/CodeSamples/AI/AI_Models/Tensorflow/speechActivityClassifier/DataPreprocessing.py @@ -1,5 +1,9 @@ #This is where we will have a our data preparation and processing #get our data ready for training with our model +# from the tensorflow library +import tensorflow + + class data_preprocessing: \ No newline at end of file diff --git a/CodeSamples/AI/AI_Models/Tensorflow/speechActivityClassifier/modelTraining.py b/CodeSamples/AI/AI_Models/Tensorflow/speechActivityClassifier/modelTraining.py index 455dc02..3d9c836 100644 --- a/CodeSamples/AI/AI_Models/Tensorflow/speechActivityClassifier/modelTraining.py +++ b/CodeSamples/AI/AI_Models/Tensorflow/speechActivityClassifier/modelTraining.py @@ -1,5 +1,9 @@ #We will definitely train our model here +#from the library +import tensorflow + + class model: