Spaces:
Runtime error
Runtime error
Upload folder using huggingface_hub
Browse files
.gitattributes
CHANGED
|
@@ -45,3 +45,4 @@ model/lib/pointnet2/build/temp.linux-x86_64-cpython-39/src/interpolate.o filter=
|
|
| 45 |
model/lib/pointnet2/build/temp.linux-x86_64-cpython-39/src/pointnet2_api.o filter=lfs diff=lfs merge=lfs -text
|
| 46 |
model/lib/pointnet2/build/temp.linux-x86_64-cpython-39/src/sampling.o filter=lfs diff=lfs merge=lfs -text
|
| 47 |
model/lib/pointnet2/dist/pointnet2-0.0.0-py3.9-linux-x86_64.egg filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 45 |
model/lib/pointnet2/build/temp.linux-x86_64-cpython-39/src/pointnet2_api.o filter=lfs diff=lfs merge=lfs -text
|
| 46 |
model/lib/pointnet2/build/temp.linux-x86_64-cpython-39/src/sampling.o filter=lfs diff=lfs merge=lfs -text
|
| 47 |
model/lib/pointnet2/dist/pointnet2-0.0.0-py3.9-linux-x86_64.egg filter=lfs diff=lfs merge=lfs -text
|
| 48 |
+
model/lib/pointnet2_cuda.cpython-39-x86_64-linux-gnu.so filter=lfs diff=lfs merge=lfs -text
|
README.md
CHANGED
|
@@ -7,6 +7,7 @@ sdk: gradio
|
|
| 7 |
sdk_version: 4.7.1
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
|
|
|
| 10 |
---
|
| 11 |
|
| 12 |
# OneLLM: One Framework to Align All Modalities with Language
|
|
|
|
| 7 |
sdk_version: 4.7.1
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
| 10 |
+
python_version: 3.9.18
|
| 11 |
---
|
| 12 |
|
| 13 |
# OneLLM: One Framework to Align All Modalities with Language
|
app.py
CHANGED
|
@@ -1,8 +1,3 @@
|
|
| 1 |
-
import os
|
| 2 |
-
import subprocess
|
| 3 |
-
msg = subprocess.check_output("cd model/lib/pointnet2 && python setup.py install", shell=True)
|
| 4 |
-
print(msg)
|
| 5 |
-
|
| 6 |
import sys
|
| 7 |
import os
|
| 8 |
import argparse
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
import sys
|
| 2 |
import os
|
| 3 |
import argparse
|
model/lib/__init__.py
ADDED
|
File without changes
|
model/lib/__pycache__/__init__.cpython-39.pyc
ADDED
|
Binary file (156 Bytes). View file
|
|
|
model/lib/__pycache__/point_utils.cpython-39.pyc
CHANGED
|
Binary files a/model/lib/__pycache__/point_utils.cpython-39.pyc and b/model/lib/__pycache__/point_utils.cpython-39.pyc differ
|
|
|
model/lib/point_utils.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
import torch
|
| 2 |
import torch.nn as nn
|
| 3 |
from torch.autograd import Function
|
| 4 |
-
import pointnet2_cuda
|
| 5 |
|
| 6 |
class KNN(nn.Module):
|
| 7 |
def __init__(self, neighbors, transpose_mode=True):
|
|
|
|
| 1 |
import torch
|
| 2 |
import torch.nn as nn
|
| 3 |
from torch.autograd import Function
|
| 4 |
+
from . import pointnet2_cuda
|
| 5 |
|
| 6 |
class KNN(nn.Module):
|
| 7 |
def __init__(self, neighbors, transpose_mode=True):
|
model/lib/pointnet2_cuda.cpython-39-x86_64-linux-gnu.so
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4fe149eddea375d371bc331b11073003e0586254a25c6fe3769b2f6febf8bc54
|
| 3 |
+
size 19727240
|