-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
44a97e0
commit b4e44ae
Showing
15 changed files
with
953 additions
and
83 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
title: "" | ||
date: 2023-11-05 | ||
description: "" | ||
--- | ||
### 1. 模型激活 | ||
模型只有在激活选中后才能进行推理或者应用全局设置。 | ||
+ 单个模型激活:点击模型卡片右上角滑块 | ||
+ 全部模型激活:全局设置-模型全选 | ||
### 2. 全局设置 | ||
在全局设置面板可以对已选中的模型进行批量参数修改 | ||
### 3. 随机音频示例 | ||
通过搜索指定根目录下的`train.list`与`var.list`文件,随机抽取一条训练使用的语音与文本用于推理与对比。需要指定抽取的根目录与语言,默认为`/Data` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<script> | ||
// 帮助/推理 | ||
import infer from "@/components/helps/infer.md" | ||
export default { | ||
name: "train", | ||
components: {infer} | ||
} | ||
</script> | ||
|
||
<template> | ||
<a-card> | ||
<infer/> | ||
</a-card> | ||
</template> | ||
|
||
<style scoped> | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,25 @@ | ||
import Antd from 'ant-design-vue'; | ||
import 'ant-design-vue/dist/reset.css'; | ||
import 'highlight.js/styles/stackoverflow-light.css' | ||
import hljs from 'highlight.js/lib/core'; | ||
import javascript from 'highlight.js/lib/languages/javascript'; | ||
import hljsVuePlugin from "@highlightjs/vue-plugin"; | ||
|
||
import {createApp} from 'vue' | ||
import Window from './Window.vue' | ||
|
||
|
||
hljs.registerLanguage('javascript', javascript); | ||
|
||
|
||
const viewportWidth = window.innerWidth; | ||
if (2560 < viewportWidth && viewportWidth < 3840) { | ||
document.body.style.zoom = "85%"; | ||
} else if (viewportWidth < 2560) { | ||
console.log(window.innerWidth) | ||
if (viewportWidth < 2060) { | ||
document.body.style.zoom = "75%"; | ||
} | ||
|
||
|
||
const app = createApp(Window) | ||
|
||
app.use(Antd).mount('#app') | ||
app.use(Antd).use(hljsVuePlugin).mount('#app') | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters