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..ff5edcc --- /dev/null +++ b/CodeSamples/AI/AI_Models/Tensorflow/speechActivityClassifier/DataPreprocessing.py @@ -0,0 +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 new file mode 100644 index 0000000..3d9c836 --- /dev/null +++ b/CodeSamples/AI/AI_Models/Tensorflow/speechActivityClassifier/modelTraining.py @@ -0,0 +1,13 @@ +#We will definitely train our model here + +#from the library +import tensorflow + + +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 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