Luis Oala commited on
Commit
9d0fc44
·
unverified ·
1 Parent(s): 5e77aee

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +16 -7
README.md CHANGED
@@ -2,6 +2,8 @@
2
 
3
  *This repository hosts the code for the project ["From Lens to Logit: Addressing Camera Hardware-Drift Using Raw Sensor Data"](https://openreview.net/forum?id=DRAywM1BhU), submitted to the NeurIPS 2021 Datasets and Benchmarks Track.*
4
 
 
 
5
  ## A short introduction
6
  <p align="center">
7
  <img src="https://github.com/aiaudit-org/lens2logit/blob/master/readme/Slice%208.png">
@@ -23,14 +25,21 @@ We make available two data sets.
23
  * **548 raw drone camera images** for car segmentation, alongside
24
  * **3,288 variations measured at six different intensities** and also twelve additional sets totalling
25
  * **6,576 images of the raw sensor data processed through different pipelines**.
26
-
27
- In order to address camera hardware-drift we require two ingredients: raw sensor data and an image processing model. This code repository contains the materials for the second ingredient, the image processing model, as well as scripts to load lada and run experiments. For a conceptual overview of the project we reocommend the [project site](https://aiaudit.org/lens2logit/) or the [full paper](https://openreview.net/forum?id=DRAywM1BhU).
28
  ## Data access
29
- If you use our code you can use the convenient cloud storage integration. Data will be loaded automatically from a cloud storage bucket and stored to your working machine. You can find the code snippet doing that here
30
-
31
- https://github.com/aiaudit-org/lens2logit/blob/f8a165a0c094456f68086167f0bef14c3b311a4e/utils/base.py#L130
32
-
33
- We also maintain a copy of the entire dataset with a permanent identifier at Zenodo which you can find under 10.5281/zenodo.5235536
 
 
 
 
 
 
 
 
 
34
  ## Code
35
  ### Dependencies
36
  #### Conda environment and dependencies
 
2
 
3
  *This repository hosts the code for the project ["From Lens to Logit: Addressing Camera Hardware-Drift Using Raw Sensor Data"](https://openreview.net/forum?id=DRAywM1BhU), submitted to the NeurIPS 2021 Datasets and Benchmarks Track.*
4
 
5
+ In order to address camera hardware-drift we require two ingredients: raw sensor data and an image processing model. This code repository contains the materials for the second ingredient, the image processing model, as well as scripts to load lada and run experiments. For a conceptual overview of the project we reocommend the [project site](https://aiaudit.org/lens2logit/) or the [full paper](https://openreview.net/forum?id=DRAywM1BhU).
6
+
7
  ## A short introduction
8
  <p align="center">
9
  <img src="https://github.com/aiaudit-org/lens2logit/blob/master/readme/Slice%208.png">
 
25
  * **548 raw drone camera images** for car segmentation, alongside
26
  * **3,288 variations measured at six different intensities** and also twelve additional sets totalling
27
  * **6,576 images of the raw sensor data processed through different pipelines**.
 
 
28
  ## Data access
29
+ If you use our code you can use the convenient cloud storage integration. Data will be loaded automatically from a cloud storage bucket and stored to your working machine. You can find the code snippet doing that [here](https://github.com/aiaudit-org/lens2logit/blob/f8a165a0c094456f68086167f0bef14c3b311a4e/utils/base.py#L130)
30
+
31
+ ```python
32
+ def get_b2_bucket():
33
+ bucket_name = 'perturbed-minds'
34
+ application_key_id = '003d6b042de536a0000000004'
35
+ application_key = 'K003E5Cr+BAYlvSHfg2ynLtvS5aNq78'
36
+ info = InMemoryAccountInfo()
37
+ b2_api = B2Api(info)
38
+ b2_api.authorize_account('production', application_key_id, application_key)
39
+ bucket = b2_api.get_bucket_by_name(bucket_name)
40
+ return bucket
41
+ ```
42
+ We also maintain a copy of the entire dataset with a permanent identifier at Zenodo which you can find under 10.5281/zenodo.5235536.
43
  ## Code
44
  ### Dependencies
45
  #### Conda environment and dependencies