Skip to content

Commit 775a9a3

Browse files
authored
Merge pull request #11 from unum-cloud/main
Refresh
2 parents b7a49a8 + 0f7d58e commit 775a9a3

File tree

9 files changed

+2762
-2
lines changed

9 files changed

+2762
-2
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
requirements.txt
2-
.vscode
32
*.egg-info
43
dist/
54
test

.vscode/settings.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"cSpell.words": [
3+
"embs",
4+
"keepdim",
5+
"logits",
6+
"multimodal",
7+
"preprocess",
8+
"pretrained",
9+
"probs",
10+
"softmax",
11+
"transfromers",
12+
"uform",
13+
"unimodal",
14+
"unsqueeze"
15+
]
16+
}

.vscode/tasks.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"label": "Publish",
8+
"type": "shell",
9+
"command": "python -m pip install build twine && python -m build && twine check dist/* && twine upload dist/*"
10+
}
11+
]
12+
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<h1 align="center">UForm</h1>
1+
<h1 align="center">Unified Form</h1>
22
<h3 align="center">
33
Multi-Modal Inference Library<br/>
44
For Semantic Search Applications<br/>

assets/unum.png

19.8 KB
Loading

docs/Makefile

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Minimal makefile for Sphinx documentation
2+
#
3+
4+
# You can set these variables from the command line, and also
5+
# from the environment for the first two.
6+
SPHINXOPTS ?=
7+
SPHINXBUILD ?= sphinx-build
8+
SOURCEDIR = .
9+
BUILDDIR = ../build/docs
10+
11+
# Put it first so that "make" without argument is like "make help".
12+
help:
13+
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
14+
15+
.PHONY: help Makefile
16+
17+
# Catch-all target: route all unknown targets to Sphinx using the new
18+
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
19+
%: Makefile
20+
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

0 commit comments

Comments
 (0)