摘要: 用Django shell: 1 python manage.py shell 1 python manage.py shell 1 python manage.py shell python manage.py shell 然后获取你的用户名,并且重设密码: 1 2 3 4 from django 阅读全文
posted @ 2017-08-13 18:23 xqnq2007 阅读(1425) 评论(0) 推荐(0) 编辑
摘要: 用ServerAlias <VirtualHost *:80>ServerAdmin i@kuigg.comDocumentRoot /www/kuigg.comServerName kuigg.comServerAlias www.kuigg.com abc.kuigg.com</VirtualH 阅读全文
posted @ 2017-08-13 12:12 xqnq2007 阅读(305) 评论(0) 推荐(0) 编辑
摘要: 编译旧的代码,会像下面这样提示出错: deconv_shape3 = tf.pack([shape[0], shape[1], shape[2], NUM_OF_CLASSESS]) AttributeError: 'module' object has no attribute 'pack' 因为 阅读全文
posted @ 2017-08-13 10:57 xqnq2007 阅读(3686) 评论(0) 推荐(0) 编辑
摘要: grid = tf.concat(0, [x_t_flat, y_t_flat, ones])#报错语句 grid = tf.concat( [x_t_flat, y_t_flat, ones],0) #楼主改后的代码 将数字放在后面,如果有三个参数 decoder_inputs = tf.conc 阅读全文
posted @ 2017-08-13 10:57 xqnq2007 阅读(1590) 评论(0) 推荐(0) 编辑