chengan98 commited on
Commit
709bcd1
·
verified ·
1 Parent(s): 6df4418

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -45,7 +45,7 @@ The data curation pipeline leading to the clean videos in the Surg-3M dataset is
45
 
46
  Usage
47
  --------
48
- **Video classification models** are employed in the step 2 of the data curation pipeline to classify a video storyboard as either surgical or non-surgical, the models usage is as follows:
49
  ```python
50
  import torch
51
  from PIL import Image
@@ -72,7 +72,7 @@ Usage
72
  outputs = net(img_tensor)
73
  ```
74
 
75
- **Frame classification models** are used in the step 3 of the data curation pipeline to classify a frame as either surgical or non-surgical, the models usage is as follows:
76
 
77
  ```python
78
  import torch
 
45
 
46
  Usage
47
  --------
48
+ **Video classification models** are employed in the step **2** of the data curation pipeline to classify a video storyboard as either surgical or non-surgical, the models usage is as follows:
49
  ```python
50
  import torch
51
  from PIL import Image
 
72
  outputs = net(img_tensor)
73
  ```
74
 
75
+ **Frame classification models** are used in the step **3** of the data curation pipeline to classify a frame as either surgical or non-surgical, the models usage is as follows:
76
 
77
  ```python
78
  import torch