qixian

Results 19 issues of qixian

0it [00:00, ?it/s]Traceback (most recent call last): File "/home/xiaopang/Downloads/pytorch-book-master/chapter7-GAN生成动漫头像/main.py", line 195, in train() File "/home/xiaopang/Downloads/pytorch-book-master/chapter7-GAN生成动漫头像/main.py", line 104, in train for ii, (img, _) in tqdm.tqdm(enumerate(dataloader)): File "/home/xiaopang/anaconda3/envs/pytorch/lib/python3.6/site-packages/tqdm/_tqdm.py", line 1022, in...

在[算法组建文档](https://github.com/FederatedAI/FATE/blob/master/doc/federatedml_component/README.zh.md)中看到有提供隐私并集计算,但没有找到相关具体实现,请问一下具体实现在哪里? ![image](https://user-images.githubusercontent.com/39814487/171345420-ac1fd3c2-10a4-4e73-8c43-d5ea0df50f43.png)

原文标题: Machine Learning in Rust, Linear Regression 原文链接: https://medium.com/swlh/machine-learning-in-rust-linear-regression-edef3fb65f93 译文链接: 暂无 **声明模版** ``` > *本文选自 [Rust 翻译计划](https://rustt.org),由 [RustCn](https://hirust.cn) 荣誉推出** > > **翻译:_该部分由 qxzhou1010 替换填写_** > 选题:[qxzhou1010](https://github.com/qxzhou1010) > > 原文链接: https://medium.com/swlh/machine-learning-in-rust-linear-regression-edef3fb65f93...

待认领
选题

I do all the steps by README, but the error still occurs. After I do the `make`, the following errors occurs. ``` /bin/sh: pkg-config: command not found /bin/sh: pkg-config: command...

研究了很久还是没能把代码正确的运行,提示没有加载数据,我下载了lfw数据集,放在了项目根目录下的./databases/文件夹下,但是运行data_process.py还是报错,折腾了很久还是没能跑起来,请教一下该怎么才能最快的把代码运行起来,我只想读取预训练好的模型,然后输入图像,做前向的特征提取就可以了。

what's the difference between sift_1b.cpp and sift_test.cpp?If I want to test with my own data set, which one should I imitate?

Hi, I want to know how many distance calculations are needed to complete a query with fixed parameters. How can I get this value? Do I need to change the...

Hi, I am reading your article : [Hacking private keys from unsafe primes using the Pohlig-Hellman discrete logarithm](https://matthewvaneerde.wordpress.com/2021/01/04/hacking-private-keys-from-unsafe-primes-using-the-pohlig-hellman-discrete-logarithm/). **I found that the final solution for `6^a = 2 % p`...

I want to find a point with order 8 in Curve25519 or Ed25519. However, I first use **Sage** to find some points, which order are 8. Then, I using `curve25519_dalek::montgomery::MontgomeryPoint`...

``` private float evaluate(float[][] embeddings) { float[] embeddings1 = embeddings[0]; float[] embeddings2 = embeddings[1]; float dist = 0; for (int i = 0; i < 192; i++) { dist +=...