We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
When I run this file "cifar10_tutorial.py", I got this error:
TypeError Traceback (most recent call last) in () 62 cnnModule.fit(n_output_node=num_classes, input_shape=input_shape, 63 train_data=trainloader, ---> 64 test_data=testloader)
/usr/local/lib/python3.6/dist-packages/autokeras/net_module.py in fit(self, n_output_node, input_shape, train_data, test_data, time_limit) 61 self.searcher_args['verbose'] = self.verbose 62 pickle_to_file(self, os.path.join(self.path, 'module')) ---> 63 self.searcher = self.search_type(**self.searcher_args, skip_conn=self.skip_conn) 64 65 start_time = time.time()
TypeError: init() got an unexpected keyword argument 'skip_conn'
Anyone can help me?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
When I run this file "cifar10_tutorial.py", I got this error:
TypeError Traceback (most recent call last)
in ()
62 cnnModule.fit(n_output_node=num_classes, input_shape=input_shape,
63 train_data=trainloader,
---> 64 test_data=testloader)
/usr/local/lib/python3.6/dist-packages/autokeras/net_module.py in fit(self, n_output_node, input_shape, train_data, test_data, time_limit)
61 self.searcher_args['verbose'] = self.verbose
62 pickle_to_file(self, os.path.join(self.path, 'module'))
---> 63 self.searcher = self.search_type(**self.searcher_args, skip_conn=self.skip_conn)
64
65 start_time = time.time()
TypeError: init() got an unexpected keyword argument 'skip_conn'
Anyone can help me?
The text was updated successfully, but these errors were encountered: