Xeexeex commited on
Commit
da0c364
·
verified ·
1 Parent(s): 81e7225

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +31 -6
README.md CHANGED
@@ -1,10 +1,35 @@
1
  ---
 
 
2
  tags:
3
- - model_hub_mixin
4
- - pytorch_model_hub_mixin
 
 
5
  ---
6
 
7
- This model has been pushed to the Hub using the [PytorchModelHubMixin](https://huggingface.co/docs/huggingface_hub/package_reference/mixins#huggingface_hub.PyTorchModelHubMixin) integration:
8
- - Code: [More Information Needed]
9
- - Paper: [More Information Needed]
10
- - Docs: [More Information Needed]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: apache-2.0
3
+ library_name: transformers
4
  tags:
5
+ - geoguessr
6
+ - geolocation
7
+ - vision
8
+ pipeline_tag: image-classification
9
  ---
10
 
11
+ # 🌍 GeoGuessr AI: Geolocation Predictor
12
+
13
+ Model ini dirancang untuk menebak koordinat lokasi berdasarkan gambar pemandangan jalan (Street View).
14
+
15
+ ## 🚀 Cara Menggunakan Melalui UI (Widget)
16
+ Di sebelah kanan halaman ini, kamu akan melihat kotak **"Hosted inference API"**:
17
+ 1. Klik area **"Upload image"**.
18
+ 2. Masukkan foto jalanan atau pemandangan.
19
+ 3. Model akan memberikan output koordinat (atau label lokasi).
20
+
21
+ ---
22
+
23
+ ## 💻 Cara Menggunakan via Python (Library Transformers)
24
+
25
+ Jika kamu ingin menggunakan model ini di dalam kodinganmu sendiri, gunakan cara berikut:
26
+
27
+ ```python
28
+ from transformers import pipeline
29
+
30
+ # Inisialisasi model
31
+ geoguessr = pipeline("image-classification", model="Xeexeex/geolocation")
32
+
33
+ # Prediksi lokasi
34
+ result = geoguessr("lokasi_gambar.jpg")
35
+ print(f"Hasil Prediksi: {result}")