You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey, guys! I'm having the same problem described in other issues, but I am training a 2D CNN. I'm running my code on a Jupyter Notebook. Is that a problem?
Here's the error:
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-4-79a7f74171c2> in <module>
10 max_evals=5,
11 trials=Trials(),
---> 12 notebook_name='teste_hyperas')
13 x_train, x_train, x_val, y_val = data()
14 print("Evalutation of best performing model:")
~\AppData\Local\Continuum\anaconda3\lib\site-packages\hyperas\optim.py in minimize(model, data, algo, max_evals, trials, functions, rseed, notebook_name, verbose, eval_space, return_space, keep_temp)
67 notebook_name=notebook_name,
68 verbose=verbose,
---> 69 keep_temp=keep_temp)
70
71 best_model = None
~\AppData\Local\Continuum\anaconda3\lib\site-packages\hyperas\optim.py in base_minimizer(model, data, functions, algo, max_evals, trials, rseed, full_model_string, notebook_name, verbose, stack, keep_temp)
96 model_str = full_model_string
97 else:
---> 98 model_str = get_hyperopt_model_string(model, data, functions, notebook_name, verbose, stack)
99 temp_file = './temp_model.py'
100 write_temp_files(model_str, temp_file)
~\AppData\Local\Continuum\anaconda3\lib\site-packages\hyperas\optim.py in get_hyperopt_model_string(model, data, functions, notebook_name, verbose, stack)
196
197 functions_string = retrieve_function_string(functions, verbose)
--> 198 data_string = retrieve_data_string(data, verbose)
199 model = hyperopt_keras_model(model_string, parts, aug_parts, verbose)
200
~\AppData\Local\Continuum\anaconda3\lib\site-packages\hyperas\optim.py in retrieve_data_string(data, verbose)
217
218 def retrieve_data_string(data, verbose=True):
--> 219 data_string = inspect.getsource(data)
220 first_line = data_string.split("\n")[0]
221 indent_length = len(determine_indent(data_string))
~\AppData\Local\Continuum\anaconda3\lib\inspect.py in getsource(object)
971 or code object. The source code is returned as a single string. An
972 OSError is raised if the source code cannot be retrieved."""
--> 973 lines, lnum = getsourcelines(object)
974 return ''.join(lines)
975
~\AppData\Local\Continuum\anaconda3\lib\inspect.py in getsourcelines(object)
953 raised if the source code cannot be retrieved."""
954 object = unwrap(object)
--> 955 lines, lnum = findsource(object)
956
957 if istraceback(object):
~\AppData\Local\Continuum\anaconda3\lib\inspect.py in findsource(object)
766 is raised if the source code cannot be retrieved."""
767
--> 768 file = getsourcefile(object)
769 if file:
770 # Invalidate cache if needed.
~\AppData\Local\Continuum\anaconda3\lib\inspect.py in getsourcefile(object)
682 Return None if no way can be identified to get the source.
683 """
--> 684 filename = getfile(object)
685 all_bytecode_suffixes = importlib.machinery.DEBUG_BYTECODE_SUFFIXES[:]
686 all_bytecode_suffixes += importlib.machinery.OPTIMIZED_BYTECODE_SUFFIXES[:]
~\AppData\Local\Continuum\anaconda3\lib\inspect.py in getfile(object)
664 raise TypeError('module, class, method, function, traceback, frame, or '
665 'code object was expected, got {}'.format(
--> 666 type(object).__name__))
667
668 def getmodulename(path):
TypeError: module, class, method, function, traceback, frame, or code object was expected, got tuple
Hi, can you try running in a script?
I tried running in a notebook before, it gave me some errors. Just add a line to save the best model, and reload to test your data.
Hope that helps!
Hi, can you try running in a script?
I tried running in a notebook before, it gave me some errors. Just add a line to save the best model, and reload to test your data.
Hope that helps!
Hi, @ncuxomun! Tks for the tip, but it also didn't work... I just updated the issue to include my entire code. I wonder if the problem is the input data shape, which is a 4D tensor (because i'm training a 2dConv)...
Hey, guys! I'm having the same problem described in other issues, but I am training a 2D CNN. I'm running my code on a Jupyter Notebook. Is that a problem?
Here's the error:
And my code is:
The text was updated successfully, but these errors were encountered: