-
The model in chapter 2 should be multilayer perceptron instead of logistic regression, since which can only be used in two classfication problem. How about changing the model to softmax which is avail…
xzhws updated
5 years ago
-
Both the MNIST [softmax regression model](https://malmaud.github.io/TensorFlow.jl/latest/tutorial.html#Building-a-softmax-regression-model-1) and the [multi-layer convolutional network](https://malmau…
-
Is this package able to fit [Multinomial Logistic Regression](https://en.wikipedia.org/wiki/Multinomial_logistic_regression) models or any other type of model with categorical/multiple discrete outcom…
-
I run the tutorial notebooks in a docker as proposed in the ReadMe. Everything works fine, except tutorial no 3.
when running Cell 4
```
# input images, shape (N, 784)
xs = tf.placeholder(tf.fl…
-
请问为什么文字识别这部分采用的SVM,基于手写体的识别,一般都是使用softmax(logistics regression)或者KNN,作者是测试过SVM识别准确度更高吗?
-
I am trying to run tflearn for simple mnist classification using MLP. I tried to other example and I am getting this error for almost all. I just started using TFlearn.
IndexError …
-
I use alexnet to train my own image classifier, the image structure is like this:
ROOT_FOLDER -> SUBFOLDER_0 (CLASS 0) -> CLASS0_IMG1.jpg
-> CLASS0_IMG2.jpg -> ...
-> SUBFOLDER_1 (CLA…
-
Thanks for your great work!
In order to do the final classification and regression, you propose a Centroid-Based method.
I think if it is possible, we first utilize the logarithmic map to map th…
-
# 逻辑回归 softmax 最大熵 广义线性模型
[自然语言处理基础-最大熵模型](https://ilewseu.github.io/2018/05/13/%E6%9C%80%E5%A4%A7%E7%86%B5%E6%A8%A1%E5%9E%8B/)
[第三部分 广义线性模型 (Generalized Linear Models)](https://kivy-cn.github.io/St…
-
I am trying to run tflearn.DNN(net) on net below. I am getting error "At least two variables have the same name: FullyConnected/W".
# Network building
net = tflearn.input_data([None, width, height…