ios上架审核不通过原因之2.3.3和5.1.1

ios上架被驳回还是有点烦的,最近四顾茅庐一直被驳回,为了让兄弟姐妹们别浪费时间在发布上面,小弟记录一下我不通过的原因,有同样问题的友友们希望看到这篇文章可以帮助到你。

我这边遇到的是两个issue原因:

2.3.3

Guideline 2.3.3 - Performance - Accurate Metadata

2.3.3 Screenshots should show the app in use, and not merely the title art, login page, or splash screen. They may also include text and image overlays (e.g. to demonstrate input mechanisms, such as an animated touch point or Apple Pencil) and show extended functionality on device, such as Touch Bar.

Issue Description

Some or all of the provided screenshots do not sufficiently show the app in use. Screenshots should highlight the app’s core concept to help users understand the app’s functionality and value.

Next Steps

The iPad Pro (2nd Gen) and 13-inch iPad screenshots show an iPhone image that has been modified or stretched to appear to be an iPad image. Upload new screenshots that accurately reflect the app in use on each of the supported devices.

解决方法

上面意思就是我的屏幕截屏有问题,被拉伸了,需要重新上传。
这里我一开始就是iphone手机里去截屏,然后利用画图工具把图片变成指定像素尺寸,但在ipad的时候图片就会变形,所以不通过。

我是uniapp项目
第一步:项目运行到谷歌浏览器,这里根据苹果所要求的机型切换,没有的话自己新建。
在这里插入图片描述
第二步:截图页面区域,之后window + R => 输入mspaint打开画图工具,粘贴图片,修改图片的像素,注意(要保持纵横比,不然图片就会变形在这里插入图片描述
按照这个方式处理所有照片,再上传就可以啦!

5.1.1

Guideline 5.1.1 - Legal - Privacy - Data Collection and Storage

5.1.1(ii) Permission Apps that collect user or usage data must secure user consent for the collection, even if such data is considered to be anonymous at the time of or immediately following collection. Paid functionality must not be dependent on or require a user to grant access to this data. Apps must also provide the customer with an easily accessible and understandable way to withdraw consent. Ensure your purpose strings clearly and completely describe your use of the data. Apps that collect data for a legitimate interest without consent by relying on the terms of the European Union’s GeneralData Protection Regulation (“GDPR”) or similar statute must comply with all terms of that law.

Issue Description

One or more purpose strings in the app do not sufficiently explain the use of protected resources. Purpose strings must clearly and completely describe the app’s use of data and, in most cases, provide an example of how the data will be used.

Next Steps

Update the camera and location purpose string to explain how the app will use the requested information and provide an example of how the data will be used. See the attached screenshot.

解决方法

上面说的就是(访问相册,拍照,访问位置,上传文件)授权提示需要阐述你的使用原因,要写详细点,我是这么改的,后面就可以了。
在这里插入图片描述
之前其实都没处理这些问题但可以审核通过,可能突然换了个新入职的人审核,刚上任的牛马比较积极,就是卡你,所以耐心点吧,都是小问题。

### 使用 AutoGPTQ 库量化 Transformer 模型 为了使用 `AutoGPTQ` 对 Transformer 模型进行量化,可以遵循如下方法: 安装所需的依赖包是必要的操作。通过 pip 安装 `auto-gptq` 可以获取最新版本的库。 ```bash pip install auto-gptq ``` 加载预训练模型并应用 GPTQ (General-Purpose Tensor Quantization) 技术来减少模型大小加速推理过程是一个常见的流程。下面展示了如何利用 `AutoGPTQForCausalLM` 类来进行这一工作[^1]。 ```python from transformers import AutoModelForCausalLM, AutoTokenizer from auto_gptq import AutoGPTQForCausalLM model_name_or_path = "facebook/opt-350m" quantized_model_dir = "./quantized_model" tokenizer = AutoTokenizer.from_pretrained(model_name_or_path) model = AutoModelForCausalLM.from_pretrained(model_name_or_path) # 加载已经量化的模型或者创建一个新的量化器对象用于量化未压缩过的模型 gptq_model = AutoGPTQForCausalLM.from_pretrained(quantized_model_dir, model=model, tokenizer=tokenizer) ``` 对于那些希望进一步优化其部署环境中的模型性能的人来说,`AutoGPTQ` 提供了多种配置选项来自定义量化参数,比如位宽(bit-width),这有助于平衡精度损失与运行效率之间的关系。 #### 注意事项 当处理特定硬件平台上的部署时,建议查阅官方文档以获得最佳实践指导支持信息。此外,在实际应用场景之前应该充分测试经过量化的模型以确保满足预期的质量标准。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值