Skip to content
Snippets Groups Projects
Commit b5be7701 authored by Picon Ruiz, Artzai's avatar Picon Ruiz, Artzai
Browse files

support to run in collab

parent 57fe28e3
No related branches found
No related tags found
No related merge requests found
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
import set_python_path # import set_python_path
from tensorflow_core.python.keras.engine.input_layer import Input from tensorflow_core.python.keras.engine.input_layer import Input
from tensorflow_core.python.keras.layers.core import Dense, Dropout from tensorflow_core.python.keras.layers.core import Dense, Dropout
from tensorflow_core.python.keras.models import Sequential, Model from tensorflow_core.python.keras.models import Sequential, Model
......
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
import os import os
import set_python_path # import set_python_path
from tensorflow_core.python.keras.datasets import cifar10 from tensorflow_core.python.keras.datasets import cifar10
from tensorflow_core.python.keras.engine.input_layer import Input from tensorflow_core.python.keras.engine.input_layer import Input
from tensorflow_core.python.keras.layers.convolutional import Conv2D from tensorflow_core.python.keras.layers.convolutional import Conv2D
......
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
import set_python_path # import set_python_path
from tensorflow_core.python.keras.layers.merge import Concatenate from tensorflow_core.python.keras.layers.merge import Concatenate
from house_prices_estimation_example_data import generate_simple_regression_model from house_prices_estimation_example_data import generate_simple_regression_model
from house_prices_estimation_example_image import generate_simple_cnn_regression_model from house_prices_estimation_example_image import generate_simple_cnn_regression_model
......
# -*- coding: utf-8 -*-
__author__ = 106360
import sys
import os
curr_path = os.path.dirname(os.path.realpath(__file__))
sys.path.append(curr_path)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment