-
Notifications
You must be signed in to change notification settings - Fork 1
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
Showing
21 changed files
with
162 additions
and
59 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# 合并字符串 | ||
将字符串列表,或者含有字符串的列表(文本检测),合并成字符串。 | ||
|
||
![action](./images/2022-11-17_184608.png ':size=90%') | ||
|
||
## 子流程 | ||
|
||
> 不支持 | ||
## 运行参数 | ||
|
||
* 源 | ||
> 字符串列表,或者含有字符串的列表 | ||
* 分隔符 | ||
> 比如 `\r\n` 换行符,把列表中的字符串用换行符拼接成多行文本。 | ||
## 输出 | ||
|
||
> [Strings](./types/String.md) | ||
|
||
## 脚本调用 | ||
|
||
```python | ||
import simple | ||
|
||
|
||
``` | ||
|
||
## 示例 | ||
|
||
[https://github.com/shelllet/WinUi/blob/main/algorithm/filter_text.simple](https://github.com/shelllet/WinUi/blob/main/algorithm/filter_text.simple) |
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
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.
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.
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
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,26 @@ | ||
# 剪切板 | ||
获取或者设置 *剪切板* 的内容,支持 *图片* 或者 *文本* 信息。 | ||
|
||
## 子流程 | ||
> 不支持 | ||
|
||
## 运行参数 | ||
|
||
* 值 | ||
|
||
> 放到剪切板中的内容,支持 *图片* 或者 *文本* 信息。如果 为 *空*,则为获取剪切板中的内容。 | ||
## 输出 | ||
|
||
> 剪切板当前的内容。 | ||
|
||
## 脚本调用 | ||
|
||
```python | ||
import simple; | ||
|
||
``` | ||
|
||
## 示例 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# ClassificationResult | ||
|
||
Class `ClassificationResult` 分类结果 | ||
|
||
### 属性 | ||
|
||
1. id :[Number](../types/Number.md) | ||
|
||
> 分类索引 | ||
2. label :[String](../types/String.md) | ||
|
||
> 分类 | ||
3. confidence: [Number](../types/Number.md) | ||
|
||
> 置信度 | ||
# ClassificationResults | ||
|
||
Class `ClassificationResults`,包含多个分类结果。 |
Oops, something went wrong.