ZeroShirayuki commited on
Commit
c6d65c4
·
verified ·
1 Parent(s): 1e8c70d

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +37 -0
README.md CHANGED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: en
3
+ tags:
4
+ - manga-recommendation
5
+ - pytorch
6
+ - recommendation-system
7
+ pipeline_tag: text-classification
8
+ inference: true
9
+ library_name: pytorch
10
+ ---
11
+
12
+ # Manga Recommender Model
13
+
14
+ This model provides personalized manga recommendations based on user preferences and manga genres.
15
+
16
+ ## Model Description
17
+ - Input: User ID, Manga ID, and genre features (17 binary values)
18
+ - Output: Predicted rating/recommendation score
19
+ - Architecture: Neural collaborative filtering with genre features
20
+
21
+ ## Usage
22
+
23
+ ```python
24
+ from huggingface_hub import InferenceClient
25
+ client = InferenceClient()
26
+
27
+ # Example input
28
+ inputs = {
29
+ "user_id": "user_123",
30
+ "manga_id": "manga_456",
31
+ "genres": [1, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0] # 17 binary values for genres
32
+ }
33
+
34
+ prediction = client.post(
35
+ "ZeroShirayuki/manga-recommender",
36
+ json=inputs
37
+ )