Skip to content

Instantly share code, notes, and snippets.

View mma1979's full-sized avatar

Mohammed Abdelhay mma1979

View GitHub Profile
Visual Studio 2022
Enterprise :
VHF9H-NXBBB-638P6-6JHCY-88JWH
Professional:
TD244-P4NB7-YQ6XK-Y8MMM-YWV2J
SQL Server 2017
----------------
Enterprise Core - 6GPYM-VHN83-PHDM2-Q9T2R-KBV83
@mma1979
mma1979 / .NET6Migration.md
Created September 29, 2021 19:29 — forked from davidfowl/.NET6Migration.md
.NET 6 ASP.NET Core Migration
@mma1979
mma1979 / loadModel.py
Created November 28, 2018 15:36 — forked from vgpena/loadModel.py
Basic text classification with Keras and TensorFlow
import json
import numpy as np
import keras
import keras.preprocessing.text as kpt
from keras.preprocessing.text import Tokenizer
from keras.models import model_from_json
# we're still going to use a Tokenizer here, but we don't need to fit it
tokenizer = Tokenizer(num_words=3000)
# for human-friendly printing