File tree Expand file tree Collapse file tree 9 files changed +2762
-2
lines changed Expand file tree Collapse file tree 9 files changed +2762
-2
lines changed Original file line number Diff line number Diff line change 1
1
requirements.txt
2
- .vscode
3
2
* .egg-info
4
3
dist /
5
4
test
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change
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
+ }
Original file line number Diff line number Diff line change 1
- <h1 align =" center " >UForm </h1 >
1
+ <h1 align =" center " >Unified Form </h1 >
2
2
<h3 align =" center " >
3
3
Multi-Modal Inference Library<br />
4
4
For Semantic Search Applications<br />
Original file line number Diff line number Diff line change
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 )
You can’t perform that action at this time.
0 commit comments