Skip to content

Commit b2a0855

Browse files
committed
Added some basic files
1 parent 433ad99 commit b2a0855

File tree

7 files changed

+47
-0
lines changed

7 files changed

+47
-0
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.idea/misc.xml
2+
.idea/modules.xml
3+
.idea/TorchScript-YOLOv3.iml
4+
.idea/vcs.xml
5+
.idea/inspectionProfiles/profiles_settings.xml

.idea/.gitignore

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

main.ipynb

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"nbformat": 4,
3+
"nbformat_minor": 0,
4+
"metadata": {
5+
"colab": {
6+
"name": "Untitled1.ipynb",
7+
"provenance": [],
8+
"private_outputs": true
9+
},
10+
"kernelspec": {
11+
"name": "python3",
12+
"display_name": "Python 3"
13+
}
14+
},
15+
"cells": [
16+
{
17+
"cell_type": "code",
18+
"metadata": {
19+
"id": "qmF7xOLUwvpJ",
20+
"colab_type": "code",
21+
"colab": {}
22+
},
23+
"source": [
24+
""
25+
],
26+
"execution_count": 0,
27+
"outputs": []
28+
}
29+
]
30+
}

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
torch

scripts/test.py

Whitespace-only changes.

scripts/train.py

Whitespace-only changes.

src/YOLOv3.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import torch.nn as nn
2+
3+
4+
class YOLOv3(nn.Module):
5+
def __init__(self):
6+
super(YOLOv3, self).__init__()
7+
8+
def forward(self, x):
9+
return x

0 commit comments

Comments
 (0)