问题标签 [svc]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
ajax - 为什么即使实例不为空,WCF AJAX 方法的参数也不会填充值?
我使用 jQuery.ajax 向我的服务器发送了一个 AJAX 请求,并且“数据”字段填充了与我的 ClientMessage 类型相对应的 JSON 字符串,但数据没有进入方法的主要参数。当方法在我调试时运行时,在 ProcessRequest 的数据参数中,ClientMessage 的所有成员都为空。
ClientMessage 类的成员是简单的自动实现的 get/set 字符串属性,使用 DataMember(Name="membername") 属性以及类本身的 DataContract 属性进行修饰。在客户端,Chrome 的开发人员工具显示 AJAX 请求的数据对象是有效的 JSON,我可以在请求查看器中展开它以验证正确的对象和正在发送的成员。
我只是无法弄清楚为什么 ClientMessage 数据实例的所有成员都带有空值(顺便说一句,它们都是简单的字符串)。
python-2.7 - ValueError: Array contains NaN or infinity in _assert_all_finite during LinearSVC
I was trying to classify the wine data set here -http://archive.ics.uci.edu/ml/datasets/Wine+Quality using logistic regression (with method ='bfgs' and l1 norm) and caught a singular value matrix error(raise LinAlgError('Singular matrix'), in-spite of full rank [which I tested using np.linalg.matrix_rank(data[train_cols].values) ] .
This is how I came to the conclusion that some features might be linear combinations of others. Towards this, I experimented of using Grid search/LinearSVC - and I get the error below, along with my code & data-set .
I can see that only 6/7 features are actually "independent" - which I interpret when comparing the rows of x_train_new[0] and x_train (so I can get which columns are redundant)
The strange thing is that when I run clf.predict(x_train) I still see some NaN's - What am I doing wrong ?After all the model was trained using this, and this should NOT occur , right ?
According to this thread, I also checked that there are no null's in my csv file (though I relabeled the "quality' to 5 and 7 labels only (from range(3,10) How to fix "NaN or infinity" issue for sparse matrix in python?
Also - here's the data type of x_test & y_test/train...
and Finally..
Tip : Please also mention if my thought process on using LinearSVC is correct, given my use case, or should I use Grid-search ?
Disclaimer : Parts of this code have been built on suggestions in similar contexts from StackOverflow and miscellaneous sources - My real use case is just trying to access if this method is a good fit for my scenario. That's all.
python - 提高单个样本的 SVC 预测性能
我有用于文本分类的大型 SVC 模型(~50Mb cPickles),我正在尝试在生产环境中使用它们的各种方法。对一批文档进行分类非常有效(使用predict
和 ,每分钟大约 1k 个文档predict_proba
)。但是,对单个文档的预测是另一回事,正如对此问题的评论中所解释的那样:
您是否在批量进行预测?不幸的是,SVC.predict 方法会产生大量开销,因为它必须重建与训练算法产生的相似的 LibSVM 数据结构,浅拷贝支持向量,并将测试样本转换为 LibSVM 格式可能与 NumPy/SciPy 格式不同。因此,对单个样本的预测必然会很慢。– 拉尔斯曼斯
我已经将 SVC 模型作为 Flask Web 应用程序提供服务,因此一部分开销已经消失(unpickling),但单个文档的预测时间仍然偏高(0.25 秒)。我查看了predict
方法中的代码,但无法弄清楚是否有办法“预热”它们,在服务器启动时提前重建 LibSVM 数据结构......有什么想法吗?
android - 从 Android 上的 JQuery 使用 Web 上托管的 WCF
我已经成功地在我的托管帐户@DiscountASP.net 上托管了 WCF .svc 服务及其 .NET 应用程序。
该服务现在已托管,我可以从托管在同一环境中的同一主机上的另一个 aspx 访问它。在那个 aspx 中,我使用 Javascript 代码来访问它并且它工作正常。
现在,我在这里想要实现的是,通过驻留在我的一个 Android 应用程序 html 页面中的 .Ajax 函数从网络上的其他地方访问相同的服务。
我相信这是可能的,但我无法完成该代码。
下面是我的 CostService.svc 代码
下面是从javascript调用它的代码
我需要有关 JavaScript 的帮助,因为它似乎没有与服务通信。谢谢
c# - 当 includeExceptionDetailInFaults="false" 时返回自定义错误消息
我将 .net svc 服务与 .Net 框架 4.5 一起使用,出于生产目的,我必须在我的文件中设置includeExceptionDetailInFaults
为。false
web.config
但是有时我需要让我的服务返回自定义错误。
我尝试使用该System.ServiceModel.Dispatcher.IErrorHandler.ProvideFault
方法创建一个FaultException
没有结果的自定义,返回的错误消息始终是通用消息。
有可能吗?如果是怎么办??
谢谢
c# - 如果 DateTime 为 NULL,则无法获得 JSON 响应
我有 sql 数据库。在 sql 中,列类型是 datetime 可为空的,但在 c# 中,实体仅定义为 datetime。
如果 dateTime 为空,则 xml 格式的响应没有问题,但 json 格式的响应有问题。如果我在 json 格式有效时更改datetimes
为datetime?
响应,但它会以不好的方式影响其他实体。
我怎么解决这个问题?谢谢你。
wcf - 缩短发布的 svc 文件名
我有一个 wcf 服务,这里的一点是,当我发布它们时,svc 文件名开始与服务行为类和命名空间相同,所以如果类是
BBServices.BBBO.Caching.B
BCacheClientService,则 svc 名称是 BBServices.BBBO.Caching。 BBCacheClientService.svc 我如何将 svc 文件的名称缩短为 BBCacheClientService.svc。
c# - 是否可以在 Web 服务中使用对象?
在此处输入代码我想使用 .asvc Web 服务发送动态类型。我有一类有一些属性。我想发送任何类型的对象,甚至是这个列表中的类。并在客户端回退。
我的意思是我总是想使用SysResult
类型。但有时与List<Apple>
,有时List<Orrange>
像下面这样
我尝试使用object[]
, Array
,List<object>
等dynamic
。但我收到了这个错误。“底层连接已关闭:连接意外关闭。”
顺便为所有非特定对象类型服务引用类表示object[]
类型。
有没有办法发送动态类型?还是我试图做一些完全错误的事情?
提前致谢。
wcf - BIztalk - 在 API 中保存会话密钥
我有一个具有多种功能的端口类型的 API。从这些功能中,我需要日志记录操作和同步操作。问题是 BizTalk 不会从日志记录操作中保存会话,因此不允许我执行同步操作。
有问题的 API 是我从 WCF 使用适配器生成的 SVC WS。
有谁知道如何实现同步操作以在日志记录操作的同一会话中工作。
ps
日志记录操作不返回会话密钥,它只返回状态代码