This model using Retrieval Task in TensorFlow Recommendation System to recommend user mounts destination and leveraging some features from the user such as age, gender, and level.
- Tensorflow
- Tensorflow Recommenders
- Keras
- Numpy
- Pandas
- Download this repository as a zip
- Extract file .zip that you downloaded
- Upload file .ipynb and folder dataset to your drive
- Open file .ipynb you have been uploaded
- Open command prompt or git bash and Clone this repository
git clone https://github.com/C23-PR591/Machine-Learning.git
- Go to project folder
cd Machine-Learning
- Open jupyter notebook
jupyter notebook
- Adjust directory to read the dataset Example :
# from
df_mount = pd.read_csv('/content/drive/My Drive/dataset/datagunung_lvl.csv',delimiter=',')
# to this
df_mount = pd.read_csv('/dataset/datagunung_lvl.csv',delimiter=',')