Rosefun
Rosefun
https://github.com/for-research/cnn-text-classification-tf/blob/18762b459e21d9c70e5c242f8d43fc4e6db37a0d/text_cnn.py#L57 ''' self.h_pool = tf.concat(pooled_outputs, 3) ''' Why it concats in `axis = 3`? Actually, I think it should concat in `axis = 1` , which is the direction of...
``` Traceback (most recent call last): File "E:\Anaconda3\lib\site-packages\aiohttp\web_protocol.py", line 410, in st art resp = yield from self._request_handler(request) File "E:\Anaconda3\lib\site-packages\aiohttp\web.py", line 325, in _handle resp = yield from handler(request) File...
The problem is as follow: ``` pymysql.err.ProgrammingError: (1146, "Table 'awesome.blogs' doesn't exist") ``` I wonder when can I find the contest of the awesome.blogs? Hopefully for help and best wishes....
Now dataset **X**={**x1,x2,x3...,xn**},`shape=[n,m]`, **x1,x2,...,xn** are samples of **X**. And label data `y.shape=[n,k]` If I use a time window with length of 2,then after reshape: `X= tf.reshape(X,[int(n/2), 2, m])` `X.shape=[n/2,m]` But...
I don't find the initialization of `base_lrs`? Does it initialize with 0?
**思路和建议** 有些歌本地有了,只想下载个匹配的歌词,而不是和歌曲一起下载,这个可以吗 **参考代码** 提供代码参考
**思路和建议** 有时需要批量下载,想用python代码指定下载内容,能否支持用python调用的接口。 **参考代码** 提供代码参考
**问题描述(Question description)** ``` Complete output from command python setup.py egg_info: Testing support for clang Traceback (most recent call last): File "", line 1, in File "C:\Users\Rosefun\AppData\Local\Temp\pip-install-lx38hx1j\pycryptodome\setup.py", line 468, in set_compiler_options(package_root,...
The input_data.shape is (35200, 22). The problem is as follows: ``` train_perplexity = self._run_train_step(train_set, 'train') File "F:\DBN-rbm-classification\yadlt\models\recurrent\lstm.py", line 92, in _run_train_step data, self.batch_size, self.num_steps)): File "F:\DBN-rbm-classification\yadlt\utils\utilities.py", line 77, in seq_data_iterator...
``` File "D:\DeepLearningInstall\anaconda3.5\lib\site-packages\yadlt\models\boltzmann\dbn.py", line 147, in _train_model self.tf_session.run( AttributeError: 'NoneType' object has no attribute 'run' ``` The lines in dbn.py is shown as follow: ``` for batch in batches: x_batch,...