Skip to content

Commit

Permalink
Error modifying comments
Browse files Browse the repository at this point in the history
  • Loading branch information
guojin-yan committed Nov 3, 2023
1 parent 5df5e57 commit 34824cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 25 deletions.
25 changes: 1 addition & 24 deletions modules/csharp_api/csharp/base.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace OpenVinoSharp

/// <summary>
/// OpenVINO wrapper for .NET.
/// This is the basic namespace of OpenVINO in Cshrp,
/// This is the basic namespace of OpenVINO in C#,
/// and all classes and methods are within this method.
/// <c>OpenVinoSharp</c>.
/// </summary>
Expand Down Expand Up @@ -42,29 +42,6 @@ class NamespaceDoc
{
}
}


namespace model
{
/// <summary>
/// Processing methods for main common models.
/// <c>OpenVinoSharp.model</c>.
/// </summary>
[System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
class NamespaceDoc
{
}
namespace Yolov8 {
/// <summary>
/// The processing methods of the main Yolov8 model.
/// <c>OpenVinoSharp.model.Yolov8</c>.
/// </summary>
[System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
class NamespaceDoc
{
}
}
}
}


2 changes: 1 addition & 1 deletion modules/csharp_api/demos/yolov8/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ static void yolov8_infer(string flg, string model_path, string image_path, stri
print_model_info(model);

// -------- Step 3. Loading a model to the device --------
CompiledModel compiled_model = core.compiled_model(model, device);
CompiledModel compiled_model = core.compile_model(model, device);

// -------- Step 4. Create an infer request --------
InferRequest infer_request = compiled_model.create_infer_request();
Expand Down

0 comments on commit 34824cc

Please sign in to comment.