Upload 3 files
Browse files- README.md +170 -0
- README.zh_CN.md +158 -0
- model.ckpt +3 -0
README.md
ADDED
|
@@ -0,0 +1,170 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- audio
|
| 4 |
+
- speech-antispoofing
|
| 5 |
+
- spoof-detection
|
| 6 |
+
- voice-liveness
|
| 7 |
+
- safeear
|
| 8 |
+
- asvspoof2019
|
| 9 |
+
- pytorch
|
| 10 |
+
license: apache-2.0
|
| 11 |
+
pipeline_tag: audio-classification
|
| 12 |
+
|
| 13 |
+
---
|
| 14 |
+
|
| 15 |
+
# SafeEar ASVspoof2019 Audio Anti-Spoofing Model
|
| 16 |
+
|
| 17 |
+
[中文](README.zh-CN.md) <!-- Assuming your Chinese file will be named README.zh-CN.md -->
|
| 18 |
+
|
| 19 |
+
This repository contains an audio anti-spoofing (spoof detection) model pre-trained on the ASVspoof2019 dataset using the SafeEar framework. The model is designed to distinguish between genuine human speech and various types of spoofed audio.
|
| 20 |
+
|
| 21 |
+
## Model Details
|
| 22 |
+
|
| 23 |
+
* **Developers:** HyperStar Team (Zhijiang College of Zhejiang University of Technology)
|
| 24 |
+
* **Model Type:** Audio Anti-spoofing / Spoof Detection
|
| 25 |
+
* **Framework:** SafeEar
|
| 26 |
+
* **Base Models/Tokenizers Used:**
|
| 27 |
+
* SpeechTokenizer
|
| 28 |
+
* HuBERT Base (ls960)
|
| 29 |
+
* **Training Dataset:** ASVspoof2019 (Logical Access - LA)
|
| 30 |
+
* **License:** Apache 2.0
|
| 31 |
+
* **Supported Languages:** Primarily English, but trained on the diverse ASVspoof2019 dataset.
|
| 32 |
+
|
| 33 |
+
## Repository File Description
|
| 34 |
+
|
| 35 |
+
* `SpeechTokenizer.pt`: Pre-trained SpeechTokenizer model weights.
|
| 36 |
+
* `hubert_base_ls960.pt`: Pre-trained HuBERT base model weights.
|
| 37 |
+
* `model.ckpt`: Fine-tuned SafeEar anti-spoofing model checkpoint.
|
| 38 |
+
* `SafeEar-Inference-Test-Script/`: Directory containing example inference scripts and test audio.
|
| 39 |
+
* `audio.flac`: FLAC format audio sample for testing.
|
| 40 |
+
* `infer_single_flac.py`: Python script for inference on a single FLAC audio file.
|
| 41 |
+
|
| 42 |
+
## How to Use
|
| 43 |
+
|
| 44 |
+
To perform inference with this model using the provided scripts:
|
| 45 |
+
|
| 46 |
+
1. **Clone the repository:**
|
| 47 |
+
|
| 48 |
+
```bash
|
| 49 |
+
git lfs install
|
| 50 |
+
git clone https://huggingface.co/[your-username]/safeear-asvspoof2019-antispoof
|
| 51 |
+
cd safeear-asvspoof2019-antispoof
|
| 52 |
+
```
|
| 53 |
+
|
| 54 |
+
2. **Set up the inference environment:**
|
| 55 |
+
Ensure Python is installed, along with any necessary libraries that `infer_single_flac.py` might depend on. You may need to check the `SafeEar` framework for its specific dependencies.
|
| 56 |
+
|
| 57 |
+
3. **Prepare model files for inference:**
|
| 58 |
+
Copy the model weights into the inference script directory:
|
| 59 |
+
|
| 60 |
+
```bash
|
| 61 |
+
cp SpeechTokenizer.pt hubert_base_ls960.pt model.ckpt SafeEar-Inference-Test-Script/
|
| 62 |
+
```
|
| 63 |
+
|
| 64 |
+
4. **Run the inference script:**
|
| 65 |
+
Navigate to the script directory and run the script:
|
| 66 |
+
|
| 67 |
+
```bash
|
| 68 |
+
cd SafeEar-Inference-Test-Script/
|
| 69 |
+
python infer_single_flac.py
|
| 70 |
+
```
|
| 71 |
+
|
| 72 |
+
The script is expected to output the prediction results:
|
| 73 |
+
|
| 74 |
+
```json
|
| 75 |
+
{
|
| 76 |
+
"label": [
|
| 77 |
+
1
|
| 78 |
+
],
|
| 79 |
+
"probs": [
|
| 80 |
+
[
|
| 81 |
+
0.00033402442932128906,
|
| 82 |
+
0.9996659755706787
|
| 83 |
+
]
|
| 84 |
+
]
|
| 85 |
+
}
|
| 86 |
+
```
|
| 87 |
+
|
| 88 |
+
## Training Details
|
| 89 |
+
|
| 90 |
+
### Framework
|
| 91 |
+
|
| 92 |
+
The model was trained using the [SafeEar framework](https://github.com/IDRnD/SafeEar). SafeEar is designed for building robust speech anti-spoofing systems.
|
| 93 |
+
|
| 94 |
+
### Dataset
|
| 95 |
+
|
| 96 |
+
The model was trained on the ASVspoof2019 dataset, specifically the Logical Access (LA) partition, which includes various synthetic speech and replay attacks.
|
| 97 |
+
|
| 98 |
+
### Pre-trained Components
|
| 99 |
+
|
| 100 |
+
* **SpeechTokenizer:** Used for speech tokenization.
|
| 101 |
+
* **HuBERT (hubert_base_ls960):** Used as a powerful speech feature extractor. The `hubert_base_ls960.pt` checkpoint was used as the base.
|
| 102 |
+
|
| 103 |
+
## Performance Evaluation
|
| 104 |
+
|
| 105 |
+
The model achieves the following performance on the ASVspoof2019 LA evaluation set:
|
| 106 |
+
|
| 107 |
+
* **Equal Error Rate (EER):** 5.275%
|
| 108 |
+
|
| 109 |
+

|
| 110 |
+
<!-- Note: This image path is a local path and will likely not work in a public README. It should be replaced with a relative path within the repository or a URL. -->
|
| 111 |
+
|
| 112 |
+
## Biases, Risks, and Limitations
|
| 113 |
+
|
| 114 |
+
* **Generalization to Unseen Attacks:** While trained on diverse spoofing attacks from ASVspoof2019, the model's performance may degrade on entirely new or significantly different spoofing techniques not present in the training data.
|
| 115 |
+
* **Acoustic Environment Variability:** Highly noisy environments or audio characteristics significantly different from the training data might affect performance.
|
| 116 |
+
* **Dataset Specificity:** The model is optimized for the attack types and audio present in the ASVspoof2019 dataset. It has not been tested on datasets in other languages.
|
| 117 |
+
* **Threshold Dependency:** Classification (bona fide/spoof) typically depends on a threshold. The optimal threshold may vary based on the specific requirements of the application.
|
| 118 |
+
|
| 119 |
+
## Intended Use
|
| 120 |
+
|
| 121 |
+
This model is intended for researchers and developers working on speech anti-spoofing and voice security applications. It can serve as a baseline for further research or be integrated into systems requiring spoof detection capabilities. It should not be used for critical security applications without further rigorous testing and validation in the target environment.
|
| 122 |
+
|
| 123 |
+
## How to Cite
|
| 124 |
+
|
| 125 |
+
If you use this model or the SafeEar framework in your research, please consider citing the relevant publications:
|
| 126 |
+
|
| 127 |
+
* **ASVspoof2019:**
|
| 128 |
+
|
| 129 |
+
```bibtex
|
| 130 |
+
@inproceedings{ASVspoof2019,
|
| 131 |
+
author={Todisco, Massimiliano and Wang, Xin and Evans, Nicholas and Sahidullah, Md and Delgado, Héctor and Nautsch, Andreas and Yamagishi, Junichi and Lee, Kong Aik and Vestman, Ville and Kinnunen, Tomi and others},
|
| 132 |
+
title={{ASVspoof 2019: Future horizons in spoofed and fake audio detection}},
|
| 133 |
+
year={2019},
|
| 134 |
+
booktitle={Proc. Interspeech 2019},
|
| 135 |
+
pages={1008--1012},
|
| 136 |
+
doi={10.21437/Interspeech.2019-2248}
|
| 137 |
+
}
|
| 138 |
+
```
|
| 139 |
+
|
| 140 |
+
* **SafeEar:**
|
| 141 |
+
|
| 142 |
+
```bibtex
|
| 143 |
+
@misc{SafeEar,
|
| 144 |
+
author = {Ivan Kukanov, Konstantin Okunev, Alexandra Kuznetsova, Anton Vasiliev},
|
| 145 |
+
title = {SafeEar: A versatile framework for speech anti-spoofing},
|
| 146 |
+
year = {2023},
|
| 147 |
+
publisher = {GitHub},
|
| 148 |
+
journal = {GitHub repository},
|
| 149 |
+
howpublished = {\url{https://github.com/IDRnD/SafeEar}}
|
| 150 |
+
}
|
| 151 |
+
```
|
| 152 |
+
|
| 153 |
+
* **HuBERT:**
|
| 154 |
+
|
| 155 |
+
```bibtex
|
| 156 |
+
@article{Hsu2021HuBERT,
|
| 157 |
+
title={{HuBERT: Self-Supervised Speech Representation Learning by Masked Prediction of Hidden Units}},
|
| 158 |
+
author={Wei-Ning Hsu and Benjamin Bolte and Yao-Hung Hubert Tsai and Kushal Lakhotia and Ruslan Salakhutdinov and Abdelrahman Mohamed},
|
| 159 |
+
journal={IEEE/ACM Transactions on Audio, Speech, and Language Processing},
|
| 160 |
+
year={2021},
|
| 161 |
+
volume={29},
|
| 162 |
+
pages={3451-3465},
|
| 163 |
+
doi={10.1109/TASLP.2021.3122891}
|
| 164 |
+
}
|
| 165 |
+
```
|
| 166 |
+
|
| 167 |
+
## Author Information
|
| 168 |
+
|
| 169 |
+
* **Model Creator:** https://huggingface.co/TEC2004
|
| 170 |
+
* If you have any questions or feedback, please submit an issue in the repository.
|
README.zh_CN.md
ADDED
|
@@ -0,0 +1,158 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
tags:
|
| 3 |
+
- audio
|
| 4 |
+
- speech-antispoofing
|
| 5 |
+
- spoof-detection
|
| 6 |
+
- voice-liveness
|
| 7 |
+
- safeear
|
| 8 |
+
- asvspoof2019
|
| 9 |
+
- pytorch
|
| 10 |
+
license: apache-2.0
|
| 11 |
+
pipeline_tag: audio-classification
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# SafeEar ASVspoof2019 音频反欺诈模型
|
| 15 |
+
|
| 16 |
+
[English](README.md)
|
| 17 |
+
|
| 18 |
+
本仓库包含一个使用 SafeEar 框架在 ASVspoof2019 数据集上预训练的音频反欺诈(spoof detection)模型。该模型旨在区分真实人声和各种类型的伪造音频。
|
| 19 |
+
|
| 20 |
+
## 模型详情
|
| 21 |
+
|
| 22 |
+
* **开发者:**HyperStar 团队 (浙江工业大学之江学院)
|
| 23 |
+
* **模型类型:** 音频反欺诈 / 伪造检测
|
| 24 |
+
* **框架:** SafeEar
|
| 25 |
+
* **使用的基础模型/分词器:**
|
| 26 |
+
* SpeechTokenizer
|
| 27 |
+
* HuBERT Base (ls960)
|
| 28 |
+
* **训练数据集:** ASVspoof2019 (Logical Access - LA)
|
| 29 |
+
* **开源协议:** Apache 2.0
|
| 30 |
+
* **支持语言:** 主要为英语,但在多样化的 ASVspoof2019 数据集上训练。
|
| 31 |
+
|
| 32 |
+
## 仓库文件说明
|
| 33 |
+
|
| 34 |
+
* `SpeechTokenizer.pt`: 预训练的 SpeechTokenizer 模型权重。
|
| 35 |
+
* `hubert_base_ls960.pt`: 预训练的 HuBERT 基础模型权重。
|
| 36 |
+
* `model.ckpt`: 微调后的 SafeEar 反欺诈模型检查点。
|
| 37 |
+
* `SafeEar-Inference-Test-Script/`: 包含示例推理脚本和测试音频的目录。
|
| 38 |
+
* `audio.flac`: 用于测试的 FLAC 格式音频样本。
|
| 39 |
+
* `infer_single_flac.py`: 对单个 FLAC 音频文件进行推理的 Python 脚本。
|
| 40 |
+
|
| 41 |
+
## 如何使用
|
| 42 |
+
|
| 43 |
+
要使用提供的脚本通过此模型进行推理:
|
| 44 |
+
|
| 45 |
+
1. **克隆仓库:**
|
| 46 |
+
```bash
|
| 47 |
+
git lfs install
|
| 48 |
+
git clone [https://huggingface.co/](https://huggingface.co/)[your-username]/safeear-asvspoof2019-antispoof
|
| 49 |
+
cd safeear-asvspoof2019-antispoof
|
| 50 |
+
```
|
| 51 |
+
|
| 52 |
+
2. **设置推理环境:**
|
| 53 |
+
确保已安装 Python 以及 `infer_single_flac.py` 可能依赖的必要库。您可能需要查看 `SafeEar` 以了解其具体依赖项。
|
| 54 |
+
|
| 55 |
+
3. **准备用于推理的模型文件:**
|
| 56 |
+
将模型权重复制到推理脚本目录中:
|
| 57 |
+
```bash
|
| 58 |
+
cp SpeechTokenizer.pt hubert_base_ls960.pt model.ckpt SafeEar-Inference-Test-Script/
|
| 59 |
+
```
|
| 60 |
+
|
| 61 |
+
4. **运行推理脚本:**
|
| 62 |
+
进入脚本目录并运行脚本:
|
| 63 |
+
|
| 64 |
+
```bash
|
| 65 |
+
cd SafeEar-Inference-Test-Script/
|
| 66 |
+
python infer_single_flac.py
|
| 67 |
+
```
|
| 68 |
+
脚本预计会输出预测结果:
|
| 69 |
+
```json
|
| 70 |
+
{
|
| 71 |
+
"label": [
|
| 72 |
+
1
|
| 73 |
+
],
|
| 74 |
+
"probs": [
|
| 75 |
+
[
|
| 76 |
+
0.00033402442932128906,
|
| 77 |
+
0.9996659755706787
|
| 78 |
+
]
|
| 79 |
+
]
|
| 80 |
+
}
|
| 81 |
+
```
|
| 82 |
+
|
| 83 |
+
## 训练详情
|
| 84 |
+
|
| 85 |
+
### 框架
|
| 86 |
+
该模型使用 [SafeEar 框架](https://github.com/IDRnD/SafeEar)进行训练。SafeEar 旨在构建强大的语音反欺诈系统。
|
| 87 |
+
|
| 88 |
+
### 数据集
|
| 89 |
+
该模型在 ASVspoof2019 数据集上进行了训练,特别是 Logical Access (LA) 部分,其中包括各种合成语音和重放攻击。
|
| 90 |
+
|
| 91 |
+
### 预训练组件
|
| 92 |
+
* **SpeechTokenizer:** 用于语音分词。
|
| 93 |
+
* **HuBERT (hubert_base_ls960):** 用作强大的语音特征提取器。使用了 `hubert_base_ls960.pt` 检查点作为基础。
|
| 94 |
+
|
| 95 |
+
## 效果评估
|
| 96 |
+
|
| 97 |
+
该模型在 ASVspoof2019 LA 评估集上达到以下性能:
|
| 98 |
+
* **等错误率 (EER):** 5.275%
|
| 99 |
+
|
| 100 |
+

|
| 101 |
+
|
| 102 |
+
## 偏差、风险与局限性
|
| 103 |
+
|
| 104 |
+
* **对未知攻击的泛化能力:** 尽管模型在 ASVspoof2019 中的多种欺诈攻击上进行了训练,但对于训练数据中未出现的全新或显著不同的欺诈技术,其性能可能会下降。
|
| 105 |
+
* **声学环境变异性:** 高度嘈杂的环境或与训练数据显著不同的音频特性可能会影响性能。
|
| 106 |
+
* **数据集特异性:** 该模型针对 ASVspoof2019 数据集中的攻击类型和音频进行了优化。在其他语种数据集中为做测试
|
| 107 |
+
* **阈值依赖性:** 分类(真实/欺诈)通常取决于一个阈值。最佳阈值可能会根据应用的具体需求而有所不同。
|
| 108 |
+
|
| 109 |
+
## 预期用途
|
| 110 |
+
|
| 111 |
+
此模型适用于从事语音反欺诈和语音安全应用的研究人员和开发人员。它可以用作进一步研究的基线,或集成到需要欺诈检测功能的系统中。在目标环境中进行进一步严格测试和验证之前,不应将其用于关键安全应用。
|
| 112 |
+
|
| 113 |
+
## 如何引用
|
| 114 |
+
|
| 115 |
+
如果您在研究中使用了此模型或 SafeEar 框架,请考虑引用相关出版物:
|
| 116 |
+
|
| 117 |
+
* **ASVspoof2019:**
|
| 118 |
+
```bibtex
|
| 119 |
+
@inproceedings{ASVspoof2019,
|
| 120 |
+
author={Todisco, Massimiliano and Wang, Xin and Evans, Nicholas and Sahidullah, Md and Delgado, Héctor and Nautsch, Andreas and Yamagishi, Junichi and Lee, Kong Aik and Vestman, Ville and Kinnunen, Tomi and others},
|
| 121 |
+
title={{ASVspoof 2019: Future horizons in spoofed and fake audio detection}},
|
| 122 |
+
year={2019},
|
| 123 |
+
booktitle={Proc. Interspeech 2019},
|
| 124 |
+
pages={1008--1012},
|
| 125 |
+
doi={10.21437/Interspeech.2019-2248}
|
| 126 |
+
}
|
| 127 |
+
```
|
| 128 |
+
|
| 129 |
+
* **SafeEar:**
|
| 130 |
+
|
| 131 |
+
```bibtex
|
| 132 |
+
@misc{SafeEar,
|
| 133 |
+
author = {Ivan Kukanov, Konstantin Okunev, Alexandra Kuznetsova, Anton Vasiliev},
|
| 134 |
+
title = {SafeEar: A versatile framework for speech anti-spoofing},
|
| 135 |
+
year = {2023},
|
| 136 |
+
publisher = {GitHub},
|
| 137 |
+
journal = {GitHub repository},
|
| 138 |
+
howpublished = {\url{[https://github.com/IDRnD/SafeEar](https://github.com/IDRnD/SafeEar)}}
|
| 139 |
+
}
|
| 140 |
+
```
|
| 141 |
+
|
| 142 |
+
* **HuBERT:**
|
| 143 |
+
```bibtex
|
| 144 |
+
@article{Hsu2021HuBERT,
|
| 145 |
+
title={{HuBERT: Self-Supervised Speech Representation Learning by Masked Prediction of Hidden Units}},
|
| 146 |
+
author={Wei-Ning Hsu and Benjamin Bolte and Yao-Hung Hubert Tsai and Kushal Lakhotia and Ruslan Salakhutdinov and Abdelrahman Mohamed},
|
| 147 |
+
journal={IEEE/ACM Transactions on Audio, Speech, and Language Processing},
|
| 148 |
+
year={2021},
|
| 149 |
+
volume={29},
|
| 150 |
+
pages={3451-3465},
|
| 151 |
+
doi={10.1109/TASLP.2021.3122891}
|
| 152 |
+
}
|
| 153 |
+
```
|
| 154 |
+
|
| 155 |
+
## 作者信息
|
| 156 |
+
|
| 157 |
+
* **模型创建者:**https://huggingface.co/TEC2004
|
| 158 |
+
* 如果您有任何问题或反馈,请在仓库中提交 issue。
|
model.ckpt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6e907978cad9a742fa0b410d653cc72855cccd75eac610e67b2da6a41a944993
|
| 3 |
+
size 762270293
|